/* ============================================================
   GrandWin Casino — Design System CSS
   win-grand.com | Dark Green Premium Casino Theme
   Inspired by grandwin.com color palette
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;600;700;800;900&display=swap');

/* ── CSS Variables ── */
:root {
  /* === GRANDWIN GREEN COLOR PALETTE === */
  --bg:           #0A1F08;   /* Deep dark green — main background */
  --bg-2:         #0D2610;   /* Slightly lighter dark green */
  --surface:      #122D0F;   /* Card / surface background */
  --surface-2:    #183A14;   /* Elevated surface */
  --surface-3:    #1F4519;   /* Highest surface */
  --border:       #1E4018;   /* Subtle border */
  --border-light: #2A5A22;   /* Visible border */

  /* Gold accents — identical to grandwin.com warm gold */
  --gold:         #D4A020;   /* Primary gold */
  --gold-2:       #B8860B;   /* Deeper gold */
  --gold-3:       #F0C040;   /* Light gold / highlight */
  --gold-dim:     rgba(212,160,32,0.12);
  --gold-glow:    rgba(212,160,32,0.25);

  /* Accent green (for success states, badges) */
  --green:        #4ADE80;
  --green-dark:   #16A34A;
  --green-mid:    #22C55E;
  --green-glow:   rgba(74,222,128,0.25);

  /* Semantic */
  --red:          #EF4444;
  --blue:         #3B82F6;

  /* Text */
  --text:         #FFFFFF;
  --text-2:       rgba(255,255,255,0.75);
  --text-muted:   rgba(255,255,255,0.45);
  --text-on-gold: #0A1F08;   /* Dark green text on gold buttons */

  /* Light section (for content areas matching grandwin.com cream style) */
  --light-bg:     #F5F4F0;
  --light-surface:#FFFFFF;
  --light-text:   #1A2410;
  --light-text-2: #4A5540;

  /* Typography */
  --font-main:    'Inter', -apple-system, sans-serif;
  --font-display: 'Outfit', sans-serif;

  /* Spacing */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Border radius */
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.5);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.6);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.7);
  --shadow-gold: 0 0 24px rgba(212,160,32,0.35);
  --shadow-green:0 0 20px rgba(74,222,128,0.3);

  /* Transitions */
  --trans-fast:  0.15s ease;
  --trans-base:  0.25s ease;
  --trans-slow:  0.4s ease;

  /* Layout */
  --container:   1200px;
  --header-h:    64px;
}

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

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

body {
  font-family: var(--font-main);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--trans-fast);
}
a:hover { color: var(--gold-3); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.125rem; }

p { color: var(--text-2); margin-bottom: var(--space-md); }
p:last-child { margin-bottom: 0; }

ul, ol {
  padding-left: var(--space-lg);
  color: var(--text-2);
  margin-bottom: var(--space-md);
}
li { margin-bottom: var(--space-xs); }
strong { color: var(--text); font-weight: 600; }

/* ── Container ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ── Utility ── */
.text-center { text-align: center; }
.mt-2xl { margin-top: var(--space-2xl); }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: #071505;  /* Very dark green — matches grandwin.com header */
  border-bottom: 1px solid rgba(212,160,32,0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow var(--trans-base);
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--space-lg);
}

.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.site-logo img { height: 40px; width: auto; }
.site-logo .logo-mob { display: none; }

/* Nav links */
.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.site-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--trans-fast);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.site-nav a:hover {
  color: var(--gold-3);
  background: rgba(212,160,32,0.1);
}
.site-nav a.active {
  color: var(--gold);
  background: rgba(212,160,32,0.12);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-shrink: 0;
}

/* Language Switcher */
.lang-switcher { position: relative; }
.lang-switcher-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  cursor: pointer;
  color: rgba(255,255,255,0.75);
  font-size: 0.8125rem;
  font-weight: 500;
  transition: all var(--trans-fast);
}
.lang-switcher-toggle:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.lang-switcher-toggle svg {
  width: 12px; height: 12px;
  fill: currentColor;
  transition: transform var(--trans-fast);
}
.lang-switcher.open .lang-switcher-toggle svg { transform: rotate(180deg); }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #071505;
  border: 1px solid rgba(212,160,32,0.25);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  min-width: 180px;
  box-shadow: var(--shadow-lg);
  display: none;
  z-index: 100;
}
.lang-switcher.open .lang-dropdown { display: block; }

