/* AW33 — Nepal Casino Landing  |  v1.0.4 */

:root {
  --color-bg-base: #000000;
  --color-bg-elevated: #0E0E0E;
  --color-bg-section: #0A0A0A;
  --color-bg-card: #1A1A1A;
  --color-bg-marquee: rgba(0, 0, 0, 0.92);

  --color-brand-yellow: #FFD60A;
  --color-brand-yellow-hover: #FFCC00;
  --color-brand-navy: #1E2A6B;
  --color-accent-red: #C8102E;

  --color-gold-dark: #B8860B;
  --color-gold-mid: #D4A017;
  --color-gold-light: #F5D26C;
  --gradient-gold: linear-gradient(135deg, #B8860B 0%, #FFD700 50%, #B8860B 100%);

  --color-text-on-dark: #FFFFFF;
  --color-text-on-yellow: #1A1A1A;
  --color-text-muted: #B5B5B5;

  --color-btn-login-bg: #3A3A3A;
  --color-btn-login-text: #FFFFFF;

  --color-whatsapp: #25D366;
  --color-telegram: #0088CC;

  --header-height: 64px;
  --nav-height: 56px;
  --marquee-height: 44px;
  --container-max: 1280px;

  --font-heading: "Montserrat", "Inter", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-decorative: "Cinzel", "Playfair Display", Georgia, serif;
  --font-devanagari: "Noto Sans Devanagari", "Inter", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--color-bg-base);
  color: var(--color-text-on-dark);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==================== HEADER ==================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg-base);
  height: var(--header-height);
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid #1a1a1a;
}

.header-inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: 24px;
  display: flex;
  align-items: stretch;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 8px 0;
}
.brand img {
  height: 100%;
  max-height: 48px;
  width: auto;
  display: block;
}

