/*
 * ╔══════════════════════════════════════════════════════════════╗
 * ║  Yep Casino GR – Main Stylesheet                            ║
 * ║  Domain  : yepcasinoonline.gr                                ║
 * ║  Theme   : Dark luxury casino with gold & purple accents     ║
 * ║  Approach: Mobile-first with progressive enhancement         ║
 * ╚══════════════════════════════════════════════════════════════╝
 *
 * TABLE OF CONTENTS
 * ─────────────────
 *  1. CSS Custom Properties (design tokens)
 *  2. Reset & Base Styles
 *  3. Utility Classes
 *  4. Typography Scale
 *  5. Layout – Container
 *  6. Buttons
 *  7. Header & Navigation
 *  8. Hero / Banner Section
 *  9. Breadcrumbs
 * 10. Intro / H1 Section
 * 11. How-To Steps Section
 * 12. Gametime Code Section
 * 13. Codes Table Section (responsive table → cards on mobile)
 * 14. Games Grid Section
 * 15. Payments Marquee Section
 * 16. FAQ Accordion Section
 * 17. Footer
 * 18. Scroll-To-Top Button
 * 19. Animations & Keyframes
 * 20. Accessibility & Print Overrides
 */


/* ══════════════════════════════════════════════════════════════
   1. CSS CUSTOM PROPERTIES (design tokens)
   All colours, spacing, transitions in one place for easy theming
   ══════════════════════════════════════════════════════════════ */
:root {
  /* ── Colour Palette ── */
  --clr-bg-base:      #08080f;   /* page background – very dark navy */
  --clr-bg-surface:   #10101e;   /* card / section alternate background */
  --clr-bg-elevated:  #171728;   /* elevated cards, modals */
  --clr-border:       #252540;   /* subtle borders */

  --clr-gold:         #f0b429;   /* primary accent – casino gold */
  --clr-gold-light:   #ffd166;   /* lighter gold for gradients */
  --clr-gold-dark:    #c9880f;   /* darker gold for shadows */

  --clr-purple:       #7c3aed;   /* secondary accent */
  --clr-purple-light: #a78bfa;
  --clr-purple-dark:  #5b21b6;

  --clr-green:        #10b981;   /* success / no-deposit badge */
  --clr-blue:         #3b82f6;   /* info / deposit badge */
  --clr-red:          #ef4444;   /* warning */

  --clr-text-primary:   #f0f0f8; /* headings, main body copy */
  --clr-text-secondary: #a0a0c0; /* subdued labels, captions */
  --clr-text-muted:     #606080; /* placeholders, fine print */

  /* ── Gradients ── */
  --grad-gold:    linear-gradient(135deg, var(--clr-gold) 0%, var(--clr-gold-light) 100%);
  --grad-purple:  linear-gradient(135deg, var(--clr-purple-dark) 0%, var(--clr-purple) 100%);
  --grad-dark:    linear-gradient(180deg, var(--clr-bg-surface) 0%, var(--clr-bg-base) 100%);
  --grad-hero:    linear-gradient(135deg, #0a0a1a 0%, #1a0a2e 50%, #0a0f1a 100%);
  --grad-gametime:linear-gradient(135deg, #12003a 0%, #1a0040 50%, #0a001a 100%);

  /* ── Typography ── */
  --font-base: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-size-xs:   0.75rem;   /* 12px */
  --font-size-sm:   0.875rem;  /* 14px */
  --font-size-base: 1rem;      /* 16px */
  --font-size-md:   1.125rem;  /* 18px */
  --font-size-lg:   1.25rem;   /* 20px */
  --font-size-xl:   1.5rem;    /* 24px */
  --font-size-2xl:  1.875rem;  /* 30px */
  --font-size-3xl:  2.25rem;   /* 36px */
  --font-size-4xl:  3rem;      /* 48px */

  /* ── Spacing ── */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;

  /* ── Border radius ── */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  20px;
  --radius-full: 9999px;

  /* ── Shadows ── */
  --shadow-sm:   0 1px 3px rgba(0,0,0,.4);
  --shadow-md:   0 4px 16px rgba(0,0,0,.5);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.7);
  --shadow-gold: 0 0 24px rgba(240,180,41,.35);
  --shadow-purple: 0 0 24px rgba(124,58,237,.35);

  /* ── Transitions ── */
  --transition-fast:   150ms ease;
  --transition-base:   250ms ease;
  --transition-slow:   400ms ease;

  /* ── Layout ── */
  --container-max: 1200px;
  --header-h: 70px;
}


/* ══════════════════════════════════════════════════════════════
   2. RESET & BASE STYLES
   Eric Meyer inspired + modern additions
   ══════════════════════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  /* Smooth scroll for internal anchor links */
  scroll-behavior: smooth;
  /* Offset scroll targets by header height */
  scroll-padding-top: calc(var(--header-h) + var(--space-4));
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-base);
  font-size: var(--font-size-base);
  line-height: 1.7;
  color: var(--clr-text-primary);
  background-color: var(--clr-bg-base);
  /* Subtle animated background gradient for depth */
  background-image: radial-gradient(ellipse at 20% 20%, rgba(124,58,237,.08) 0%, transparent 60%),
                    radial-gradient(ellipse at 80% 80%, rgba(240,180,41,.06) 0%, transparent 60%);
  overflow-x: hidden;
}

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

