:root {
  --bg: #050a16;
  --text: #fff;
  --muted: rgba(255, 255, 255, 0.75);
  --text-soft: rgba(255, 255, 255, 0.85);
  --accent: #ffb000;
  --accent-light: #ffcc33;
  --good: #38d98b;
  --good-soft: rgba(56, 217, 139, 0.12);
  --line: rgba(255, 255, 255, 0.10);
  --line-light: rgba(255, 255, 255, 0.15);
  --card-bg: rgba(15, 22, 41, 0.85);
  --card-bg-hover: rgba(20, 28, 50, 0.92);
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.4);
  --shadow-accent: 0 12px 30px rgba(255, 176, 0, 0.2);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  --max-width: 1100px;
  --transition: 0.3s ease;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.wrap {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}
.bg-media {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url("https://jogofacillpt.com/wp-content/themes/jogofacillpt-com/img/bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.35;
  filter: blur(5px);
}
.site-header {
  padding: 20px 0;
  text-align: center;
}
.logo-text {
  font-size: 28px;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.5px;
  text-transform: uppercase;
}
.hero-section {
  text-align: center;
  padding: 20px 0 35px;
}
.hero-badge {
  display: inline-block;
  padding: 8px 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #141414;
  margin-bottom: 18px;
  box-shadow: var(--shadow-accent);
}
.hero-section h1 {
  font-size: clamp(24px, 4.5vw, 46px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 14px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero-desc {
  font-size: 15px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 22px;
}
.hero-update {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  margin-bottom: 26px;
  box-shadow: var(--shadow-md);
}
.hero-update::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--good);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(56, 217, 139, 0.15);
  animation: pulse 2s infinite;
}
.hero-update::after {
  content: "Atualizado: " attr(data-date);
  font-size: 13px;
  font-weight: 900;
  color: #ff4d4d;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.95); }
}
.hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  transition: var(--transition);
}
.feature-item:hover {
  border-color: var(--accent);
  background: rgba(255, 176, 0, 0.05);
}
.feature-icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.9;
}
.feature-text {
  font-size: 13px;
  font-weight: 700;
}
.ranking-section {
  padding: 15px 0 35px;
}
.section-header {
  text-align: center;
  margin-bottom: 24px;
}
.section-header h2 {
  font-size: clamp(20px, 3.5vw, 32px);
  font-weight: 900;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.section-subtitle {
  color: var(--muted);
  font-size: 14px;
}
.casino-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.casino-card {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.65fr;
  gap: 16px;
  padding: 20px;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.casino-card:hover {
  background: var(--card-bg-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.casino-card:nth-child(1) {
  border-color: rgba(255, 176, 0, 0.4);
}
.casino-card:nth-child(2) {
  border-color: rgba(202, 98, 0, 0.4);
}
.casino-card:nth-child(3) {
  border-color: rgba(34, 197, 94, 0.4);
}
.casino-card:nth-child(4) {
  border-color: rgba(168, 85, 247, 0.4);
}
.position-badge {
  position: absolute;
  left: 16px;
  top: 16px;
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: #141414;
  font-weight: 900;
  font-size: 14px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(255, 176, 0, 0.25);
}
.card-info {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-left: 40px;
}
.casino-logo {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(62, 102, 255, 0.3), rgba(255, 255, 255, 0.05));
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.casino-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}
.casino-details {
  min-width: 0;
}
.casino-name {
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 4px;
}
.casino-tagline {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.casino-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.rating-score {
  background: var(--good-soft);
  border: 1px solid rgba(56, 217, 139, 0.25);
  padding: 5px 10px;
  border-radius: var(--radius-full);
  font-weight: 900;
  font-size: 13px;
  color: var(--text-soft);
}
.rating-stars {
  display: flex;
  gap: 2px;
}
.star {
  color: rgba(255, 255, 255, 0.25);
  font-size: 13px;
}
.star.filled {
  color: #7CFFB2;
}
.rating-votes {
  font-size: 12px;
  color: var(--muted);
}
.promo-label {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.promo-label.gold {
  background: rgba(243, 195, 67, 0.18);
  border: 1px solid rgba(243, 195, 67, 0.35);
  color: #ffd875;
}
.promo-label.teal {
  background: rgba(34, 197, 94, 0.18);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #86efac;
}
.promo-label.purple {
  background: rgba(59, 130, 246, 0.18);
  border: 1px solid rgba(59, 130, 246, 0.35);
  color: #93c5fd;
}
.card-bonus {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-left: 1px solid var(--line);
  text-align: center;
}
.bonus-tag {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
  margin-bottom: 4px;
}
.bonus-percent {
  font-size: 12px;
  color: var(--text-soft);
}
.bonus-value {
  font-size: 30px;
  font-weight: 900;
  color: #64ffb0;
  line-height: 1.2;
  letter-spacing: 0.3px;
}
.bonus-extra {
  font-size: 13px;
  font-weight: 900;
  color: var(--text-soft);
  margin-top: 2px;
}
.payment-methods {
  margin-top: 12px;
}
.payment-label {
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.payment-icon {
  width: 36px;
  height: 26px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 7px;
}
.payment-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.95;
}
.card-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 200px;
  padding: 14px 22px;
  background: linear-gradient(180deg, var(--accent-light), var(--accent));
  color: #141414;
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  box-shadow: var(--shadow-accent);
}
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(255, 176, 0, 0.35);
}
.terms-text {
  font-size: 11px;
  color: var(--muted);
}
.faq-section {
  padding: 40px 0;
}
.faq-section .section-header h2 {
  color: rgba(255, 200, 64, 0.98);
  text-shadow: 0 8px 26px rgba(255, 176, 0, 0.12);
}
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}
.faq-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.18));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.faq-card[open] {
  border-color: rgba(255, 176, 0, 0.3);
}
.faq-question {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
  transition: var(--transition);
}
.faq-question::-webkit-details-marker {
  display: none;
}
.faq-question:hover {
  background: rgba(255, 255, 255, 0.02);
}
.faq-icon {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 15px;
  color: #141414;
  flex-shrink: 0;
}
.faq-text {
  flex: 1;
  font-weight: 900;
  font-size: 14px;
  color: var(--text-soft);
}
.faq-arrow {
  width: 22px;
  height: 22px;
  position: relative;
  transition: var(--transition);
}
.faq-arrow::before,
.faq-arrow::after {
  content: "";
  position: absolute;
  background: var(--accent);
  border-radius: 2px;
  transition: var(--transition);
}
.faq-arrow::before {
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-arrow::after {
  width: 2px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-card[open] .faq-arrow::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq-answer {
  padding: 0 18px 18px 62px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  text-align: left;
}
.legal-section {
  padding: 20px 0;
}
.legal-box {
  display: flex;
  gap: 18px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.2));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.legal-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 100, 100, 0.12);
  border: 1px solid rgba(255, 100, 100, 0.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.legal-content h3 {
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.legal-content p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 8px;
}
.legal-content p:last-child {
  margin-bottom: 0;
}
.site-footer {
  padding: 30px 0 20px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.35));
  border-top: 1px solid var(--line);
}
.footer-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  margin-bottom: 24px;
}
.footer-logo {
  font-size: 22px;
  font-weight: 900;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.footer-tagline {
  color: var(--muted);
  font-size: 13px;
  max-width: 340px;
  line-height: 1.6;
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 900;
}
.trust-badge img {
  width: 16px;
  height: 16px;
  opacity: 0.9;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}
.footer-responsible {
  font-weight: 900;
  color: var(--text-soft);
}
@media (max-width: 900px) {
  .casino-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .card-info {
    padding-left: 0;
    padding-top: 24px;
  }
  .card-bonus {
    border-left: none;
    border-top: 1px solid var(--line);
    padding-top: 16px;
  }
  .cta-button {
    max-width: 100%;
  }
  .legal-box {
    flex-direction: column;
    text-align: center;
  }
  .legal-icon {
    margin: 0 auto;
  }
  .faq-answer {
    padding-left: 18px;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .wrap {
    width: calc(100% - 28px);
  }
  .logo-text {
    font-size: 22px;
  }
  .hero-section {
    padding: 16px 0 28px;
  }
  .hero-badge {
    font-size: 10px;
    padding: 6px 14px;
  }
  .hero-section h1 {
    font-size: 22px;
  }
  .hero-desc {
    font-size: 14px;
  }
  .hero-update {
    padding: 10px 14px;
  }
  .hero-update::after {
    font-size: 12px;
  }
  .hero-features {
    gap: 8px;
  }
  .feature-item {
    flex: 1 1 calc(50% - 8px);
    padding: 8px 12px;
  }
  .feature-icon {
    width: 16px;
    height: 16px;
  }
  .feature-text {
    font-size: 12px;
  }
  .section-header {
    margin-bottom: 18px;
  }
  .section-header h2 {
    font-size: 18px;
  }
  .section-subtitle {
    font-size: 13px;
  }
  .casino-card {
    padding: 14px;
    border-radius: var(--radius-md);
  }
  .position-badge {
    left: 12px;
    top: 12px;
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
  .promo-label {
    top: 12px;
    right: 12px;
    font-size: 9px;
    padding: 5px 10px;
  }
  .card-info {
    flex-direction: column;
    text-align: center;
    padding-top: 28px;
  }
  .casino-logo {
    width: 65px;
    height: 65px;
  }
  .casino-name {
    font-size: 17px;
  }
  .casino-tagline {
    display: none;
  }
  .casino-rating {
    justify-content: center;
  }
  .rating-votes {
    display: none;
  }
  .bonus-value {
    font-size: 24px;
  }
  .payment-methods {
    display: none;
  }
  .cta-button {
    padding: 12px 18px;
    font-size: 13px;
  }
  .terms-text {
    display: none;
  }
  .faq-question {
    padding: 14px 14px;
  }
  .faq-icon {
    width: 26px;
    height: 26px;
    font-size: 13px;
  }
  .faq-text {
    font-size: 13px;
  }
  .faq-answer {
    padding: 0 14px 14px 14px;
    font-size: 13px;
  }
  .legal-box {
    padding: 16px;
  }
  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 400px) {
  .feature-item {
    flex: 1 1 100%;
  }
  .hero-section h1 {
    font-size: 20px;
  }
}