.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 8px var(--space-sm);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  transition: all var(--trans-fast);
}
.lang-dropdown a:hover {
  background: rgba(212,160,32,0.1);
  color: var(--gold);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--trans-base);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: #071505;
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: var(--space-xl);
  gap: var(--space-sm);
  transform: translateX(100%);
  transition: transform var(--trans-slow);
  overflow-y: auto;
  border-top: 1px solid rgba(212,160,32,0.15);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 1.125rem;
  font-weight: 500;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: all var(--trans-fast);
}
.mobile-nav a:hover {
  color: var(--gold);
  background: var(--gold-dim);
  border-color: var(--gold-dim);
}
.mobile-nav a.cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: var(--text-on-gold);
  font-weight: 700;
  text-align: center;
  margin-top: var(--space-md);
  border-color: transparent;
}

/* ============================================================
   BUTTONS — grandwin.com style (rounded pills)
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--trans-base);
  white-space: nowrap;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity var(--trans-fast);
}
.btn:hover::after { opacity: 1; }

/* Primary = Bright Gold */
.btn-primary {
  background: linear-gradient(135deg, #FFE066 0%, #F5C842 50%, #E6B01E 100%);
  color: #050A03;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 13px 32px;
  box-shadow: 0 4px 25px rgba(245, 200, 66, 0.6), inset 0 2px 0 rgba(255, 255, 255, 0.4);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 35px rgba(245, 200, 66, 0.8), inset 0 2px 0 rgba(255, 255, 255, 0.5);
  color: #050A03;
}
.btn-primary:active { transform: translateY(0) scale(1); }

/* Large CTA */
.btn-xl { font-size: 1.125rem; padding: 16px 44px; }

/* Green secondary (like grandwin.com REGISTER dark button) */
.btn-green {
  background: linear-gradient(135deg, #1A5C10 0%, #0F3A08 100%);
  color: #fff;
  font-size: 1rem;
  padding: 13px 32px;
  border: 2px solid rgba(74,222,128,0.4);
}
.btn-green:hover {
  transform: translateY(-2px);
  border-color: var(--green);
  box-shadow: 0 6px 24px rgba(74,222,128,0.3);
  color: #fff;
}

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--gold-3);
  border-color: rgba(212,160,32,0.6);
  font-size: 0.9375rem;
  padding: 12px 28px;
}
.btn-outline:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--gold-3);
}

/* Small */
.btn-sm {
  font-size: 0.875rem;
  padding: 9px 20px;
}

/* Pulse animation */
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 4px 25px rgba(245, 200, 66, 0.6), inset 0 2px 0 rgba(255, 255, 255, 0.4); }
  50%       { box-shadow: 0 4px 45px rgba(245, 200, 66, 1), 0 0 20px rgba(255, 255, 255, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.5); }
}
.btn-pulse { animation: pulse-gold 2s ease-in-out infinite; }

/* ============================================================
   HERO SECTION — dark green gradient like grandwin.com
   ============================================================ */

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--space-4xl) 0;
}

/* Green gradient background matching grandwin.com hero */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 70% 30%, rgba(212,160,32,0.09) 0%, transparent 60%),
    radial-gradient(ellipse 90% 100% at 50% 50%, rgba(15,55,8,0.9) 0%, transparent 100%),
    linear-gradient(180deg, #071406 0%, #0B2409 50%, #061203 100%);
  z-index: 0;
}

/* Subtle grid overlay */
.hero-grid-line {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,160,32,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,160,32,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

/* Gold sparkles */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 18% 22%, rgba(212,160,32,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 72% 18%, rgba(212,160,32,0.5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 48% 68%, rgba(212,160,32,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 88% 52%, rgba(212,160,32,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 32% 82%, rgba(74,222,128,0.25) 0%, transparent 100%);
  animation: shimmer 8s ease-in-out infinite alternate;
}

@keyframes shimmer {
  0%   { opacity: 0.5; transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.04); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs .sep { color: rgba(255,255,255,0.2); }
.breadcrumbs .current { color: rgba(255,255,255,0.5); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(212,160,32,0.12);
  border: 1px solid rgba(212,160,32,0.35);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold-3);
  margin-bottom: var(--space-lg);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  color: #fff;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold-3) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-xl);
  max-width: 560px;
}

.hero-perks {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.hero-perk {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255,255,255,0.75);
  font-size: 0.9375rem;
}
.hero-perk .icon { color: var(--green); font-size: 1.1em; font-weight: 700; }

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.trust-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.12); }

.hero-visual {
  position: absolute;
  right: -40px; top: 50%;
  transform: translateY(-50%);
  width: 42%; max-width: 520px;
  z-index: 1;
  pointer-events: none;
}
.hero-visual img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(212,160,32,0.15);
  opacity: 0.9;
}

