*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --rove-bg: #0e0e10;
  --rove-bg-soft: #161618;
  --rove-card: #1a1a1c;
  --rove-gold: #dcbe64;
  --rove-gold-deep: #c4a040;
  --rove-rose: #e8a0a0;
  --rove-rose-deep: #c07878;
  --rove-text: #f5f0e0;
  --rove-muted: #a09070;
  --rove-border: rgba(220, 190, 100, 0.22);
  --rove-border-strong: rgba(220, 190, 100, 0.5);
  --rove-shadow: 0 14px 32px rgba(0, 0, 0, 0.55);
  --rove-radius: 12px;
  --rove-serif: "Cormorant Garamond", Georgia, serif;
  --rove-sans: "Inter", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--rove-text);
  background:
    linear-gradient(180deg, #0e0e10 0%, #161618 100%);
  font-family: var(--rove-sans);
  line-height: 1.7;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: linear-gradient(160deg, rgba(220, 200, 140, 0.04) 0%, transparent 60%);
}

a {
  color: var(--rove-text);
}

img {
  display: block;
  max-width: 100%;
}

.rove-page {
  position: relative;
  z-index: 1;
  overflow-x: clip;
  max-width: 100%;
}

.rove-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.rove-section {
  padding: 84px 0;
}

.rove-section-head {
  margin-bottom: 28px;
}

.rove-eyebrow {
  margin: 0 0 12px;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rove-muted);
  font-weight: 500;
}

.rove-section h1,
.rove-section h2,
.rove-section h3 {
  margin: 0;
  font-family: var(--rove-serif);
  color: var(--rove-text);
}

.rove-section h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.5px;
}

.rove-lead,
.rove-intro {
  max-width: 760px;
  color: var(--rove-muted);
  font-size: 1.05rem;
}

.rove-divider {
  width: 80px;
  height: 1px;
  margin: 24px auto 0;
  background: var(--rove-gold);
}

.rove-divider-left {
  width: 80px;
  height: 1px;
  margin: 20px 0 0;
  background: var(--rove-gold);
}

.rove-button,
.rove-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 4px;
  font-family: var(--rove-serif);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 1px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.rove-button:focus-visible,
.rove-cta-btn:focus-visible,
.rove-burger:focus-visible,
.rove-faq-question:focus-visible,
.rove-cookie-btn:focus-visible {
  outline: 2px solid var(--rove-rose);
  outline-offset: 3px;
}

.rove-button-primary,
.rove-cta-btn {
  background: var(--rove-gold);
  color: var(--rove-bg);
  border: 1px solid var(--rove-gold);
}

.rove-button-primary:hover,
.rove-cta-btn:hover {
  background: var(--rove-text);
  color: var(--rove-bg);
}

.rove-button-ghost {
  background: transparent;
  color: var(--rove-gold);
  border: 1px solid var(--rove-gold);
}

.rove-button-ghost:hover {
  background: var(--rove-gold);
  color: var(--rove-bg);
}

.rove-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(14, 14, 16, 0.96);
  border-bottom: 1px solid var(--rove-border);
}