a {
  color: var(--clr-gold);
  text-decoration: none;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

a:hover,
a:focus-visible {
  color: var(--clr-gold-light);
  text-decoration: underline;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Remove default list markers from role=list elements
   (helps when browsers add bullets back for accessibility) */
[role="list"] {
  list-style: none;
  padding: 0;
}


/* ══════════════════════════════════════════════════════════════
   3. UTILITY CLASSES
   ══════════════════════════════════════════════════════════════ */

/* Screen-reader-only: visually hidden but accessible */
.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;
}

/* Gold gradient text effect */
.gold-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Highlighted inline text */
.highlight-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section horizontal divider */
.section {
  padding: var(--space-16) 0;
}

/* Alternate background for visual rhythm */
.section:nth-of-type(odd) {
  background-color: var(--clr-bg-surface);
}


/* ══════════════════════════════════════════════════════════════
   4. TYPOGRAPHY SCALE
   ══════════════════════════════════════════════════════════════ */

/* Page H1 – the main hero heading */
.page-h1 {
  font-size: clamp(var(--font-size-2xl), 4vw, var(--font-size-4xl));
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-6);
  color: var(--clr-text-primary);
}

/* Section h2 headings */
.section-title {
  font-size: clamp(var(--font-size-xl), 3vw, var(--font-size-3xl));
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  margin-bottom: var(--space-4);
  color: var(--clr-text-primary);
}

/* Light variant – for dark-background sections */
.section-title.light {
  color: #fff;
}

/* Section subtitle – descriptive line below h2 */
.section-subtitle {
  font-size: var(--font-size-md);
  color: var(--clr-text-secondary);
  text-align: center;
  margin-bottom: var(--space-10);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle.light {
  color: rgba(255,255,255,.7);
}

/* Lead paragraph */
.lead-text {
  font-size: var(--font-size-md);
  color: var(--clr-text-primary);
  line-height: 1.8;
  margin-bottom: var(--space-5);
}


/* ══════════════════════════════════════════════════════════════
   5. LAYOUT – CONTAINER
   Centred max-width wrapper with responsive horizontal padding
   ══════════════════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-8);
  }
}

@media (min-width: 1200px) {
  .container {
    padding: 0 var(--space-10);
  }
}


/* ══════════════════════════════════════════════════════════════
   6. BUTTONS
   Reusable button system with multiple variants and sizes
   ══════════════════════════════════════════════════════════════ */

/* ── Base button styles ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  font-size: var(--font-size-base);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all var(--transition-base);
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  border: 2px solid transparent;
  line-height: 1.4;
}

.btn:focus-visible {
  outline: 3px solid var(--clr-gold);
  outline-offset: 3px;
}

/* ── Primary – gold gradient ── */
.btn-primary {
  background: var(--grad-gold);
  color: #0a0a0f;
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, var(--clr-gold-light) 0%, var(--clr-gold) 100%);
  box-shadow: 0 0 36px rgba(240,180,41,.55);
  transform: translateY(-2px);
  color: #0a0a0f;
  text-decoration: none;
}

/* ── Secondary – purple ── */
.btn-secondary {
  background: var(--grad-purple);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-purple);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--clr-purple) 0%, var(--clr-purple-light) 100%);
  box-shadow: 0 0 36px rgba(124,58,237,.55);
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}

/* ── Ghost – transparent with gold border ── */
.btn-ghost {
  background: rgba(240,180,41,.12);
  color: var(--clr-gold-light);
  border-color: rgba(240,180,41,.5);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  background: rgba(240,180,41,.22);
  border-color: var(--clr-gold);
  color: var(--clr-gold-light);
  transform: translateY(-2px);
  text-decoration: none;
}