/* ============================================================
   SECTIONS GENERIC
   ============================================================ */

section { padding: var(--space-4xl) 0; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-3xl);
}

/* Section tag — small label above h2 */
.section-tag {
  display: inline-block;
  background: rgba(212,160,32,0.12);
  color: var(--gold);
  border: 1px solid rgba(212,160,32,0.3);
  border-radius: var(--radius-full);
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
}
.section-header h2 { margin-bottom: var(--space-md); }
.section-header p { color: var(--text-2); font-size: 1.0625rem; }

/* Section variants */
.section-dark { background: var(--bg-2); }
.section-surface { background: var(--surface); }

/* Section with left gold bar accent (matching grandwin.com "Top", "New" style) */
.section-title-bar {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.section-title-bar::before {
  content: '';
  display: block;
  width: 4px;
  height: 1.5em;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}
.section-title-bar h2,
.section-title-bar h3 {
  margin: 0;
  font-size: 1.25rem;
}

/* ============================================================
   TRUST STRIP (below hero)
   ============================================================ */

.trust-strip {
  background: rgba(7,21,5,0.8);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: var(--space-lg) 0;
}
.trust-strip-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-xl) var(--space-3xl);
}
.trust-stat { text-align: center; }
.trust-stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.trust-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   ADVANTAGES / FEATURES GRID
   ============================================================ */

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
}

.advantage-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--trans-base);
  position: relative;
  overflow: hidden;
}
.advantage-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--trans-base);
}
.advantage-card:hover {
  border-color: rgba(212,160,32,0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), var(--shadow-gold);
}
.advantage-card:hover::before { opacity: 1; }

.advantage-icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
  display: block;
}
.advantage-card h3 {
  font-size: 1.0625rem;
  margin-bottom: var(--space-sm);
  color: var(--gold-3);
}
.advantage-card p { font-size: 0.9375rem; margin: 0; }

/* ============================================================
   GAMES / SLOTS GRID
   ============================================================ */

.games-filter {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin-bottom: var(--space-2xl);
}

/* Filter tabs — matching grandwin.com pills */
.filter-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.65);
  border-radius: var(--radius-full);
  padding: 8px 22px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--trans-fast);
}
.filter-btn:hover,
.filter-btn.active {
  background: rgba(212,160,32,0.15);
  border-color: var(--gold);
  color: var(--gold);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: var(--space-md);
}

/* Game Card — rounded like grandwin.com */
.game-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface-2);
  aspect-ratio: 2/3;
  cursor: pointer;
  transition: all var(--trans-base);
  border: 1px solid var(--border);
}
.game-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0,0,0,0.7), 0 0 20px rgba(212,160,32,0.2);
  border-color: rgba(212,160,32,0.4);
  z-index: 1;
}
.game-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--trans-slow);
}
.game-card:hover img { transform: scale(1.06); }

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,21,5,0.97) 0%, rgba(7,21,5,0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-sm);
  opacity: 0;
  transition: opacity var(--trans-base);
}
.game-card:hover .game-card-overlay { opacity: 1; }

.game-card-name {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.game-card-provider {
  font-size: 0.6875rem;
  color: var(--gold);
  margin-top: 2px;
}
.game-card-rtp {
  font-size: 0.6875rem;
  color: var(--green);
}

/* Badges */
.game-badge {
  position: absolute;
  top: 8px; left: 8px;
  background: rgba(212,160,32,0.92);
  color: #0A1F08;
  font-size: 0.6rem;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.game-badge.hot  { background: rgba(239,68,68,0.9);   color: #fff; }
.game-badge.new  { background: rgba(74,222,128,0.9);  color: #071505; }
.game-badge.live { background: rgba(59,130,246,0.9);  color: #fff; }

.games-cta-row { text-align: center; margin-top: var(--space-2xl); }

/* ============================================================
   VERTICALS (Casino / Live / Sport)
   ============================================================ */

.verticals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.vertical-card {
  position: relative;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-xl);
  text-decoration: none;
  transition: all var(--trans-base);
  overflow: hidden;
  display: block;
}
.vertical-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,160,32,0.05), transparent);
  opacity: 0;
  transition: opacity var(--trans-base);
}
.vertical-card:hover {
  border-color: rgba(212,160,32,0.5);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(212,160,32,0.1);
}
.vertical-card:hover::after { opacity: 1; }

.vertical-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: var(--space-md);
}
.vertical-card h3 {
  font-size: 1.25rem;
  color: var(--gold-3);
  margin-bottom: var(--space-sm);
}
.vertical-card p {
  font-size: 0.9375rem;
  color: var(--text-2);
  margin-bottom: var(--space-lg);
}