.online-counter {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #fff;
  font-weight: 400;
}
.online-counter .dot {
  width: 8px; height: 8px;
  background: #1ee07a;
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 8px rgba(30, 224, 122, 0.7);
  animation: pulse 1.6s ease-in-out infinite;
}
.online-counter strong { font-weight: 700; margin: 0 4px; }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: stretch;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  font-size: 14px;
  color: #fff;
}
.lang-switcher .flag {
  width: 20px; height: 14px;
  background: linear-gradient(to bottom, #C8102E 50%, #003893 50%);
  border-radius: 1px;
  display: inline-block;
}

.btn-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  border-radius: 0;
  border: 0;
  text-transform: none;
  height: 100%;
  white-space: nowrap;
  transition: background-color 0.15s ease;
}
.btn-login {
  background: var(--color-btn-login-bg);
  color: var(--color-btn-login-text);
  width: 110px;
}
.btn-login:hover { background: #4a4a4a; }
.btn-register {
  background: var(--color-brand-yellow);
  color: var(--color-text-on-yellow);
  width: 120px;
}
.btn-register:hover { background: var(--color-brand-yellow-hover); }

.hamburger {
  display: none;
  width: 48px;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* ==================== HERO CAROUSEL ==================== */
.hero {
  position: relative;
  height: 460px;
  overflow: hidden;
  background: var(--color-bg-base);
}

.hero-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* Decorative gold filigree on left edge */
.hero-slide::after {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: var(--gradient-gold);
  opacity: 0.85;
}

.hero-content {
  position: relative;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  z-index: 2;
  max-width: 600px;
}

.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 12px;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.hero-bonus {
  font-family: var(--font-decorative);
  font-size: 88px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
  text-shadow: 0 0 30px rgba(212, 160, 23, 0.3);
}

.hero-meta {
  font-size: 15px;
  color: var(--color-text-muted);
  letter-spacing: 1px;
}

.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: background-color 0.2s ease, transform 0.2s ease;
  border: 0;
}
.hero-dot.is-active {
  background: var(--color-brand-yellow);
  transform: scale(1.2);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(0,0,0,0.4);
  color: var(--color-brand-yellow);
  border: 1px solid rgba(255, 214, 10, 0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  z-index: 5;
  transition: background-color 0.15s ease;
}
.hero-arrow:hover { background: rgba(0,0,0,0.7); }
.hero-arrow.prev { left: 16px; }
.hero-arrow.next { right: 16px; }

/* ==================== PRIMARY NAV ==================== */
.primary-nav {
  background: var(--color-brand-yellow);
  height: var(--nav-height);
  display: flex;
  align-items: stretch;
  position: relative;
  z-index: 50;
}

.nav-list {
  display: flex;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-list::-webkit-scrollbar { display: none; }

.nav-list > li {
  display: flex;
  align-items: stretch;
}
.nav-list a, .nav-list button.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  font-size: 15px;
  font-weight: 500;
  color: #000;
  white-space: nowrap;
  font-family: var(--font-body);
  transition: color 0.15s ease;
  border-bottom: 2px solid transparent;
}
.nav-list a:hover, .nav-list button.nav-link:hover {
  color: var(--color-brand-navy);
}
.nav-list .is-active a, .nav-list .is-active button.nav-link {
  font-weight: 700;
  border-bottom-color: #000;
}
.nav-caret { margin-left: 4px; font-size: 10px; }

/* ==================== MARQUEE ==================== */
.marquee {
  background: var(--color-bg-base);
  padding: 10px 16px;
  display: flex;
  justify-content: center;
}
.marquee-pill {
  width: 100%;
  max-width: var(--container-max);
  height: var(--marquee-height);
  background: var(--color-bg-marquee);
  border: 1px solid var(--color-brand-yellow);
  border-radius: 24px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  overflow: hidden;
  position: relative;
}
.marquee-icon {
  flex: 0 0 auto;
  margin-right: 14px;
  color: var(--color-brand-yellow);
  font-size: 18px;
}
.marquee-track {
  flex: 1 1 auto;
  overflow: hidden;
  position: relative;
  height: 100%;
}
.marquee-text {
  position: absolute;
  white-space: nowrap;
  font-family: var(--font-devanagari);
  font-size: 14px;
  color: var(--color-brand-yellow);
  line-height: var(--marquee-height);
  animation: marquee-scroll 38s linear infinite;
  padding-left: 100%;
}
.marquee-text span { margin-right: 60px; }
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ==================== DAILY REWARDS ==================== */
.rewards {
  background: var(--color-bg-section);
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(212, 160, 23, 0.08) 0,
      rgba(212, 160, 23, 0.08) 2px,
      transparent 2px,
      transparent 80px
    );
  padding: 56px 0;
}
.rewards .container { position: relative; }

.section-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 36px;
  letter-spacing: 0.5px;
}
.section-title .gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.rewards-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}

.reward-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-gold-mid);
  height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 16px 12px;
  text-align: center;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.reward-card:hover {
  box-shadow: 0 0 20px rgba(212, 160, 23, 0.4);
  transform: translateY(-2px);
}
.reward-day {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.reward-wheel {
  width: 130px; height: 130px;
}
.reward-amount {
  font-family: var(--font-decorative);
  font-size: 18px;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ==================== PARTNER REFERRAL CARDS ==================== */
.partner-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.partner-card {
  display: flex;
  flex-direction: column;
  background: var(--color-bg-card);
  border: 1px solid var(--color-gold-mid);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: inherit;
}
.partner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(212, 160, 23, 0.45);
}
.partner-card-media {
  position: relative;
  background: #000;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.partner-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.partner-card:hover .partner-card-media img {
  transform: scale(1.04);
}
.partner-card-body {
  padding: 14px 14px 16px;
}
.partner-card-brand {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--color-brand-yellow);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.partner-card-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 8px;
  min-height: 38px;
}
.partner-card-amount {
  font-family: var(--font-decorative);
  font-size: 22px;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.partner-card-cta {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-brand-yellow);
  text-transform: uppercase;
}
.partner-card-cta::after { content: " →"; transition: transform 0.2s ease; display: inline-block; }
.partner-card:hover .partner-card-cta::after { transform: translateX(4px); }