/* ── Outline – transparent with border ── */
.btn-outline {
  background: transparent;
  color: var(--clr-gold);
  border-color: var(--clr-gold);
}

.btn-outline:hover {
  background: rgba(240,180,41,.12);
  color: var(--clr-gold-light);
  border-color: var(--clr-gold-light);
  transform: translateY(-2px);
  text-decoration: none;
}

/* ── Size modifiers ── */
.btn-sm {
  padding: var(--space-1) var(--space-4);
  font-size: var(--font-size-sm);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--font-size-md);
}

.btn-xl {
  padding: var(--space-5) var(--space-10);
  font-size: var(--font-size-lg);
}

.btn-hero {
  padding: var(--space-4) var(--space-8);
  font-size: clamp(var(--font-size-base), 2vw, var(--font-size-lg));
}

/* ── Pulse animation for main CTA ── */
.pulse-btn {
  animation: pulse-glow 2.5s ease-in-out infinite;
}

/* ── Badges ── */
.badge {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.badge-green  { background: rgba(16,185,129,.2); color: #34d399; border: 1px solid rgba(16,185,129,.4); }
.badge-blue   { background: rgba(59,130,246,.2); color: #60a5fa; border: 1px solid rgba(59,130,246,.4); }
.badge-purple { background: rgba(124,58,237,.2); color: var(--clr-purple-light); border: 1px solid rgba(124,58,237,.4); }
.badge-gold   { background: rgba(240,180,41,.2); color: var(--clr-gold); border: 1px solid rgba(240,180,41,.4); }


/* ══════════════════════════════════════════════════════════════
   7. HEADER & NAVIGATION
   Sticky header with blur backdrop, logo, nav, mobile hamburger
   ══════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(8,8,15,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--clr-border);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

/* Header becomes more opaque when user scrolls (class added by JS) */
.site-header.scrolled {
  background: rgba(8,8,15,.98);
  box-shadow: 0 2px 20px rgba(0,0,0,.6);
}

/* ── Header inner flex layout ── */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--space-4);
}

/* ── Logo ── */
.logo-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 44px;
  width: auto;
  display: block;
  transition: opacity var(--transition-fast);
}

.logo-link:hover .logo-img {
  opacity: .85;
}

/* ── Desktop navigation ── */
.main-nav {
  display: none; /* hidden on mobile; shown ≥ 900 px */
}

.nav-list {
  display: flex;
  gap: var(--space-2);
}

.nav-link {
  display: block;
  padding: var(--space-2) var(--space-3);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--clr-text-secondary);
  border-radius: var(--radius-md);
  transition: color var(--transition-fast), background var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--clr-gold);
  background: rgba(240,180,41,.08);
  text-decoration: none;
}

/* ── Header CTA button (desktop) ── */
.header-cta {
  display: none; /* hidden on mobile */
}

/* ── Hamburger toggle button ── */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: var(--space-2);
  border-radius: var(--radius-md);
  background: transparent;
  transition: background var(--transition-fast);
  flex-shrink: 0;
}

.menu-toggle:hover {
  background: rgba(240,180,41,.1);
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--clr-text-primary);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-fast);
  transform-origin: center;
}

/* Animate hamburger → X when active */
.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile navigation panel ── */
.mobile-nav {
  display: block;
  overflow: hidden;
  max-height: 0;
  background: rgba(8,8,15,.98);
  border-bottom: 1px solid var(--clr-border);
  transition: max-height var(--transition-slow);
}

.mobile-nav.is-open {
  max-height: 420px; /* enough for all items */
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  padding: var(--space-4) var(--space-5) var(--space-6);
  gap: var(--space-2);
}

.mobile-nav-link {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--clr-text-secondary);
  border-radius: var(--radius-md);
  border-left: 3px solid transparent;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.mobile-nav-link:hover {
  color: var(--clr-gold);
  background: rgba(240,180,41,.08);
  border-left-color: var(--clr-gold);
  text-decoration: none;
}

.mobile-cta {
  margin-top: var(--space-2);
  text-align: center;
  width: 100%;
}

/* ── Desktop breakpoint: show nav, hide hamburger ── */
@media (min-width: 900px) {
  .main-nav     { display: flex; align-items: center; }
  .header-cta   { display: inline-flex; }
  .menu-toggle  { display: none; }
  .mobile-nav   { display: none !important; }
}


