/* ===== FONTS ===== */
@font-face {
  font-family: 'Inter';
  font-display: swap;
}

/* ===== CSS VARIABLES ===== */
:root {
  --bg: #FFFFFF;
  --bg-alt: #F8F9FA;
  --border: #E5E7EB;
  --text: #111827;
  --muted: #6B7280;
  --accent: #16A34A;
  --dark: #0f172a;
  --dark2: #1e293b;
  --radius: 8px;
  --font: 'Inter', system-ui, sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }
ul, ol { padding-left: 1.5rem; }

/* ===== HEADER ===== */
.site-header {
  background: var(--dark);
  padding: 0 1rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.site-logo {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-logo span { color: var(--accent); }
.desktop-nav { display: flex; gap: 1.5rem; list-style: none; }
.desktop-nav a { color: #d1d5db; font-size: 0.9rem; transition: color 0.2s; }
.desktop-nav a:hover { color: #fff; text-decoration: none; }
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}
.mobile-nav { display: none; }
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .desktop-nav { display: none; }
  .mobile-nav {
    background: var(--dark2);
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    list-style: none;
    padding: 1rem;
    gap: 0.5rem;
    z-index: 999;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a { color: #d1d5db; padding: 0.5rem 0; display: block; }
  .mobile-nav a:hover { color: var(--accent); }
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
  color: #fff;
  padding: 4rem 1rem 3rem;
}
.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.hero h1, .hero-desc { color: #f1f5f9; }
.hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.hero-desc {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: #cbd5e1;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-stat {
  text-align: center;
}
.hero-stat .stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
}
.hero-stat .stat-label {
  font-size: 0.8rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero-cta-wrap { margin-bottom: 2rem; }
.trust-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  color: #94a3b8;
  font-size: 0.85rem;
}
.trust-stars .stars { color: #fbbf24; font-size: 1.1rem; }
.hero-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 0.75rem 1.5rem;
  display: inline-flex;
}
.hero-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.hero-author-info { text-align: left; }
.hero-author-name { font-weight: 600; color: #f1f5f9; font-size: 0.9rem; }
.hero-author-title { font-size: 0.75rem; color: #94a3b8; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #16A34A, #15803d);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  animation: pulse 2s infinite;
  font-size: 1rem;
  transition: transform 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); text-decoration: none; color: #fff; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22,163,74,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(22,163,74,0); }
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--accent);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--accent);
  transition: all 0.2s;
}
.btn-secondary:hover { background: var(--accent); color: #fff; text-decoration: none; }

/* ===== SECTIONS ===== */
.section { padding: 3rem 1rem; }
.section-inner { max-width: 900px; margin: 0 auto; }
.section-bg-white { background: var(--bg); }
.section-bg-alt { background: var(--bg-alt); }
.section h2 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.section p { margin-bottom: 1rem; color: var(--text); }
.section ul, .section ol { margin-bottom: 1rem; }
.section li { margin-bottom: 0.4rem; }
.section table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  overflow-x: auto;
  display: block;
}
.section th {
  background: var(--dark);
  color: #fff;
  padding: 0.75rem 1rem;
  text-align: left;
  white-space: nowrap;
}
.section td {
  padding: 0.6rem 1rem;
  border-bottom: 1px solid var(--border);
}
.section tr:last-child td { border-bottom: none; }

/* ===== H2 BANNERS ===== */
.h2-banner-wrap {
  display: block;
  width: calc(100% + 32px);
  margin-left: -16px;
  overflow: hidden;
  line-height: 0;
  margin-bottom: 1.5rem;
  border-radius: 0;
}
.h2-banner-img {
  display: block;
  width: 100%;
  aspect-ratio: 3/1;
  object-fit: cover;
}
@media (max-width: 767px) {
  .h2-banner-img { aspect-ratio: 1/1; object-position: center top; }
}
.h2-banner-wrap figcaption {
  font-size: 11px;
  color: #6b7280;
  text-align: right;
  padding: 4px 8px 0;
  font-style: italic;
  line-height: 1.4;
}

/* ===== VITRINA ===== */
.vitrina-section { padding: 3rem 1rem; background: var(--dark); }
.vitrina-inner { max-width: 900px; margin: 0 auto; }
.vitrina-section h2 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 0.5rem;
}
.vitrina-subtitle { color: #94a3b8; margin-bottom: 2rem; }
.vitrina-grid { display: flex; flex-direction: column; gap: 1rem; }
.casino-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 1rem;
  align-items: center;
  transition: transform 0.2s, border-color 0.2s;
}
.casino-card:hover { transform: translateY(-2px); border-color: var(--accent); }
.casino-card.top-pick {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 4px 20px rgba(22,163,74,0.2);
}
.casino-rank {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.top-pick .casino-rank { background: #fbbf24; color: #000; }
.casino-main { min-width: 0; }
.casino-badge {
  display: inline-block;
  background: rgba(22,163,74,0.15);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 0.25rem;
}
.top-pick .casino-badge { background: rgba(251,191,36,0.15); color: #fbbf24; }
.casino-name { font-size: 1.1rem; font-weight: 700; color: #f1f5f9; margin-bottom: 0.25rem; }
.casino-license { font-size: 0.8rem; color: #94a3b8; margin-bottom: 0.2rem; }
.casino-bonus { font-size: 0.85rem; color: #86efac; margin-bottom: 0.4rem; font-weight: 600; }
.casino-features { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.feature-tag {
  background: rgba(255,255,255,0.07);
  color: #d1d5db;
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}
.casino-cta { text-align: center; flex-shrink: 0; }
.casino-rating { color: #fbbf24; font-weight: 700; font-size: 0.9rem; margin-bottom: 0.5rem; }
@media (max-width: 600px) {
  .casino-card {
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto auto;
  }
  .casino-cta { grid-column: 1 / -1; display: flex; align-items: center; gap: 1rem; justify-content: space-between; }
  .casino-cta .btn-primary { font-size: 0.85rem; padding: 10px 16px; }
}

/* ===== EEAT / AUTHOR BOX ===== */
.eeat-section { padding: 3rem 1rem; background: var(--bg-alt); }
.eeat-inner { max-width: 900px; margin: 0 auto; }
.author-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.author-portrait {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--accent);
}
.author-info h3 { font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 0.25rem; }
.author-title { color: var(--muted); font-size: 0.85rem; margin-bottom: 0.75rem; }
.author-bio { font-size: 0.9rem; color: var(--text); margin-bottom: 1rem; }
.author-expertise h4 { font-size: 0.85rem; font-weight: 700; color: var(--dark); margin-bottom: 0.4rem; }
.expertise-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.expertise-tag {
  background: rgba(22,163,74,0.1);
  color: var(--accent);
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 12px;
  border: 1px solid rgba(22,163,74,0.3);
}
@media (max-width: 600px) {
  .author-box { flex-direction: column; align-items: center; text-align: center; }
  .expertise-tags { justify-content: center; }
}

/* ===== REVIEWED BY ===== */
.reviewed-section { padding: 3rem 1rem; background: var(--bg); }
.reviewed-inner { max-width: 900px; margin: 0 auto; }
.reviewed-section h2 { font-size: 1.5rem; font-weight: 700; color: var(--dark); margin-bottom: 1.5rem; }
.reviewed-by-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 768px) { .reviewed-by-cards { grid-template-columns: 1fr; } }
.reviewer-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.reviewer-head { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.reviewer-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}
.reviewer-name { font-weight: 700; color: var(--dark); font-size: 0.9rem; }
.reviewer-role { color: var(--muted); font-size: 0.75rem; }
.reviewer-stars { color: #fbbf24; margin-bottom: 0.5rem; }
.reviewer-quote { font-size: 0.85rem; color: var(--text); font-style: italic; line-height: 1.5; }
.reviewer-date { font-size: 0.75rem; color: var(--muted); margin-top: 0.5rem; }

/* ===== FAQ ===== */
.faq-section { padding: 3rem 1rem; background: var(--bg-alt); }
.faq-inner { max-width: 900px; margin: 0 auto; }
.faq-section h2 { font-size: 1.5rem; font-weight: 700; color: var(--dark); margin-bottom: 1.5rem; }
.faq-list { display: flex; flex-direction: column; gap: 0.5rem; }
.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--dark);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 0.95rem;
  gap: 1rem;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--bg-alt); }
.faq-icon { color: var(--accent); font-size: 1.4rem; flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 1.25rem 1rem; color: var(--text); font-size: 0.9rem; line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  color: #94a3b8;
  padding: 2.5rem 1rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-col h4 { color: #f1f5f9; font-size: 0.9rem; font-weight: 700; margin-bottom: 0.75rem; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 0.4rem; }
.footer-col a { color: #94a3b8; font-size: 0.85rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.7;
  color: #64748b;
}
.footer-bottom .age-badge {
  display: inline-block;
  background: #ef4444;
  color: #fff;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  margin-right: 6px;
}

/* ===== STICKY CTA ===== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  padding: 0.75rem 1rem;
  z-index: 900;
  border-top: 2px solid var(--accent);
  text-align: center;
}
.sticky-cta-inner { max-width: 600px; margin: 0 auto; }
.sticky-cta p { color: #d1d5db; font-size: 0.8rem; margin-bottom: 0.5rem; }
@media (max-width: 768px) { .sticky-cta.visible { display: block; } }

/* ===== POPUP ===== */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.popup-overlay.visible { display: flex; }
.popup-box {
  background: var(--dark2);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
}
.popup-close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}
.popup-box h3 { color: #f1f5f9; font-size: 1.3rem; margin-bottom: 0.5rem; }
.popup-box p { color: #94a3b8; font-size: 0.9rem; margin-bottom: 1.5rem; }
.popup-bonus { color: var(--accent); font-size: 1.5rem; font-weight: 800; margin-bottom: 1rem; display: block; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* ===== BREADCRUMB ===== */
.breadcrumb-section { padding: 0.75rem 1rem; background: var(--bg-alt); border-bottom: 1px solid var(--border); }
.breadcrumb { max-width: 900px; margin: 0 auto; font-size: 0.8rem; color: var(--muted); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 0.4rem; }

/* ===== UPDATE BADGE ===== */
.update-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(22,163,74,0.15);
  color: var(--accent);
  border: 1px solid rgba(22,163,74,0.3);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