/* ==================== TRUST SECTION ==================== */
.trust {
  background: var(--color-bg-section);
  padding: 56px 0 64px;
  border-top: 1px solid #1a1a1a;
}

.trust-card {
  background: #0e0e0e;
  border: 1px solid #1a1a1a;
  border-radius: 14px;
  padding: 22px 26px;
  margin-bottom: 16px;
}

.trust-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.trust-card-icon {
  width: 36px; height: 36px;
  background: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.trust-card-icon svg { width: 18px; height: 18px; }
.trust-card-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.3px;
  margin: 0;
  flex: 1;
}

/* Game providers grid */
.providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 6px;
}
.provider-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  padding: 10px 14px;
  border-radius: 6px;
  transition: background-color 0.15s ease, transform 0.15s ease;
}
.provider-item:hover {
  background: #161616;
  transform: translateY(-2px);
}
.provider-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Two-column row for License + Payment cards */
.trust-row-2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
  gap: 16px;
  margin-bottom: 16px;
}
.trust-row-2 .trust-card { margin-bottom: 0; }

/* License grid */
.license-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  padding: 6px 0;
}
.license-grid img {
  height: 56px;
  width: auto;
  max-width: 100%;
  display: block;
}

/* Payment grid */
.banks-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding: 6px 0;
}
.banks-grid img {
  width: 44px;
  height: 44px;
  display: block;
  flex: 0 0 auto;
  transition: transform 0.15s ease;
}
.banks-grid img:hover { transform: scale(1.08); }

/* Map */
.map-wrap {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0a0a0a;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(15%) contrast(0.96);
}
.map-address {
  margin-top: 14px;
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
}
.map-address strong { color: #fff; }

@media (max-width: 1024px) {
  .trust-row-2 { grid-template-columns: 1fr; }
  .providers-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
  .provider-item { height: 64px; padding: 8px 10px; }
}
@media (max-width: 768px) {
  .trust { padding: 40px 0 48px; }
  .trust-card { padding: 18px 18px; }
  .trust-card-title { font-size: 15px; }
  .providers-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 4px; }
  .provider-item { height: 56px; padding: 6px 8px; }
  .license-grid img { height: 44px; }
  .banks-grid img { width: 38px; height: 38px; }
}

/* ==================== FOOTER NAV ==================== */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  margin-bottom: 16px;
  font-size: 13px;
}
.footer-nav a {
  color: #cfcfcf;
  transition: color 0.15s ease;
}
.footer-nav a:hover { color: var(--color-brand-yellow); }

/* ==================== CONTENT SECTIONS ==================== */
.content {
  background: var(--color-bg-base);
  padding: 64px 0;
}
.content .container { max-width: 920px; }

.content h1, .content h2, .content h3 {
  font-family: var(--font-heading);
  color: #fff;
}

.content h1 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
.content h2 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  margin-top: 56px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #1a1a1a;
}
.content h2 .gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.content h3 {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--color-gold-light);
}
.content h3 .icon { margin-right: 8px; }

.content p {
  color: #d8d8d8;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
}

.content strong { color: #fff; font-weight: 700; }

.content .lead {
  font-size: 17px;
  color: #e8e8e8;
}

.content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
}
.content ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: #d8d8d8;
  line-height: 1.7;
}
.content ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 6px; height: 6px;
  background: var(--color-brand-yellow);
  border-radius: 1px;
  transform: rotate(45deg);
}

.content blockquote {
  border-left: 3px solid var(--color-gold-mid);
  padding: 14px 18px;
  margin: 22px 0;
  background: rgba(212, 160, 23, 0.05);
  color: #d8d8d8;
  font-style: normal;
  border-radius: 0 4px 4px 0;
}
.content blockquote strong { color: var(--color-brand-yellow); }

.content a.inline {
  color: var(--color-brand-yellow);
  font-weight: 600;
  border-bottom: 1px dashed rgba(255, 214, 10, 0.4);
  transition: color 0.15s ease, border-color 0.15s ease;
}
.content a.inline:hover {
  color: var(--color-brand-yellow-hover);
  border-bottom-color: var(--color-brand-yellow);
}