/* ══════════════════════════════════════════════════════════════
   8. HERO / BANNER SECTION
   Full-width banner with absolutely positioned semi-transparent CTA
   ══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* Minimum height so CTA is always readable even if image is slow */
  min-height: 300px;
  background: var(--grad-hero);
  display: flex;
  align-items: stretch;
}

/* Banner image fills the hero area */
.hero-picture {
  display: block;
  width: 100%;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  /* Max heights keep the hero proportional on very wide screens */
  max-height: 600px;
}

@media (max-width: 767px) {
  .hero-bg {
    max-height: 480px;
    object-position: center top;
  }
}

/* ── Semi-transparent CTA overlay ──
   Absolutely positioned over the banner, centred horizontally and
   vertically on both mobile and desktop
   ── */
.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-5);
}

/* The frosted-glass card containing the CTA */
.hero-cta-block {
  background: rgba(8, 8, 20, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(240,180,41,.25);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-6), 4vw, var(--space-12)) clamp(var(--space-5), 5vw, var(--space-16));
  text-align: center;
  max-width: 640px;
  width: 100%;
  box-shadow: 0 8px 48px rgba(0,0,0,.7), 0 0 60px rgba(240,180,41,.1);
  animation: fade-in-up .6s ease both;
}

/* Eyebrow badge above the title */
.hero-badge {
  display: inline-block;
  background: rgba(240,180,41,.15);
  border: 1px solid rgba(240,180,41,.4);
  color: var(--clr-gold);
  font-size: var(--font-size-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  padding: var(--space-1) var(--space-4);
  margin-bottom: var(--space-4);
}

.hero-title {
  font-size: clamp(var(--font-size-xl), 5vw, var(--font-size-4xl));
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: var(--space-3);
}

/* The big money amount highlighted in gold */
.hero-amount {
  display: block;
  font-size: clamp(var(--font-size-3xl), 8vw, 5rem);
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  letter-spacing: -0.03em;
  animation: shimmer 3s linear infinite;
  background-size: 200% auto;
}

.hero-subtitle {
  font-size: clamp(var(--font-size-sm), 2vw, var(--font-size-md));
  color: rgba(255,255,255,.85);
  margin-bottom: var(--space-6);
  line-height: 1.5;
}

/* Inline promo code text */
.code-inline {
  background: rgba(240,180,41,.15);
  border: 1px solid rgba(240,180,41,.5);
  color: var(--clr-gold);
  padding: 2px var(--space-2);
  border-radius: var(--radius-sm);
  font-family: monospace;
  letter-spacing: 0.08em;
}

/* CTA buttons row */
.hero-buttons {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-4);
}

.hero-disclaimer {
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,.45);
}


/* ══════════════════════════════════════════════════════════════
   9. BREADCRUMBS
   ══════════════════════════════════════════════════════════════ */
.breadcrumbs {
  background: var(--clr-bg-surface);
  border-bottom: 1px solid var(--clr-border);
  padding: var(--space-3) 0;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.breadcrumb-link {
  color: var(--clr-text-secondary);
  font-size: var(--font-size-sm);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumb-link:hover {
  color: var(--clr-gold);
}

.breadcrumb-sep {
  color: var(--clr-text-muted);
  font-size: var(--font-size-sm);
}

.breadcrumb-current {
  color: var(--clr-gold);
  font-size: var(--font-size-sm);
  font-weight: 600;
}


/* ══════════════════════════════════════════════════════════════
   10. INTRO / H1 SECTION
   ══════════════════════════════════════════════════════════════ */
.intro-section {
  padding: var(--space-16) 0;
}

/* Intro body text column */
.intro-body {
  max-width: 800px;
  margin-bottom: var(--space-8);
}

.intro-body p {
  color: var(--clr-text-secondary);
  margin-bottom: var(--space-4);
  line-height: 1.8;
}

/* CTA row – flex, wraps on small screens */
.cta-row {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}


/* ══════════════════════════════════════════════════════════════
   11. HOW-TO STEPS SECTION
   Numbered step list with visual connecting line on desktop
   ══════════════════════════════════════════════════════════════ */
.how-to-section {
  background: var(--clr-bg-surface);
}

.steps-list {
  display: grid;
  gap: var(--space-5);
  margin-bottom: var(--space-8);
}

/* Each step: horizontal flex with number badge + content */
.step-item {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
  background: var(--clr-bg-elevated);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  transition: border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
  counter-increment: none; /* handled by explicit DOM number */
}

.step-item:hover {
  border-color: rgba(240,180,41,.35);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md), 0 0 20px rgba(240,180,41,.08);
}

/* Circular step number badge */
.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: #0a0a0f;
  font-size: var(--font-size-lg);
  font-weight: 900;
  box-shadow: 0 0 16px rgba(240,180,41,.4);
}