/* ============================================================
   BONUS CARDS
   ============================================================ */

.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.bonus-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: all var(--trans-base);
  position: relative;
  overflow: hidden;
}
.bonus-card.featured {
  border-color: rgba(212,160,32,0.5);
  background: linear-gradient(135deg, #142D0F 0%, #0F2409 100%);
  box-shadow: 0 0 30px rgba(212,160,32,0.12);
}
.bonus-card.featured::before {
  content: '⭐ RECOMMENDED';
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: var(--text-on-gold);
  font-size: 0.6rem;
  font-weight: 900;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.08em;
}
.bonus-card:hover {
  border-color: rgba(212,160,32,0.35);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md), var(--shadow-gold);
}

.bonus-type {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}
.bonus-amount {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--gold-3);
  margin-bottom: var(--space-sm);
  line-height: 1;
}
.bonus-desc {
  font-size: 0.9375rem;
  color: var(--text-2);
  margin-bottom: var(--space-lg);
}
.bonus-conditions {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-xl);
}
.bonus-conditions li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 6px;
}
.bonus-conditions li::before { content: '•'; color: var(--gold); font-weight: 900; }

/* ============================================================
   PAYMENT METHODS GRID
   ============================================================ */

.payments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}
.payment-icon {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px var(--space-md);
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--trans-fast);
}
.payment-icon:hover {
  border-color: rgba(212,160,32,0.4);
  background: rgba(212,160,32,0.05);
  color: var(--text);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.payment-icon .pay-emoji {
  font-size: 1.25rem;
}

/* ============================================================
   SEO CONTENT SECTION
   ============================================================ */

.seo-content {
  max-width: 860px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.75;
}
.seo-content h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-md);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border);
  color: var(--text);
}
.seo-content h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.seo-content h3 {
  font-size: 1.125rem;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  color: var(--gold-3);
}
.seo-content p { color: var(--text-2); }
.seo-content ul li { color: var(--text-2); }
.seo-content a { color: var(--gold); }
.seo-content a:hover { color: var(--gold-3); }

/* Highlight box */
.highlight-box {
  background: rgba(212,160,32,0.08);
  border: 1px solid rgba(212,160,32,0.25);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-lg);
  margin: var(--space-xl) 0;
  color: var(--text-2);
  font-size: 0.9375rem;
}
.highlight-box strong { color: var(--gold-3); }

/* Info box */
.info-box {
  background: rgba(74,222,128,0.06);
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin: var(--space-xl) 0;
}
.info-box h4 { color: var(--green); margin-bottom: var(--space-sm); }
.info-box p { color: var(--text-2); margin: 0; font-size: 0.9375rem; }

/* Calculator / comparison box */
.calc-box {
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin: var(--space-xl) 0;
}
.calc-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: var(--space-md);
  font-size: 1rem;
}
.calc-row {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--text-2);
  font-size: 0.9375rem;
}
.calc-row.total {
  border-bottom: none;
  color: var(--gold-3);
  font-weight: 600;
  padding-top: var(--space-md);
}

/* Bonus comparison table */
.bonus-table-wrap {
  overflow-x: auto;
  margin: var(--space-xl) 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.bonus-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
.bonus-table thead {
  background: var(--surface-2);
}
.bonus-table th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  color: var(--gold-3);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border-light);
}
.bonus-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--text-2);
}
.bonus-table tr:last-child td { border-bottom: none; }
.bonus-table tr:hover td { background: rgba(212,160,32,0.04); }
.bonus-table .highlight-cell { color: var(--gold-3); font-weight: 600; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--trans-fast);
}
.faq-item.open { border-color: rgba(212,160,32,0.4); }

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-lg) var(--space-xl);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  font-family: var(--font-main);
  transition: color var(--trans-fast);
  line-height: 1.4;
}
.faq-question:hover { color: var(--gold-3); }
.faq-item.open .faq-question { color: var(--gold); }

.faq-icon {
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--trans-base);
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  padding: 0 var(--space-xl) var(--space-lg);
  color: var(--text-2);
  font-size: 0.9375rem;
  line-height: 1.7;
  display: none;
}
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   RESPONSIBLE GAMING NOTICE
   ============================================================ */

.rg-notice {
  background: rgba(212,160,32,0.06);
  border: 1px solid rgba(212,160,32,0.2);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: var(--space-2xl);
}
.rg-notice span:first-child { flex-shrink: 0; font-size: 1rem; }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: #050F04;
  border-top: 1px solid rgba(212,160,32,0.15);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
}

