/* ============================================================
   10 Rodadas Grátis — Premium Black & Gold
   Tipografia humanista, glassmorphism, hairline borders
   ============================================================ */

/* --- Reset & box model ------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: #0D0D0D;
  color: #E8E0D0;
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  max-width: 100vw;
}

img, video, svg, table {
  max-width: 100%;
  height: auto;
  display: block;
}

table {
  width: 100%;
  border-collapse: collapse;
  overflow-x: auto;
  display: block;
}

/* --- Typography ------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 700;
  line-height: 1.25;
  color: #F5EDD8;
}

h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 0.75rem; }
h2 { font-size: clamp(1.2rem, 3vw, 1.75rem); margin-bottom: 0.5rem; }
h3 { font-size: clamp(1rem, 2.5vw, 1.35rem); margin-bottom: 0.4rem; }
h4 { font-size: 1.1rem; margin-bottom: 0.35rem; }

p { margin-bottom: 1.1rem; }

a {
  color: #C9A84C;
  text-decoration: underline;
  text-underline-offset: 3px;
}
a:hover, a:focus { color: #E8C96A; text-decoration: underline; }

strong { color: #F5EDD8; font-weight: 600; }
em { color: #C9A84C; }

small {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C9A84C;
  display: block;
  margin-bottom: 0.25rem;
}

time { color: #A89060; }

/* --- Skip link -------------------------------------------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #C9A84C;
  color: #0D0D0D;
  padding: 0.5rem 1rem;
  z-index: 999;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

/* --- Site header ------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(13, 13, 13, 0.97);
  border-bottom: 1px solid #C9A84C40;
  width: 100%;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1rem;
  height: 60px;
  max-width: 100%;
  width: 100%;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  min-width: 0;
}

.brand-name {
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 1rem;
  color: #C9A84C;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
}
.brand-name:hover { color: #E8C96A; }

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  flex-shrink: 0;
}

/* --- Header CTAs ------------------------------------------ */
.header-ctas {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-left: auto;
  flex-shrink: 0;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  white-space: nowrap;
  border-radius: 4px;
  text-decoration: none;
  min-height: 44px;
  padding: 0 0.6rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.cta-signup {
  background: #C9A84C;
  color: #0D0D0D;
  border: 1.5px solid #C9A84C;
}
.cta-signup:hover { background: #E8C96A; border-color: #E8C96A; color: #0D0D0D; }

.cta-login {
  background: transparent;
  color: #C9A84C;
  border: 1.5px solid #C9A84C;
}
.cta-login:hover { background: #C9A84C20; color: #E8C96A; }

/* --- Nav toggle ------------------------------------------- */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid #C9A84C50;
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  order: -1;
}

.toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: #C9A84C;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle[aria-expanded="true"] .toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Main nav (mobile: hidden behind toggle) -------------- */
.main-nav {
  display: none;
  background: #111;
  border-top: 1px solid #C9A84C30;
  width: 100%;
}

.main-nav.is-open {
  display: block;
}

.main-nav dl {
  padding: 0.5rem 1rem 1rem;
}

.main-nav dt {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C9A84C80;
  padding: 0.5rem 0 0.25rem;
}

.main-nav dd {
  margin: 0;
}

.main-nav dd a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 0.25rem;
  color: #E8E0D0;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  border-bottom: 1px solid #C9A84C15;
  transition: color 0.2s;
}
.main-nav dd a:hover, .main-nav dd a:focus { color: #C9A84C; }

/* --- Desktop nav ------------------------------------------ */
@media (min-width: 769px) {
  .nav-toggle { display: none; }

  .main-nav {
    display: block;
    background: transparent;
    border-top: none;
    width: auto;
  }

  .main-nav dl {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
  }

  .main-nav dt {
    display: none;
  }

  .main-nav dd {
    margin: 0;
  }

  .main-nav dd a {
    min-height: 60px;
    padding: 0 0.75rem;
    border-bottom: none;
    font-size: 0.8rem;
    border-right: 1px solid #C9A84C20;
    white-space: nowrap;
  }

  .header-inner {
    height: 60px;
    padding: 0 1.5rem;
    gap: 0;
  }

  .brand-name {
    max-width: 200px;
    font-size: 1.05rem;
    margin-right: 1rem;
  }

  .cta {
    font-size: 0.8rem;
    padding: 0 1rem;
  }

  .header-ctas {
    gap: 0.5rem;
    margin-left: 1rem;
  }
}

/* --- Glassmorphism cards ---------------------------------- */
.glass-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid #C9A84C30;
  border-radius: 8px;
  padding: 1.25rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.2s, background 0.2s;
}
.glass-card:hover { border-color: #C9A84C70; background: rgba(255,255,255,0.07); }

/* --- Gold chip / eyebrow ---------------------------------- */
.gold-chip {
  display: inline-block;
  background: #6B1C2F;
  color: #C9A84C;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  border: 1px solid #C9A84C40;
}

.page-eyebrow-fig,
.hero-eyebrow-fig {
  margin-bottom: 0.75rem;
}

/* --- Layout: sidebar left + content ----------------------- */
.hero-section,
.ranking-section,
.review-section,
.compare-section,
.faq-section,
.about-section,
.privacy-section,
.data-section {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  gap: 2rem;
  width: 100%;
}

@media (min-width: 900px) {
  .hero-section,
  .ranking-section,
  .review-section,
  .compare-section,
  .faq-section,
  .about-section,
  .privacy-section,
  .data-section {
    flex-direction: row;
    align-items: flex-start;
    padding: 2.5rem 2rem;
    gap: 2.5rem;
  }
}

/* --- Sidebar left ----------------------------------------- */
.sidebar-left {
  flex: 0 0 auto;
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid #C9A84C25;
  border-radius: 8px;
  padding: 1.25rem;
}

@media (min-width: 900px) {
  .sidebar-left {
    width: 220px;
    position: sticky;
    top: 80px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }
}

.sidebar-heading {
  font-size: 0.9rem;
  color: #C9A84C;
  margin-bottom: 0.75rem;
  margin-top: 0.25rem;
}

.toc-list, .related-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.toc-list li, .related-list li {
  border-bottom: 1px solid #C9A84C15;
}

.toc-list a, .related-list a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0.1rem 0.25rem;
  color: #B0A080;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  text-decoration: none;
}
.toc-list a:hover, .related-list a:focus { color: #C9A84C; }

.rank-toc {
  padding-left: 1.25rem;
  margin: 0 0 1rem 0;
}
.rank-toc li {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: #B0A080;
  padding: 0.25rem 0;
  border-bottom: 1px solid #C9A84C15;
}

/* --- Main content columns --------------------------------- */
.hero-content,
.ranking-content,
.review-content,
.compare-content,
.faq-content,
.about-content,
.privacy-content,
.data-content {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
}

/* --- Page content (body copy) ----------------------------- */
.page-content {
  line-height: 1.75;
  word-break: break-word;
  overflow-wrap: break-word;
}

.page-content h2 { margin-top: 2rem; margin-bottom: 0.5rem; }
.page-content h3 { margin-top: 1.5rem; margin-bottom: 0.4rem; }
.page-content ul, .page-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.1rem;
}
.page-content li { margin-bottom: 0.35rem; }
.page-content a { color: #C9A84C; text-decoration: underline; }
.page-content a:hover { color: #E8C96A; }
.page-content table { margin-bottom: 1.25rem; }
.page-content th, .page-content td {
  padding: 0.5rem 0.75rem;
  border: 1px solid #C9A84C25;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
}
.page-content th {
  background: #1A1A1A;
  color: #C9A84C;
  font-weight: 600;
}
.page-content tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.page-content blockquote {
  border-left: 3px solid #C9A84C;
  padding: 0.5rem 1rem;
  margin: 1rem 0;
  background: rgba(201,168,76,0.06);
  color: #C0B090;
  font-style: italic;
}

/* --- Byline ----------------------------------------------- */
.byline {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: #80725A;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
}

/* --- Hero div (home) ---------------------------------- */
.hero-section {
  /* already defined above */
}

/* --- Ranking cards (home) --------------------------------- */
.ranking-highlights,
.home-children {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem 2rem;
  width: 100%;
}

@media (min-width: 900px) {
  .ranking-highlights,
  .home-children {
    padding: 0 2rem 2.5rem;
  }
}

.ranking-highlights h2,
.home-children h2 {
  margin-bottom: 1rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 600px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
}

.glass-card h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.glass-card h3 a { color: #F5EDD8; text-decoration: none; }
.glass-card h3 a:hover { color: #C9A84C; }
.glass-card p { font-size: 0.88rem; color: #A09070; margin-bottom: 0.75rem; }

.card-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #C9A84C;
  text-decoration: none;
  letter-spacing: 0.05em;
}
.card-link:hover { color: #E8C96A; }

/* --- Child list (dl > dt > a + dd) ----------------------- */
.child-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 600px) {
  .child-list { grid-template-columns: repeat(2, 1fr); gap: 0 2rem; }
}

.child-list dt {
  margin-top: 1rem;
  font-weight: 700;
}
.child-list dt a {
  color: #F5EDD8;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.child-list dt a:hover { color: #C9A84C; }

.child-list dd {
  margin-left: 0;
  font-size: 0.85rem;
  color: #8A7D65;
  margin-bottom: 0.5rem;
}

/* --- Ranking children div ----------------------------- */
.ranking-children {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem 2rem;
  width: 100%;
}
@media (min-width: 900px) {
  .ranking-children { padding: 0 2rem 2.5rem; }
}

/* --- Review hero ------------------------------------------ */
.review-hero-fig {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #C9A84C25;
}
.review-hero-fig figcaption {
  padding: 0.5rem 0.75rem;
  background: #111;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.hero-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* --- Stage badge ------------------------------------------ */
.stage-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 3px;
}
.stage-awareness { background: #1A3A1A; color: #5EAA5E; border: 1px solid #3A6A3A; }
.stage-consideration { background: #1A2A3A; color: #5E9ACA; border: 1px solid #3A5A7A; }
.stage-decision { background: #3A1A1A; color: #CA6E5E; border: 1px solid #6A3A3A; }

/* --- Author div --------------------------------------- */
.author-section {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #C9A84C25;
}
.author-section h2 { margin-bottom: 1rem; }
.author-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.author-name {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  color: #F5EDD8;
}
.author-credentials {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: #C9A84C;
  font-style: normal;
}
.author-bio {
  font-size: 0.92rem;
  color: #A09070;
  margin-top: 0.35rem;
  margin-bottom: 0;
}

/* --- Footer ----------------------------------------------- */
.site-footer {
  background: #080808;
  border-top: 1px solid #C9A84C30;
  padding: 2.5rem 1rem 1.5rem;
  margin-top: 3rem;
  width: 100%;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #C9A84C15;
}

@media (min-width: 700px) {
  .footer-inner {
    flex-direction: row;
    gap: 2rem;
    align-items: flex-start;
  }
}

.footer-col {
  flex: 1 1 auto;
  min-width: 0;
}

.footer-col dt {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid #C9A84C25;
  padding-bottom: 0.4rem;
}

.footer-col dd {
  margin: 0;
  border-bottom: 1px solid #C9A84C10;
}

.footer-col dd a {
  display: flex;
  align-items: center;
  min-height: 44px;
  color: #80725A;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  text-decoration: none;
  padding: 0.15rem 0;
}
.footer-col dd a:hover { color: #C9A84C; }

.responsible-gambling {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: #605040;
  padding: 0.5rem 0;
  display: block;
  min-height: auto;
  line-height: 1.5;
}

.copyright {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: #3A3020;
  padding: 0.5rem 0;
  display: block;
}

/* --- Footer nav (dl structure) ---------------------------- */
.footer-nav {
  max-width: 1200px;
  margin: 1.5rem auto 0;
}

.footer-nav dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}

.footer-nav dt {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C9A84C50;
  margin-right: 1rem;
}

.footer-nav dd {
  margin: 0;
}

.footer-nav dd a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 0.75rem;
  color: #60503A;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  text-decoration: none;
  border-left: 1px solid #C9A84C15;
}
.footer-nav dd a:hover { color: #C9A84C; }

/* --- FAQ styles ------------------------------------------- */
.faq-body details {
  border: 1px solid #C9A84C20;
  border-radius: 6px;
  margin-bottom: 0.75rem;
  background: rgba(255,255,255,0.02);
}
.faq-body summary {
  padding: 0.85rem 1rem;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #F5EDD8;
  list-style: none;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.faq-body summary:hover { color: #C9A84C; }
.faq-body details[open] summary { color: #C9A84C; }
.faq-body details > *:not(summary) {
  padding: 0 1rem 1rem;
  font-size: 0.92rem;
  color: #A09070;
}

/* --- Compare table ---------------------------------------- */
.compare-content .page-content table { font-size: 0.88rem; }

/* --- Data table ------------------------------------------- */
.data-content .page-content table { font-size: 0.88rem; }

/* --- Utility ---------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* --- Focus styles ----------------------------------------- */
a:focus-visible,
button:focus-visible {
  outline: 2px solid #C9A84C;
  outline-offset: 3px;
  border-radius: 3px;
}

/* --- Scrollbar -------------------------------------------- */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #111; }
::-webkit-scrollbar-thumb { background: #C9A84C40; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #C9A84C80; }

/* --- Mobile safety net ------------------------------------ */
@media (max-width: 768px) {
  /* Sidebar after main content so h1 appears in first viewport */
  .sidebar-left { order: 2; }
  .hero-content, .ranking-content, .review-content,
  .compare-content, .faq-content, .about-content,
  .privacy-content, .data-content, .page-content { order: 1; }
  .site-header,
  .header-inner,
  main,
  div,
  .hero-section,
  .ranking-section,
  .review-section,
  .compare-section,
  .faq-section,
  .about-section,
  .privacy-section,
  .data-section,
  .sidebar-left,
  .hero-content,
  .ranking-content,
  .review-content,
  .compare-content,
  .faq-content,
  .about-content,
  .privacy-content,
  .data-content,
  .page-content,
  .site-footer,
  .footer-inner,
  .footer-col,
  .ranking-highlights,
  .home-children,
  .ranking-children,
  .cards-grid {
    max-width: 100%;
    width: 100%;
    overflow-x: hidden;
  }

  .brand-name {
    max-width: 90px;
    font-size: 0.85rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .cta {
    font-size: 0.65rem;
    padding: 0 0.4rem;
    min-height: 44px;
  }

  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.15rem; }
}

/* --- Print ------------------------------------------------ */
@media print {
  .site-header, .nav-toggle, .header-ctas, .sidebar-left, .site-footer { display: none; }
  body { background: #fff; color: #000; }
  a { color: #000; }
}

a[data-cta],button[aria-controls]{min-height:44px;min-width:44px;box-sizing:border-box}main p a{text-decoration:underline}.tbl-scroll{overflow-x:auto;max-width:100%}