.step-body h3.step-title {
  font-size: var(--font-size-md);
  font-weight: 700;
  color: var(--clr-text-primary);
  margin-bottom: var(--space-2);
}

.step-body p {
  font-size: var(--font-size-sm);
  color: var(--clr-text-secondary);
  line-height: 1.7;
}

/* ── Alert / warning box ── */
.alert {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-5) var(--space-6);
  border-radius: var(--radius-lg);
  font-size: var(--font-size-sm);
  line-height: 1.7;
}

.alert-warning {
  background: rgba(240,180,41,.1);
  border: 1px solid rgba(240,180,41,.35);
  color: var(--clr-text-primary);
}

.alert-icon {
  font-size: var(--font-size-xl);
  flex-shrink: 0;
  margin-top: 2px;
}

.alert-body strong { color: var(--clr-gold); }
.alert-body em     { font-style: italic; color: var(--clr-gold-light); }

/* On wider screens use two column step grid */
@media (min-width: 768px) {
  .steps-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .steps-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}


/* ══════════════════════════════════════════════════════════════
   12. GAMETIME CODE SECTION
   Dark gradient background, prominent code card
   ══════════════════════════════════════════════════════════════ */
.gametime-section {
  background: var(--grad-gametime);
  position: relative;
  overflow: hidden;
}

/* Decorative floating particles */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particles span {
  position: absolute;
  border-radius: 50%;
  background: rgba(240,180,41,.15);
  animation: float-particle linear infinite;
}

.particles span:nth-child(1)  { width: 6px;  height: 6px;  left: 10%; animation-duration: 8s;  animation-delay: 0s;   }
.particles span:nth-child(2)  { width: 10px; height: 10px; left: 25%; animation-duration: 12s; animation-delay: 2s;   }
.particles span:nth-child(3)  { width: 4px;  height: 4px;  left: 40%; animation-duration: 9s;  animation-delay: 1s;   }
.particles span:nth-child(4)  { width: 8px;  height: 8px;  left: 55%; animation-duration: 14s; animation-delay: 3s;   }
.particles span:nth-child(5)  { width: 5px;  height: 5px;  left: 70%; animation-duration: 10s; animation-delay: 0.5s; }
.particles span:nth-child(6)  { width: 12px; height: 12px; left: 80%; animation-duration: 16s; animation-delay: 4s;   }
.particles span:nth-child(7)  { width: 7px;  height: 7px;  left: 90%; animation-duration: 11s; animation-delay: 1.5s; }
.particles span:nth-child(8)  { width: 9px;  height: 9px;  left: 60%; animation-duration: 13s; animation-delay: 2.5s; }

/* ── Main gametime card ── */
.gametime-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(240,180,41,.2);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-6), 4vw, var(--space-12));
  display: grid;
  gap: var(--space-8);
  box-shadow: 0 0 60px rgba(240,180,41,.08), var(--shadow-lg);
}

@media (min-width: 768px) {
  .gametime-card {
    grid-template-columns: 1fr 1.5fr;
    align-items: start;
  }
}

/* ── Code display area ── */
.gametime-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}

.code-display-area {
  width: 100%;
  text-align: center;
}

.code-label-text {
  display: block;
  font-size: var(--font-size-sm);
  color: var(--clr-text-secondary);
  margin-bottom: var(--space-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* The box showing the code + copy button */
.code-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  background: rgba(240,180,41,.08);
  border: 2px dashed rgba(240,180,41,.5);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-6);
}

.code-value {
  font-family: 'Courier New', monospace;
  font-size: clamp(var(--font-size-xl), 4vw, var(--font-size-3xl));
  font-weight: 900;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.12em;
}

.copy-btn {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  background: rgba(240,180,41,.15);
  border: 1px solid rgba(240,180,41,.4);
  color: var(--clr-gold);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  font-size: var(--font-size-xs);
  font-weight: 700;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.copy-btn:hover {
  background: rgba(240,180,41,.3);
  color: var(--clr-gold-light);
}

.copy-btn.copied {
  background: rgba(16,185,129,.2);
  border-color: rgba(16,185,129,.5);
  color: #34d399;
}

/* ── Bonus amount badge ── */
.bonus-badge {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-8);
  background: linear-gradient(135deg, rgba(240,180,41,.15), rgba(240,180,41,.05));
  border: 1px solid rgba(240,180,41,.3);
  border-radius: var(--radius-xl);
  box-shadow: 0 0 30px rgba(240,180,41,.15);
}