.content .arrow-link {
  display: inline-block;
  margin-top: 8px;
  margin-bottom: 8px;
  color: var(--color-brand-yellow);
  font-weight: 600;
}
.content .arrow-link::before { content: "→ "; }

/* Hero CTAs (in content) */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 40px;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: 2px;
  border: 0;
  transition: background-color 0.15s ease, transform 0.1s ease;
}
.cta-btn.primary {
  background: var(--color-brand-yellow);
  color: var(--color-text-on-yellow);
}
.cta-btn.primary:hover { background: var(--color-brand-yellow-hover); }
.cta-btn.secondary {
  background: var(--color-btn-login-bg);
  color: #fff;
  border: 1px solid #555;
}
.cta-btn.secondary:hover { background: #4a4a4a; }
.cta-btn.gold {
  background: var(--gradient-gold);
  color: #1a1a1a;
}
.cta-btn:active { transform: translateY(1px); }

/* FAQ */
.faq-item {
  background: var(--color-bg-elevated);
  border: 1px solid #1a1a1a;
  border-radius: 4px;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.15s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--color-brand-yellow);
  font-size: 22px;
  font-weight: 700;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:hover { background: #141414; }
.faq-body {
  padding: 0 20px 18px;
  color: #d8d8d8;
  font-size: 15px;
  line-height: 1.7;
}

/* Footer */
.site-footer {
  background: #050505;
  padding: 28px 0;
  border-top: 1px solid #1a1a1a;
  font-size: 13px;
  color: var(--color-text-muted);
  text-align: center;
}
.site-footer p { line-height: 1.7; }

/* ==================== FLOATING UI ==================== */
.floating-right {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.5);
  border: 0;
  color: #fff;
}
.float-btn:hover { transform: translateY(-3px); }
.float-btn.whatsapp { background: var(--color-whatsapp); }
.float-btn.telegram { background: var(--color-telegram); }
.float-btn.scroll-top {
  background: var(--color-brand-yellow);
  color: #000;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.15s ease;
}
.float-btn.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.floating-left {
  position: fixed;
  left: 18px;
  bottom: 24px;
  z-index: 80;
  background: var(--color-brand-yellow);
  color: #1a1a1a;
  padding: 14px 16px 12px;
  border-radius: 4px;
  width: 120px;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
}
.floating-left .fc-brand {
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.floating-left .fc-headline {
  font-size: 18px;
  line-height: 1.1;
}
.floating-left .fc-wheel {
  margin: 6px auto 0;
  width: 38px; height: 38px;
}

/* ==================== INNER PAGE HERO (apk, login, etc.) ==================== */
.page-hero {
  position: relative;
  background: var(--color-bg-base);
  padding: 56px 0;
  border-bottom: 1px solid #1a1a1a;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: var(--gradient-gold);
  opacity: 0.85;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -160px; top: -160px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(212,160,23,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-kicker {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--color-gold-light);
  text-transform: uppercase;
  margin-bottom: 14px;
  padding: 4px 10px;
  border: 1px solid var(--color-gold-mid);
  border-radius: 2px;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 18px;
}

.page-hero .lead {
  font-size: 16px;
  color: #d8d8d8;
  line-height: 1.7;
  margin-bottom: 26px;
}

.btn-mega {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 17px;
  padding: 18px 32px;
  background: linear-gradient(135deg, #FF7A1A 0%, #FFA730 100%);
  color: #1a1a1a;
  border-radius: 4px;
  border: 0;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 28px rgba(255, 122, 26, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  text-decoration: none;
}
.btn-mega:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 122, 26, 0.5);
}
.btn-mega:active { transform: translateY(0); }

.hero-meta-strip {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}
.hero-meta-strip span {
  position: relative;
  padding-right: 16px;
  border-right: 1px solid #2a2a2a;
}
.hero-meta-strip span:last-child { border-right: 0; padding-right: 0; }

.hero-visual {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(212,160,23,0.25);
}
.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
}

/* ==================== SPEC TABLE ==================== */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-bg-elevated);
  border: 1px solid #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 18px;
}
.spec-table tr { border-bottom: 1px solid #1a1a1a; }
.spec-table tr:last-child { border-bottom: 0; }
.spec-table th, .spec-table td {
  padding: 13px 18px;
  text-align: left;
  font-size: 15px;
  vertical-align: top;
}
.spec-table th {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-text-muted);
  width: 36%;
  background: rgba(0,0,0,0.3);
}
.spec-table td { color: #fff; }

/* ==================== STEPS ==================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
.step-card {
  background: var(--color-bg-elevated);
  border: 1px solid #1a1a1a;
  border-radius: 10px;
  padding: 22px;
}
.step-num {
  font-family: var(--font-decorative);
  font-size: 44px;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 10px;
}
.step-card h3 {
  font-size: 17px !important;
  font-weight: 700 !important;
  margin: 0 0 10px !important;
  color: #fff !important;
  font-family: var(--font-heading) !important;
}
.step-vis {
  margin: 14px 0;
  height: 130px;
  border-radius: 6px;
  background: linear-gradient(135deg, #161616 0%, #0e0e0e 100%);
  border: 1px dashed #2a2a2a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--color-gold-light);
}
.step-vis .vis-icon { font-size: 32px; line-height: 1; }
.step-vis .vis-label { font-size: 11px; letter-spacing: 1.5px; color: #777; text-transform: uppercase; }
.step-card p {
  font-size: 14px !important;
  color: #c0c0c0 !important;
  line-height: 1.65 !important;
  margin: 0 !important;
}

/* ==================== METHOD CARDS ==================== */
.method-card {
  background: var(--color-bg-elevated);
  border: 1px solid #1a1a1a;
  border-radius: 10px;
  padding: 20px 26px;
  margin-bottom: 14px;
}
.method-card h3 {
  font-family: var(--font-heading) !important;
  font-size: 16px !important;
  margin: 0 0 12px !important;
  color: var(--color-brand-yellow) !important;
}
.method-card ol {
  margin: 0;
  padding-left: 22px;
  color: #d8d8d8;
}
.method-card ol li { margin-bottom: 8px; line-height: 1.65; }
.method-card ol li::marker { color: var(--color-gold-light); font-weight: 700; }

/* ==================== FEATURES ==================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}
.feature-card {
  background: var(--color-bg-elevated);
  border: 1px solid #1a1a1a;
  border-radius: 10px;
  padding: 22px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.feature-card:hover {
  border-color: var(--color-gold-mid);
  transform: translateY(-2px);
}
.feature-icon { font-size: 26px; margin-bottom: 10px; line-height: 1; }
.feature-card h3 {
  font-size: 16px !important;
  font-weight: 700 !important;
  margin: 0 0 8px !important;
  color: #fff !important;
  font-family: var(--font-heading) !important;
}
.feature-card p {
  font-size: 14px !important;
  color: #c0c0c0 !important;
  line-height: 1.65 !important;
  margin: 0 !important;
}

/* ==================== COMPARE TABLE ==================== */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-bg-elevated);
  border: 1px solid #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  font-size: 14px;
  margin-bottom: 16px;
}
.compare-table th, .compare-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #1a1a1a;
  color: #d8d8d8;
}
.compare-table thead th {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-brand-yellow);
  background: rgba(0,0,0,0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.compare-table td:first-child {
  color: #fff;
  font-weight: 600;
}
.compare-table tr:last-child td { border-bottom: 0; }

/* ==================== TROUBLESHOOT ==================== */
.troubleshoot dt {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-gold-light);
  margin-top: 18px;
  margin-bottom: 6px;
  font-size: 16px;
}
.troubleshoot dt:first-child { margin-top: 0; }
.troubleshoot dd {
  margin: 0 0 8px;
  color: #d8d8d8;
  font-size: 15px;
  line-height: 1.7;
}

