:root {
  --header-bg: #160914;
  --text: #fff8fc;
  --cta: #ff6b96;
  --panel: #2b1327;
  --sectionBorder: #6d355d;
  --brandCard: #24101f;
  --topbar: #7d2456;
  --hero-badge-row: #2b1327;
  --card-border: #9be15d;
  --rating-bg: #160914;
  --hero-bg: #160914;
  --badge-bg: #7d2456;
  --badge-text: #fff8fc;
  --exclusive-tag: #9be15d;
  --welcome-tag: #ff6b96;
  --card-gradient-from: #7d2456;
  --card-gradient-to: #9be15d;
  --cta-from: #7d2456;
  --cta-to: #9be15d;
  --gold: #d9ff8a;
  --gold-muted: #7d2456;
  --background: #11070f;
  --foreground: #fff8fc;
  --primary: #9be15d;
  --primary-foreground: #142107;
  --accent: #ff6b96;
  --accent-foreground: #fff8fc;
  --secondary: #2b1327;
  --secondary-foreground: #fff8fc;
  --card: #2b1327;
  --card-foreground: #fff8fc;
  --muted: #1c0c19;
  --muted-foreground: #c6a9be;
  --border: #6d355d;
  --input: #2b1327;
  --ring: #9be15d;
  --uk-card-bg: #2b1327;
  --uk-border: #6d355da6;
  --uk-brand-ribbon: #7d2456;
  --uk-ribbon-text: #fff8fc;
  --uk-text: #fff8fc;
  --uk-muted: #c6a9be;
  --uk-cta-text: #142107;
  --uk-label: #e1ffad;
  --uk-claim-glow: #9be15d80;
  --uk-claim-glow-soft: #9be15d40;
}

html { color-scheme: dark; }
body { margin: 0; background: var(--background); color: var(--text); }
body.menu-open { overflow: hidden; }

.container { width: min(calc(100% - 32px), 1280px); margin: 0 auto; }
.responsible-top { padding: 7px 16px; background: var(--topbar); color: #fff; text-align: center; font-size: 13px; font-weight: 700; letter-spacing: .04em; }
.responsible-top a { color: #fff; text-decoration: underline; }
.site-header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid var(--sectionBorder); background: var(--header-bg); }
.header-inner { min-height: 60px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.rr-header-brand { display: inline-flex; align-items: center; gap: 9px; min-width: 0; padding: 7px 10px; border: 1px solid rgba(155,225,93,.42); border-radius: 12px; background: rgba(22,9,20,.72); font-weight: 800; letter-spacing: .12em; }
.rr-header-brand .brand-mark { width: 21px; color: var(--primary); filter: drop-shadow(0 0 8px rgba(155,225,93,.5)); }
.rr-header-brand .brand-name { color: var(--text); }
.rr-header-brand .brand-name span { color: var(--primary); }
.nav { display: flex; align-items: center; gap: 32px; }
.nav a { color: var(--text); font-size: 14px; transition: color .2s ease; }
.nav a:hover { color: var(--primary); }
.menu-button { display: none; width: 40px; height: 40px; border: 0; border-radius: 8px; background: transparent; color: var(--text); font-size: 22px; cursor: pointer; }

.badge-viewport { overflow: hidden; padding: 8px; border: 1px solid rgba(109,53,93,.7); border-radius: 12px; background: rgba(17,7,15,.58); }
.badge-track { width: max-content; display: flex; gap: 12px; animation: badges 24s linear infinite; }
.hero-badge { flex: 0 0 auto; padding: 8px 16px; border: 1px solid rgba(109,53,93,.82); border-radius: 999px; font-size: 15px; }
@keyframes badges { to { transform: translateX(-50%); } }

.brand-word-primary {
  background: linear-gradient(90deg, #f3ffd9, #9be15d, #d9ff8a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-word-secondary {
  background: linear-gradient(90deg, #ffd0df, #ff91b2, #ff6b96);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.rr-menu-overlay,
.rr-mobile-menu { pointer-events: none; opacity: 0; }
.rr-menu-overlay.open { pointer-events: auto; opacity: 1; }
.rr-mobile-menu { transform: translateY(-100%); }
.rr-mobile-menu.open { pointer-events: auto; opacity: 1; transform: translateY(0); }
.rr-mobile-menu.open > div { background-color: var(--panel); }

.uk-button-claim {
  background: linear-gradient(125deg, #160914 0%, #2b1327 28%, #7d2456 58%, #9be15d 100%) !important;
  border-color: #9be15d8c !important;
  box-shadow: 0 0 0 1px #9be15d66, 0 4px 14px #11070f73, 0 0 18px var(--uk-claim-glow-soft) !important;
}
.uk-button-claim:hover {
  box-shadow: 0 0 0 1px #9be15da6, 0 8px 28px #7d245666, 0 0 32px var(--uk-claim-glow) !important;
}
.uk-table-row { box-shadow: 0 8px 32px #09030780, inset 0 1px #9be15d14 !important; }
.uk-star-rating-inner { color: var(--primary); }
.uk-star-rating-inner svg { width: 16px; height: 16px; fill: currentColor; stroke: currentColor; }
.uk-mobile-col2-stars .uk-star-rating-inner svg { width: 12px; height: 12px; }
.uk-mobile-cols { display: none; }

.rr-faq-answer { display: none; }
.rr-faq-answer.open { display: block; }
.rr-faq-chevron { transition: transform .2s ease; }
.rr-faq-trigger[aria-expanded="true"] .rr-faq-chevron { transform: rotate(180deg); }

.rr-form-input {
  width: 100%;
  border: 1px solid var(--sectionBorder);
  border-radius: .625rem;
  background: var(--panel);
  color: var(--text);
  padding: .75rem .875rem;
}
.rr-form-input:focus { outline: 2px solid var(--primary); outline-offset: 2px; }

@media (max-width: 768px) {
  .header-inner { min-height: 60px; }
  .menu-button { display: block; }
  .nav { position: absolute; top: 61px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px 16px; border-bottom: 1px solid var(--sectionBorder); background: var(--header-bg); }
  .nav.open { display: flex; }
  .nav a { padding: 12px; border-radius: 8px; }
  .uk-mobile-cols { display: block; }
  .uk-desktop-cols { display: none !important; }
  .uk-mobile-col1-logo { width: 130px; min-width: 130px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-badge-track { animation: none !important; }
  * { scroll-behavior: auto !important; }
}