.bonus-euro {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.bonus-label-text {
  font-size: var(--font-size-md);
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Terms definition list ── */
.terms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.term-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
}

.term-label {
  font-size: var(--font-size-xs);
  color: var(--clr-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.term-value {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--clr-text-primary);
}

/* Highlighted value in green */
.term-highlight {
  color: var(--clr-green);
}

.gametime-cta-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: var(--space-4);
}

.gametime-note {
  font-size: var(--font-size-sm);
  color: var(--clr-text-secondary);
  text-align: center;
  padding: var(--space-3) var(--space-4);
  background: rgba(16,185,129,.08);
  border: 1px solid rgba(16,185,129,.2);
  border-radius: var(--radius-md);
  line-height: 1.5;
}


/* ══════════════════════════════════════════════════════════════
   13. CODES TABLE SECTION
   Responsive table: standard table on desktop,
   stacked card layout on mobile using data-label + ::before
   ══════════════════════════════════════════════════════════════ */
.codes-section {
  background: var(--clr-bg-base);
}

/* Horizontal scroll wrapper – accessible via keyboard tabindex */
.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  margin-bottom: var(--space-10);
}

/* Give focus-ring to the wrapper so keyboard users know it scrolls */
.table-wrapper:focus-visible {
  outline: 2px solid var(--clr-gold);
  outline-offset: 2px;
}

.codes-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--font-size-sm);
  min-width: 600px; /* prevents table from squishing on small screens */
}

/* Table head */
.codes-table thead {
  background: rgba(240,180,41,.1);
}

.codes-table thead th {
  padding: var(--space-4) var(--space-5);
  text-align: left;
  font-weight: 700;
  color: var(--clr-gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: var(--font-size-xs);
  white-space: nowrap;
  border-bottom: 1px solid rgba(240,180,41,.25);
}

/* Table body rows */
.codes-table tbody tr {
  border-bottom: 1px solid var(--clr-border);
  transition: background var(--transition-fast);
}

.codes-table tbody tr:last-child {
  border-bottom: none;
}

.codes-table tbody tr:hover {
  background: rgba(240,180,41,.04);
}

.codes-table tbody td {
  padding: var(--space-4) var(--space-5);
  vertical-align: middle;
  color: var(--clr-text-secondary);
  line-height: 1.5;
}

/*
 * ── MOBILE TABLE → CARD LAYOUT ──
 * On small screens (< 640 px) we hide the <thead> and
 * use the data-label attribute with ::before pseudo-element
 * to show each cell's column name as a label above its value.
 * This transforms each <tr> into a visual card.
 */
@media (max-width: 639px) {
  /* Remove horizontal scroll – cards are vertical */
  .table-wrapper {
    border: none;
    overflow: visible;
    background: transparent;
  }

  .codes-table {
    min-width: unset; /* remove min-width */
    display: block;
  }

  /* Hide table header – labels come from data-label */
  .codes-table thead {
    display: none;
  }

  .codes-table tbody,
  .codes-table tr {
    display: block;
  }

  /* Each row becomes a card */
  .codes-table tbody tr {
    background: var(--clr-bg-elevated);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    margin-bottom: var(--space-4);
    box-shadow: var(--shadow-sm);
  }

  .codes-table tbody tr:hover {
    border-color: rgba(240,180,41,.3);
  }

  /* Each cell: stack label + value */
  .codes-table td {
    display: block;
    padding: var(--space-2) 0;
    border: none;
    font-size: var(--font-size-sm);
  }

  /* Show column label via ::before pseudo-element */
  .codes-table td[data-label]::before {
    content: attr(data-label) ": ";
    display: block;
    font-size: var(--font-size-xs);
    font-weight: 700;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: var(--space-1);
  }
}

/* ── Info cards below the table ── */
.info-grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .info-grid { grid-template-columns: repeat(3, 1fr); }
}

.info-card {
  background: var(--clr-bg-elevated);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: border-color var(--transition-base), transform var(--transition-base);
}

.info-card:hover {
  border-color: rgba(124,58,237,.4);
  transform: translateY(-2px);
}

.info-card-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: var(--space-3);
}

.info-card-title {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--clr-text-primary);
  margin-bottom: var(--space-2);
}

.info-card p {
  font-size: var(--font-size-sm);
  color: var(--clr-text-secondary);
  line-height: 1.7;
}