.footer-langs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--space-lg);
}
.footer-langs a {
  font-size: 1.4rem;
  text-decoration: none;
  transition: transform var(--trans-fast), opacity var(--trans-fast);
  opacity: 0.7;
}
.footer-langs a:hover { transform: scale(1.3); opacity: 1; }

.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: color var(--trans-fast);
}
.footer-col ul li a:hover { color: var(--gold-3); }

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: var(--space-xl);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}
.footer-legal {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 700px;
}
.footer-legal a { color: var(--text-muted); text-decoration: underline; }
.footer-legal a:hover { color: var(--gold); }

.footer-badges {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}
.footer-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-badge.age {
  background: rgba(239,68,68,0.12);
  border-color: rgba(239,68,68,0.3);
  color: #ef4444;
}

/* ============================================================
   STICKY CTA BAR
   ============================================================ */

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: linear-gradient(135deg, #071505 0%, #0D2410 100%);
  border-top: 1px solid rgba(212,160,32,0.3);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.6);
  transform: translateY(100%);
  transition: transform var(--trans-slow);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-xl);
  max-width: var(--container);
  margin: 0 auto;
}
.sticky-cta-text {
  font-size: 0.875rem;
  color: var(--text-2);
}
.sticky-cta-text strong { color: var(--gold); display: block; }

/* ============================================================
   ANIMATIONS (Fade In)
   ============================================================ */

.anim-fadeInUp {
  animation: fadeInUp 0.8s ease forwards;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0);    }
}

.anim-hidden {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — MOBILE FIRST
   ============================================================ */

@media (max-width: 1024px) {
  .site-nav { display: none; }
  .hamburger { display: flex; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: 100%; }
}

@media (max-width: 768px) {
  :root {
    --space-4xl: 3rem;
    --space-3xl: 2.5rem;
    --header-h:  60px;
  }

  .site-header { position: fixed; width: 100%; top: 0; }
  body { padding-top: var(--header-h); padding-bottom: 80px; }
  
  .hero { min-height: auto; padding: calc(var(--space-3xl) + 20px) 0; text-align: center; }
  .hero-content { margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
  .hero h1 { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero-visual { display: none; }
  .hero-cta-group { justify-content: center; }
  .hero-trust { justify-content: center; margin-top: var(--space-md); }

  .advantages-grid { grid-template-columns: 1fr; }
  .verticals-grid  { grid-template-columns: 1fr; }

  .bonus-cards { grid-template-columns: 1fr; }

  .games-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr; }

  .sticky-cta-inner { flex-direction: row !important; align-items: center; justify-content: space-between; padding: 10px 14px !important; gap: 8px; }
  .sticky-cta-text { font-size: 0 !important; line-height: 1; margin: 0; }
  .sticky-cta-text strong { font-size: 0.85rem !important; display: block; }
  .sticky-cta .btn { padding: 8px 16px !important; font-size: 0.8125rem !important; flex-shrink: 0; width: auto !important; }

  .footer-bottom { flex-direction: column; text-align: center; }
  
  .header-actions .btn { display: none; } /* Hide play now button on small screens to prevent overlap */
}

@media (max-width: 480px) {
  .container { padding: 0 var(--space-md); }
  .btn-xl { font-size: 1rem; padding: 14px 28px; width: 100%; }
  .hero-cta-group { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-cta-group .btn { text-align: center; }
  .hero-perks { flex-direction: column; gap: var(--space-xs); text-align: left; align-items: flex-start; }
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-sm); }
  
  .trust-strip-inner { flex-direction: column; gap: var(--space-md); text-align: center; }
  .trust-badge { display: flex; flex-direction: column; align-items: center; gap: 4px; }
  .trust-sep { display: none; }
  .trust-big { font-size: 2rem; margin-bottom: 4px; }
  .trust-badge div { display: flex; flex-direction: column; align-items: center; font-size: 0.85rem; color: var(--text-muted); }
  .trust-badge div strong { color: var(--gold); font-size: 1rem; }
}

/* ============================================================
   UTILITIES
   ============================================================ */

.text-gold  { color: var(--gold); }
.text-gold3 { color: var(--gold-3); }
.text-green { color: var(--green); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

.mt-sm  { margin-top: var(--space-sm); }
.mt-md  { margin-top: var(--space-md); }
.mt-lg  { margin-top: var(--space-lg); }
.mt-xl  { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

.mb-0   { margin-bottom: 0 !important; }

.hidden { display: none !important; }
.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;
}