/* ==================== STICKY CTA BAR ==================== */
.sticky-cta {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.96);
  border-top: 1px solid #2a2a2a;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 12px 18px;
  z-index: 70;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sticky-cta .btn-mega {
  width: 100%;
  max-width: 520px;
  padding: 14px 22px;
  font-size: 15px;
}
body.has-sticky-cta { padding-bottom: 92px; }
body.has-sticky-cta .floating-right { bottom: 96px; }

/* ==================== MOBILE ==================== */
@media (max-width: 1024px) {
  .container { padding: 0 16px; }
  .header-inner { padding-left: 16px; gap: 12px; }
  .online-counter { font-size: 12px; }
  .lang-switcher { padding: 0 10px; font-size: 12px; }
  .btn-login { width: 90px; font-size: 13px; }
  .btn-register { width: 100px; font-size: 13px; }

  .rewards-row { grid-template-columns: repeat(4, 1fr); }
  .rewards-row .reward-card:nth-child(n+5) { display: none; }
  .partner-cards { grid-template-columns: repeat(2, 1fr); }
  .page-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header-inner { gap: 8px; padding-left: 12px; }
  .online-counter { display: none; }
  .lang-switcher .label { display: none; }
  .lang-switcher { padding: 0 8px; }

  .hero { height: 280px; }
  .hero-content { padding: 0 24px; }
  .hero-headline { font-size: 22px; margin-bottom: 10px; }
  .hero-bonus { font-size: 54px; margin-bottom: 8px; }
  .hero-eyebrow { font-size: 11px; letter-spacing: 2px; margin-bottom: 8px; }
  .hero-meta { font-size: 12px; }
  .hero-arrow { width: 36px; height: 36px; font-size: 18px; }

  .primary-nav { display: none; }
  .primary-nav.is-open {
    display: block;
    position: absolute;
    left: 0; right: 0;
    top: var(--header-height);
    height: auto;
    z-index: 60;
  }
  .primary-nav.is-open .nav-list {
    flex-direction: column;
    align-items: stretch;
    overflow-x: visible;
    overflow-y: auto;
    max-height: 70vh;
  }
  .primary-nav.is-open .nav-list > li {
    border-bottom: 1px solid rgba(0,0,0,0.15);
  }
  .primary-nav.is-open .nav-list a,
  .primary-nav.is-open .nav-list button.nav-link {
    padding: 14px 18px;
    width: 100%;
  }
  .hamburger { display: flex; }

  .section-title { font-size: 26px; margin-bottom: 24px; }

  .rewards { padding: 36px 0; }
  .rewards-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .reward-card { height: 220px; }
  .reward-wheel { width: 100px; height: 100px; }
  .partner-cards { grid-template-columns: 1fr; gap: 14px; }
  .partner-card-title { min-height: 0; }
  .page-hero { padding: 36px 0 40px; }
  .page-hero h1 { font-size: 26px; }
  .page-hero .lead { font-size: 15px; }
  .btn-mega { font-size: 15px; padding: 14px 22px; width: 100%; }
  .hero-meta-strip { font-size: 12px; gap: 10px; }
  .hero-meta-strip span { padding-right: 10px; }
  .feature-grid { grid-template-columns: 1fr; }
  .compare-table { font-size: 13px; }
  .compare-table th, .compare-table td { padding: 10px 10px; }
  body.has-sticky-cta { padding-bottom: 76px; }
  body.has-sticky-cta .floating-right { bottom: 80px; }
  .sticky-cta { padding: 8px 12px; }
  .sticky-cta .btn-mega { padding: 12px 16px; font-size: 14px; }

  .content { padding: 40px 0; }
  .content h1 { font-size: 24px; }
  .content h2 { font-size: 20px; margin-top: 36px; }
  .content h3 { font-size: 17px; }
  .content p, .content ul li { font-size: 15px; }

  .hero-ctas { flex-direction: column; align-items: stretch; }
  .cta-btn { justify-content: center; }

  .floating-left { display: none; }
  .float-btn { width: 48px; height: 48px; font-size: 18px; }

  .marquee-text { font-size: 13px; }
}