/* ══════════════════════════════════════════════════════════════
   14. GAMES GRID SECTION
   CSS Grid: 2 cols mobile → 4 cols tablet → 6 cols desktop
   ══════════════════════════════════════════════════════════════ */
.games-section {
  background: var(--clr-bg-surface);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

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

@media (min-width: 900px) {
  .games-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1100px) {
  .games-grid { grid-template-columns: repeat(6, 1fr); }
}

/* ── Individual game card ── */
.game-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--clr-bg-elevated);
  border: 1px solid var(--clr-border);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.game-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-lg), 0 0 24px rgba(124,58,237,.25);
  border-color: rgba(124,58,237,.5);
}

.game-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Image wrapper with fixed aspect ratio */
.game-img-wrap {
  position: relative;
  aspect-ratio: 5 / 7; /* portrait slot ratio */
  overflow: hidden;
}

.game-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.game-card:hover .game-img {
  transform: scale(1.07);
}

/* Hover overlay with play button */
.game-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,20,.65);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.game-card:hover .game-hover-overlay {
  opacity: 1;
}

.play-icon {
  background: var(--grad-gold);
  color: #0a0a0f;
  font-weight: 900;
  font-size: var(--font-size-sm);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  transform: scale(.8);
  transition: transform var(--transition-base);
}

.game-card:hover .play-icon {
  transform: scale(1);
}

.game-name {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--clr-text-secondary);
  padding: var(--space-3) var(--space-3);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Centred CTA wrap below games grid */
.section-cta-wrap {
  text-align: center;
}


/* ══════════════════════════════════════════════════════════════
   15. PAYMENTS MARQUEE SECTION
   CSS-only infinite horizontal scroll animation
   ══════════════════════════════════════════════════════════════ */
.payments-section {
  background: var(--clr-bg-base);
  overflow: hidden;
  padding: var(--space-12) 0;
}

/* Viewport: clips overflow and creates fade-out on edges */
.marquee-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
  /* Gradient mask fades logos at edges for polish */
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

/* The scrolling track – 2× width for seamless loop */
.marquee-track {
  display: flex;
  gap: var(--space-8);
  align-items: center;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}

/* Pause on hover for usability */
.marquee-viewport:hover .marquee-track {
  animation-play-state: paused;
}

/* Individual payment logo pill */
.pay-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-bg-elevated);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-5);
  min-width: 96px;
  height: 52px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  flex-shrink: 0;
}

.pay-logo:hover {
  border-color: rgba(240,180,41,.35);
  box-shadow: 0 0 14px rgba(240,180,41,.15);
}

.pay-logo img {
  object-fit: contain;
  width: 60px;
  height: 28px;
  filter: brightness(.85) grayscale(.2);
  transition: filter var(--transition-fast);
}

.pay-logo:hover img {
  filter: brightness(1.1) grayscale(0);
}


/* ══════════════════════════════════════════════════════════════
   16. FAQ ACCORDION SECTION
   ══════════════════════════════════════════════════════════════ */
.faq-section {
  background: var(--clr-bg-surface);
}

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

/* FAQ item wrapper */
.faq-item {
  background: var(--clr-bg-elevated);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition-base);
}

.faq-item:has(.faq-btn[aria-expanded="true"]) {
  border-color: rgba(240,180,41,.35);
}

/* Question button */
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--clr-text-primary);
  background: transparent;
  text-align: left;
  transition: color var(--transition-fast), background var(--transition-fast);
}

.faq-btn:hover {
  color: var(--clr-gold);
  background: rgba(240,180,41,.04);
}

.faq-btn[aria-expanded="true"] {
  color: var(--clr-gold);
  border-bottom: 1px solid var(--clr-border);
}

.faq-question-text {
  flex: 1;
  line-height: 1.5;
}

/* Rotating chevron indicator */
.faq-chevron {
  font-size: var(--font-size-md);
  color: var(--clr-text-muted);
  transition: transform var(--transition-base), color var(--transition-fast);
  flex-shrink: 0;
}

.faq-btn[aria-expanded="true"] .faq-chevron {
  transform: rotate(90deg);
  color: var(--clr-gold);
}

/* Answer panel */
.faq-panel {
  padding: var(--space-5) var(--space-6);
  font-size: var(--font-size-sm);
  color: var(--clr-text-secondary);
  line-height: 1.8;
  animation: slide-down var(--transition-slow) ease;
}

.faq-panel p { margin-bottom: var(--space-3); }
.faq-panel p:last-child { margin-bottom: 0; }
.faq-panel strong { color: var(--clr-gold); }