.rove-header.rove-header-scrolled {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.rove-header-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.rove-brand {
  color: var(--rove-gold);
  text-decoration: none;
  flex: 0 0 auto;
}

.rove-brand-mark {
  display: block;
  font-family: var(--rove-serif);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.rove-brand-note {
  display: block;
  margin-top: 2px;
  color: var(--rove-muted);
  font-size: 0.62rem;
  font-style: italic;
  letter-spacing: 1px;
}

.rove-nav {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  z-index: 201;
}

.rove-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  color: var(--rove-text);
  text-decoration: none;
  text-underline-offset: 6px;
}

.rove-nav a:hover {
  color: var(--rove-gold);
  text-decoration: underline;
}

.rove-nav a[aria-current="page"]::before,
.rove-nav a[data-active="true"]::before {
  content: "✦ ";
  color: var(--rove-rose);
}

.rove-burger {
  display: none;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border: 1px solid var(--rove-border);
  border-radius: 6px;
  background: transparent;
  color: var(--rove-text);
  cursor: pointer;
}

.rove-burger span,
.rove-burger::before,
.rove-burger::after {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  margin: 0 auto;
  background: currentColor;
}

.rove-burger span {
  margin-top: 4px;
  margin-bottom: 4px;
}

.rove-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(0, 0, 0, 0.58);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

body.rove-nav-open .rove-nav-backdrop {
  opacity: 1;
  visibility: visible;
}

.rove-hero {
  padding: 112px 0 104px;
  text-align: center;
}

.rove-hero .rove-shell {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rove-hero h1 {
  max-width: 980px;
  font-size: clamp(50px, 9vw, 118px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.5px;
}

.rove-hero h1 em {
  color: var(--rove-gold);
  font-style: italic;
}

.rove-hero p {
  max-width: 520px;
  margin: 26px auto 0;
  color: var(--rove-muted);
  font-size: 17px;
  line-height: 1.65;
  font-style: italic;
}

.rove-hero-actions {
  margin-top: 30px;
}

.rove-reading-time {
  margin-top: 18px;
  color: var(--rove-muted);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.rove-timeline {
  position: relative;
  margin-top: 34px;
  padding-left: 32px;
  border-left: 1px solid rgba(220, 190, 100, 0.25);
}

.rove-step {
  position: relative;
  margin-bottom: 26px;
  padding: 0 0 0 18px;
}

.rove-step::before {
  content: "";
  position: absolute;
  left: -39px;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--rove-gold);
  box-shadow: 0 0 0 4px rgba(220, 190, 100, 0.12);
}

.rove-step h3 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.rove-step p {
  margin: 0 0 10px;
  color: var(--rove-muted);
}

.rove-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.rove-team-card,
.rove-note-card,
.rove-panel,
.rove-faq-item,
.rove-type-card,
.rove-article-card {
  background: var(--rove-card);
  border: 1px solid var(--rove-border);
  border-top: 1px solid var(--rove-border-strong);
  border-radius: var(--rove-radius);
  box-shadow: var(--rove-shadow);
}

.rove-team-card,
.rove-type-card,
.rove-panel,
.rove-article-card {
  padding: 26px;
}

.rove-team-card h3,
.rove-type-card h3,
.rove-panel h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.rove-team-card p,
.rove-type-card p,
.rove-panel p,
.rove-article-card p {
  color: var(--rove-muted);
  margin: 0 0 14px;
}

.rove-role {
  margin-bottom: 12px;
  color: var(--rove-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.rove-casino-list {
  display: grid;
  gap: 26px;
}

.rove-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 26px;
  background: var(--rove-card);
  border: 1px solid var(--rove-border);
  border-top: 1px solid rgba(220, 190, 100, 0.5);
  border-radius: 12px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.55);
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.rove-card:hover,
.rove-card.rove-card-live {
  border-color: rgba(220, 190, 100, 0.7);
  transform: translateY(-2px);
}

.rove-card-main {
  flex: 1 1 auto;
  min-width: 0;
}

.rove-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.rove-card-meta h3 {
  font-size: 2.3rem;
  margin-bottom: 6px;
}

.rove-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border: 1px solid rgba(220, 190, 100, 0.5);
  border-radius: 999px;
  font-family: var(--rove-serif);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.rove-rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.rove-bubbles {
  display: inline-flex;
  gap: 6px;
}

.rove-bubble {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(220, 190, 100, 0.45);
}

.rove-bubble.rove-bubble-full {
  background: var(--rove-gold);
  border-color: var(--rove-gold);
}

.rove-score {
  color: var(--rove-text);
  font-size: 0.95rem;
}

.rove-card-copy {
  margin: 0 0 18px;
  color: var(--rove-muted);
}

.rove-bonus {
  margin: 0 0 18px;
  font-family: var(--rove-serif);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--rove-text);
  text-decoration: underline;
  text-decoration-color: #dcbe64;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.rove-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.rove-pill {
  background: rgba(220, 190, 100, 0.08);
  color: #f5f0e0;
  border: 1px solid rgba(220, 190, 100, 0.22);
  border-radius: 2px;
  padding: 4px 12px;
  font-family: Inter, Arial, sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.rove-proscons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.rove-proscons h4 {
  margin: 0 0 10px;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--rove-gold);
}

.rove-proscons ul {
  margin: 0;
  padding-left: 18px;
  color: var(--rove-muted);
}

.rove-proscons li + li {
  margin-top: 8px;
}

.rove-disclaimer {
  margin-top: 14px;
  color: var(--rove-muted);
  font-size: 0.85rem;
}

.rove-quote {
  margin: 22px 0;
  padding: 20px 22px;
  border-left: 2px solid var(--rove-gold);
  background: rgba(220, 190, 100, 0.05);
  color: var(--rove-text);
  font-family: var(--rove-serif);
  font-size: 1.5rem;
  line-height: 1.35;
}

.rove-quote cite {
  display: block;
  margin-top: 10px;
  font-family: var(--rove-sans);
  font-size: 0.85rem;
  font-style: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--rove-muted);
}

.rove-faq-list {
  display: grid;
  gap: 14px;
}

.rove-faq-item {
  overflow: hidden;
}

.rove-faq-question {
  width: 100%;
  padding: 20px 24px;
  border: 0;
  background: transparent;
  color: var(--rove-text);
  text-align: left;
  font: 500 1.05rem/1.5 var(--rove-sans);
  cursor: pointer;
}

.rove-faq-question::after {
  content: "+";
  float: right;
  color: var(--rove-gold);
  font-size: 1.4rem;
  line-height: 1;
}

.rove-faq-question[aria-expanded="true"]::after {
  content: "−";
}

.rove-faq-answer {
  display: none;
  padding: 0 24px 22px;
  color: var(--rove-muted);
}

.rove-faq-answer p {
  margin: 0 0 12px;
}

.rove-faq-item.rove-faq-open .rove-faq-answer {
  display: block;
}

.rove-safe-box {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  gap: 22px;
  align-items: start;
}

.rove-safe-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.rove-safe-link,
.rove-footer-rg a {
  color: var(--rove-gold);
  text-decoration: none;
}

.rove-safe-link:hover,
.rove-footer-rg a:hover {
  text-decoration: underline;
}

.rove-badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid var(--rove-gold);
  color: var(--rove-text);
  font-weight: 600;
}

.rove-footer {
  padding: 42px 0 32px;
  border-top: 1px solid var(--rove-border);
  background: rgba(10, 10, 12, 0.85);
}

.rove-footer-stack {
  display: grid;
  gap: 18px;
}

.rove-footer-rg,
.rove-footer-copy {
  color: var(--rove-muted);
  font-size: 0.95rem;
}

.rove-footer-links,
.rove-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.rove-footer-links a,
.rove-footer-legal a {
  color: var(--rove-text);
  text-decoration: none;
}

.rove-footer-links a:hover,
.rove-footer-legal a:hover {
  color: var(--rove-gold);
}

.rove-cookie-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 250;
  width: min(420px, calc(100% - 32px));
  padding: 18px;
  background: rgba(26, 26, 28, 0.98);
  border: 1px solid var(--rove-border);
  border-top: 1px solid rgba(220, 190, 100, 0.5);
  border-radius: 12px;
  box-shadow: var(--rove-shadow);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.rove-cookie-banner[data-rove-cookie-state="visible"] {
  opacity: 1;
  visibility: visible;
}

.rove-cookie-banner p {
  margin: 0 0 14px;
  color: var(--rove-muted);
  font-size: 0.94rem;
}

.rove-cookie-actions,
.rove-age-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rove-cookie-btn,
.rove-age-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid var(--rove-gold);
  font-family: var(--rove-serif);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.rove-cookie-btn[data-rove-choice="accept"],
.rove-age-btn-primary {
  background: var(--rove-gold);
  color: var(--rove-bg);
}

.rove-cookie-btn[data-rove-choice="decline"],
.rove-age-btn-secondary {
  background: transparent;
  color: var(--rove-gold);
}

.rove-age-box h2 {
  font-size: clamp(2rem, 6vw, 3rem);
  color: #0e0e10;
}

.rove-age-box p {
  margin: 0 0 18px;
  color: #4a4437;
}

.rove-age-box a {
  color: #7e6130;
}

.rove-article-hero {
  padding: 84px 0 44px;
}

.rove-article-hero h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
  font-weight: 400;
  line-height: 1.02;
}

.rove-article-layout {
  display: grid;
  gap: 22px;
}

.rove-article-card h2 {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.rove-article-card ul {
  color: var(--rove-muted);
  padding-left: 18px;
}

.rove-article-card li + li {
  margin-top: 10px;
}

.rove-logo-wrap { display:flex; align-items:center; justify-content:center; width:min(180px,100%); height:auto; min-height:52px; max-width:100%; background:#ffffff; border-radius:8px; padding:8px 12px; box-shadow:0 2px 8px rgba(0,0,0,0.25); flex-shrink:0; }
@media (max-width:550px){ .rove-logo-wrap{ width:min(200px,85%); min-height:56px; margin:0 auto 8px; } .rove-card{ flex-direction:column !important; } }
.rove-logo-wrap img { width:100%; height:100%; object-fit:contain; display:block; }

@media (max-width: 1100px) {
  .rove-nav {
    position: fixed;
    top: 92px;
    right: 16px;
    width: min(340px, calc(100% - 32px));
    max-height: calc(100vh - 120px);
    padding: 22px;
    border: 1px solid var(--rove-border);
    border-top: 1px solid rgba(220, 190, 100, 0.5);
    border-radius: 12px;
    background: #0e0e10;
    box-shadow: var(--rove-shadow);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    transform: translateX(calc(100% + 16px));
    transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
  }

  body.rove-nav-open .rove-nav {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .rove-burger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media (min-width: 1101px) {
  .rove-nav {
    display: inline-flex;
  }
}

@media (max-width: 900px) {
  .rove-grid,
  .rove-safe-box,
  .rove-proscons {
    grid-template-columns: 1fr;
  }

  .rove-card {
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .rove-shell,
  .rove-header-inner {
    width: min(100% - 20px, 1160px);
  }

  .rove-hero {
    padding: 88px 0 72px;
  }

  .rove-hero h1 {
    font-size: clamp(1.75rem, 8vw, 3rem);
    line-height: 1.08;
  }

  .rove-section {
    padding: 56px 0;
  }

  .rove-card,
  .rove-team-card,
  .rove-type-card,
  .rove-panel,
  .rove-article-card {
    padding: 18px;
  }

  .rove-cookie-banner {
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
  }
}

@media (max-width: 550px) {
  html,
  body {
    overflow-x: clip;
    max-width: 100%;
  }

  .rove-shell,
  .rove-header-inner {
    width: min(100% - 16px, 1160px);
  }

  .rove-page * {
    max-width: 100%;
  }

  .rove-casino-list,
  .rove-grid {
    grid-template-columns: 1fr !important;
    min-width: 0;
  }

  .rove-casino-list > *,
  .rove-grid > * {
    min-width: 0;
  }

  .rove-card {
    flex-direction: column !important;
    min-width: 0;
    gap: 14px;
  }

  .rove-card * {
    min-width: 0;
    max-width: 100%;
  }

  .rove-card-top {
    flex-wrap: wrap;
    gap: 8px;
  }

  .rove-logo-wrap {
    width: min(200px, 85%);
    min-height: 56px;
    margin: 0 auto 8px;
  }

  .rove-cta-btn,
  .rove-button,
  .rove-age-btn,
  .rove-cookie-btn {
    width: 100% !important;
    max-width: 100%;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .rove-age-actions,
  .rove-cookie-actions {
    flex-direction: column;
    align-items: stretch;
  }

  h1,
  h2 {
    font-size: clamp(1.25rem, 6vw, 2rem) !important;
    overflow-wrap: anywhere;
  }

  .rove-hero h1 {
    font-size: clamp(1.35rem, 7vw, 2rem) !important;
    line-height: 1.1;
  }

  .rove-card-meta h3,
  .rove-step h3,
  .rove-team-card h3,
  .rove-type-card h3,
  .rove-panel h3 {
    font-size: clamp(1.2rem, 5.5vw, 1.65rem);
  }

  .rove-article-card h2 {
    font-size: clamp(1.25rem, 5.5vw, 1.75rem) !important;
  }

  .rove-bonus {
    font-size: clamp(1rem, 4.5vw, 1.35rem);
    overflow-wrap: anywhere;
  }

  .rove-quote {
    font-size: clamp(1rem, 4.5vw, 1.25rem);
    padding: 16px;
    overflow-wrap: anywhere;
  }

  .rove-eyebrow {
    letter-spacing: 2px;
    font-size: 10px;
    overflow-wrap: anywhere;
  }

  .rove-timeline {
    padding-left: 22px;
    margin-top: 24px;
  }

  .rove-step {
    padding-left: 12px;
  }

  .rove-step::before {
    left: -30px;
    width: 10px;
    height: 10px;
  }

  .rove-footer-rg {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    align-items: center;
  }

  .rove-footer-rg a,
  .rove-safe-links a {
    overflow-wrap: anywhere;
  }

  .rove-faq-question {
    padding: 16px 18px;
    font-size: 0.98rem;
    overflow-wrap: anywhere;
  }

  .rove-faq-answer {
    padding: 0 18px 18px;
  }

  .rove-card:hover {
    transform: none !important;
  }

  .rove-nav {
    max-width: min(320px, 85vw) !important;
  }

  .rove-brand {
    min-width: 0;
    max-width: calc(100% - 60px);
  }

  .rove-brand-note {
    overflow-wrap: anywhere;
  }

  .rove-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 100%;
  }

  .rove-table-wrap table {
    table-layout: auto;
    min-width: 100%;
    width: max-content;
  }

  .rove-table-wrap thead th {
    white-space: nowrap;
  }

  .rove-table-wrap td {
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
  }

  .rove-payment-grid,
  .rove-method-grid {
    grid-template-columns: 1fr !important;
    min-width: 0;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: clamp(1.1rem, 7vw, 1.5rem) !important;
  }

  .rove-hero h1 {
    font-size: clamp(1.1rem, 7vw, 1.45rem) !important;
  }

  .rove-brand-mark {
    font-size: 1.15rem;
    letter-spacing: 2px;
  }
}