/* Bottom CTA block below FAQ */
.faq-bottom-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

.faq-bottom-cta > p {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--clr-text-primary);
}


/* ══════════════════════════════════════════════════════════════
   17. FOOTER
   ══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--clr-bg-surface);
  border-top: 1px solid var(--clr-border);
  padding: var(--space-16) 0 var(--space-8);
}

/* 4-column grid on desktop, stacked on mobile */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}

.footer-logo { margin-bottom: var(--space-3); }

.footer-tagline {
  font-size: var(--font-size-sm);
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

/* Age badge */
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(239,68,68,.15);
  border: 2px solid rgba(239,68,68,.4);
  color: #f87171;
  font-size: var(--font-size-sm);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.footer-col-title {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--clr-text-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-4);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-links a {
  font-size: var(--font-size-sm);
  color: var(--clr-text-muted);
  transition: color var(--transition-fast);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--clr-gold);
}

.footer-responsible p {
  font-size: var(--font-size-sm);
  color: var(--clr-text-muted);
  margin-bottom: var(--space-3);
  line-height: 1.6;
}

.footer-ext-link {
  display: block;
  font-size: var(--font-size-sm);
  color: var(--clr-purple-light);
  margin-bottom: var(--space-2);
  text-decoration: underline;
}

.footer-ext-link:hover { color: var(--clr-gold-light); }

.footer-divider {
  border: none;
  border-top: 1px solid var(--clr-border);
  margin-bottom: var(--space-6);
}

.footer-bottom {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-disclaimer {
  font-size: var(--font-size-xs);
  color: var(--clr-text-muted);
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
}

.footer-disclaimer strong { color: var(--clr-red); }

.footer-copy {
  font-size: var(--font-size-xs);
  color: var(--clr-text-muted);
}


/* ══════════════════════════════════════════════════════════════
   18. SCROLL-TO-TOP BUTTON
   ══════════════════════════════════════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: var(--space-8);
  right: var(--space-6);
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: #0a0a0f;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  transition: opacity var(--transition-base), transform var(--transition-base);
  opacity: 0;
  pointer-events: none;
}

/* JS adds .is-visible when button is not [hidden] */
.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 28px rgba(240,180,41,.6);
}

.scroll-top:focus-visible {
  outline: 3px solid var(--clr-gold-light);
  outline-offset: 3px;
}


/* ══════════════════════════════════════════════════════════════
   19. ANIMATIONS & KEYFRAMES
   ══════════════════════════════════════════════════════════════ */

/* Smooth entry animation: element fades in and rises */
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Shimmer sweep across gold gradient text */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Pulsing gold glow on the main CTA button */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(240,180,41,.4), 0 0 40px rgba(240,180,41,.15);
  }
  50% {
    box-shadow: 0 0 30px rgba(240,180,41,.7), 0 0 60px rgba(240,180,41,.3);
  }
}

/* Floating particle rise */
@keyframes float-particle {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: .6; }
  90%  { opacity: .4; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* FAQ panel slide-down reveal */
@keyframes slide-down {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Payment marquee scroll – moves left by exactly 50% of track width */
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* JS-triggered scroll reveal for elements with .js-fade class */
.js-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.js-fade.in-view {
  opacity: 1;
  transform: translateY(0);
}


/* ══════════════════════════════════════════════════════════════
   20. ACCESSIBILITY & PRINT OVERRIDES
   ══════════════════════════════════════════════════════════════ */

/* ── Reduce motion: respect user preference ── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  html { scroll-behavior: auto; }

  .pulse-btn { animation: none; }
  .hero-amount { animation: none; }
  .marquee-track { animation: none; }
  .particles { display: none; }
}

/* ── High contrast mode adjustments ── */
@media (forced-colors: active) {
  .btn-primary,
  .btn-secondary {
    border: 2px solid ButtonText;
  }

  .gold-text,
  .highlight-text {
    -webkit-text-fill-color: unset;
    color: HighlightText;
  }
}

/* ── Print styles ── */
@media print {
  .site-header,
  .hero-overlay,
  .marquee-viewport,
  .scroll-top,
  .menu-toggle,
  .mobile-nav,
  .particles {
    display: none !important;
  }

  body {
    background: white;
    color: black;
    font-size: 12pt;
  }

  .container { max-width: 100%; padding: 0 1cm; }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 10pt;
    color: #555;
  }

  /* Don't show href for internal anchors */
  a[href^="#"]::after { content: none; }
}
