/* ================================================================
   YEP CASINO – Main Stylesheet
   Domain: casino.pkv-vergleich-rechner.de | Language: DE | Geo: Germany
   ================================================================
   TABLE OF CONTENTS:
   01. CSS Custom Properties (Design Tokens)
   02. Reset & Base
   03. Typography
   04. Utilities & Helpers
   05. Layout – Container & Grid
   06. Buttons
   07. Skip Link (Accessibility)
   08. Site Header
   09. Mobile Navigation
   10. Hero Banner
   11. Breadcrumbs
   12. Sections – Shared styles
   13. Section – Intro / Stats Cards
   14. Section – Casino Overview Table
   15. Section – Login Steps
   16. Section – Security Cards
   17. Section – Slots Grid
   18. Section – Mobile App
   19. Section – Payment Methods
   20. Section – Support / Contact
   21. Site Footer
   22. Scroll-to-top Button
   23. Animations & Keyframes
   24. Media Queries – Responsive Breakpoints
   ================================================================ */

/* ----------------------------------------------------------------
   01. CSS CUSTOM PROPERTIES (Design Tokens)
   Centralised colour palette and spacing for easy theming
   ---------------------------------------------------------------- */
:root {
  /* Colour palette */
  --clr-bg:          #07071a;        /* Deep dark background */
  --clr-bg-2:        #0f0f28;        /* Slightly lighter dark */
  --clr-card:        #12122e;        /* Card / surface background */
  --clr-card-hover:  #1a1a40;        /* Card hover state */
  --clr-border:      rgba(240, 180, 41, 0.18); /* Golden border tint */
  --clr-border-dim:  rgba(255,255,255,0.07);

  --clr-gold:        #f0b429;        /* Primary accent – gold */
  --clr-gold-light:  #ffd166;        /* Lighter gold for gradients */
  --clr-gold-dark:   #c4891a;        /* Darker gold for hover */
  --clr-orange:      #e85d04;        /* Secondary accent – orange */

  --clr-text:        #e8e8f0;        /* Primary text */
  --clr-text-muted:  #8c8caa;        /* Muted/secondary text */
  --clr-text-dim:    #5a5a7a;        /* Very dim text */
  --clr-white:       #ffffff;

  --clr-green:       #00c48c;        /* Success / positive badge */
  --clr-green-bg:    rgba(0, 196, 140, 0.12);

  /* Gradients */
  --grad-gold:       linear-gradient(135deg, #f0b429 0%, #e85d04 100%);
  --grad-card:       linear-gradient(145deg, #14143a 0%, #0a0a20 100%);
  --grad-glow:       radial-gradient(ellipse at center, rgba(240,180,41,0.15) 0%, transparent 70%);
  --grad-bg:         linear-gradient(180deg, #07071a 0%, #0d0d2b 50%, #07071a 100%);

  /* Typography */
  --font-heading:    'Montserrat', sans-serif;
  --font-body:       'Inter', sans-serif;

  /* Spacing scale */
  --space-xs:   4px;
  --space-sm:   8px;
  --space-md:   16px;
  --space-lg:   24px;
  --space-xl:   40px;
  --space-2xl:  64px;
  --space-3xl:  96px;

  /* Border radius */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.4);
  --shadow-md:   0 8px 24px rgba(0,0,0,0.5);
  --shadow-lg:   0 16px 48px rgba(0,0,0,0.6);
  --shadow-gold: 0 4px 20px rgba(240,180,41,0.3);
  --shadow-glow: 0 0 40px rgba(240,180,41,0.2);

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

  /* Container */
  --container-max: 1280px;
  --container-pad: clamp(16px, 4vw, 48px);

  /* Header height for sticky offset */
  --header-h: 72px;
}


/* ----------------------------------------------------------------
   02. RESET & BASE
   ---------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  /* Smooth scrolling for anchor links */
  scroll-behavior: smooth;
  /* Prevent layout shift from scrollbar appearing */
  overflow-x: hidden;
  /* Base font size */
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--clr-text);
  background-color: var(--clr-bg);
  background-image: var(--grad-bg);
  /* Fixed background for parallax depth feel */
  background-attachment: fixed;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Remove list styles on ul/ol with role="list" (accessibility technique) */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Inherit font for form elements */
input, button, textarea, select {
  font: inherit;
}

/* Remove default button appearance */
button {
  border: none;
  background: none;
  cursor: pointer;
}

/* Smooth image rendering */
img, svg {
  display: block;
  max-width: 100%;
}

/* Remove underline for links; add colour */
a {
  color: var(--clr-gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover {
  color: var(--clr-gold-light);
}
a:focus-visible {
  outline: 2px solid var(--clr-gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}


/* ----------------------------------------------------------------
   03. TYPOGRAPHY
   ---------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--clr-white);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem,  3vw, 2.25rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

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

strong { font-weight: 600; color: var(--clr-white); }


/* ----------------------------------------------------------------
   04. UTILITIES & HELPERS
   ---------------------------------------------------------------- */

/* Visually hidden but accessible to screen readers */
.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;
}

/* Badge component – inline pill labels */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.badge--gold {
  background: rgba(240, 180, 41, 0.15);
  color: var(--clr-gold);
  border: 1px solid rgba(240, 180, 41, 0.3);
}

.badge--green {
  background: var(--clr-green-bg);
  color: var(--clr-green);
  border: 1px solid rgba(0, 196, 140, 0.25);
}


/* ----------------------------------------------------------------
   05. LAYOUT – Container & Grid
   ---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}


/* ----------------------------------------------------------------
   06. BUTTONS
   All buttons share a base; modifiers control appearance
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition:
    background var(--transition-base),
    color var(--transition-base),
    box-shadow var(--transition-base),
    transform var(--transition-fast),
    border-color var(--transition-base);
  white-space: nowrap;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  overflow: hidden;
}

/* Ripple-like shine effect on hover */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.btn:hover::after {
  transform: translateX(100%);
}

.btn:active {
  transform: scale(0.97);
}

/* Gold (primary) button */
.btn--gold {
  background: var(--grad-gold);
  color: #000;
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
  background: linear-gradient(135deg, #ffd166 0%, #f0a020 100%);
  box-shadow: 0 6px 28px rgba(240,180,41,0.5);
  color: #000;
}

/* Outline button */
.btn--outline {
  background: transparent;
  color: var(--clr-gold);
  border-color: var(--clr-gold);
}
.btn--outline:hover {
  background: rgba(240, 180, 41, 0.1);
  box-shadow: var(--shadow-gold);
  color: var(--clr-gold-light);
}

/* Size modifiers */
.btn--lg {
  padding: 15px 36px;
  font-size: 1rem;
}
.btn--sm {
  padding: 8px 18px;
  font-size: 0.78rem;
}


/* ----------------------------------------------------------------
   07. SKIP LINK (Accessibility)
   Appears only on keyboard focus for screen-reader / keyboard users
   ---------------------------------------------------------------- */
.skip-link {
  position: fixed;
  top: -100%;
  left: var(--space-md);
  z-index: 9999;
  background: var(--clr-gold);
  color: #000;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.9rem;
  transition: top var(--transition-fast);
}
.skip-link:focus {
  top: var(--space-md);
  color: #000;
}


/* ----------------------------------------------------------------
   08. SITE HEADER
   Sticky top bar with logo, navigation, CTA
   ---------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  /* Glass morphism blur effect */
  background: rgba(7, 7, 26, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--clr-border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

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

/* Logo */
.header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.header__logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
  /* Subtle glow on logo */
  filter: drop-shadow(0 0 8px rgba(240,180,41,0.4));
}

/* Navigation list */
.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  list-style: none;
  flex-wrap: nowrap;
}
.nav__link {
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  letter-spacing: 0.04em;
  transition:
    color var(--transition-fast),
    background var(--transition-fast);
}
.nav__link:hover,
.nav__link:focus-visible {
  color: var(--clr-gold);
  background: rgba(240, 180, 41, 0.08);
}

/* Header CTA */
.header__cta {
  flex-shrink: 0;
}

/* Hamburger menu button (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(240,180,41,0.08);
  border-radius: var(--radius-sm);
  border: 1px solid var(--clr-border);
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition-fast);
}
.hamburger:hover { background: rgba(240,180,41,0.15); }
.hamburger__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-gold);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

/* Animated state when menu is open */
.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ----------------------------------------------------------------
   09. MOBILE NAVIGATION OVERLAY
   ---------------------------------------------------------------- */
.header__nav {
  transition: transform var(--transition-slow), opacity var(--transition-slow);
}

/* Header compact state after scrolling down */
.site-header--scrolled {
  height: 60px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.7);
}
.site-header--scrolled .header__logo img {
  height: 34px;
}


/* ----------------------------------------------------------------
   10. HERO BANNER
   Full-width banner with responsive image and glass CTA overlay
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  width: 100%;
  /* Aspect ratio maintained via the image itself */
  overflow: hidden;
  /* Small decorative bottom shadow */
  box-shadow: 0 8px 40px rgba(0,0,0,0.7);
}

/* The banner image fills its container */
.hero__picture {
  display: block;
  width: 100%;
}
.hero__img {
  width: 100%;
  height: auto;
  /* Max height on very wide screens */
  max-height: 620px;
  object-fit: cover;
  object-position: center top;
  display: block;
  /* Small upward nudge to keep faces/text in frame */
}

/* Semi-transparent CTA overlay – centred on both desktop and mobile */
.hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  /* Subtle dark vignette to make text readable */
  background: linear-gradient(
    to bottom,
    rgba(7,7,26,0.25) 0%,
    rgba(7,7,26,0.45) 100%
  );
}

/* The glass CTA block */
.hero__cta-block {
  /* Glassmorphism: blurred translucent panel */
  background: rgba(7, 7, 26, 0.62);
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  border: 1px solid rgba(240, 180, 41, 0.3);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 48px) clamp(24px, 5vw, 56px);
  text-align: center;
  max-width: 560px;
  width: 100%;
  box-shadow: 0 16px 64px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.06);
  /* Gentle gold glow around the block */
  filter: drop-shadow(0 0 32px rgba(240,180,41,0.15));
}

/* "Exclusive offer" badge above the title */
.hero__badge {
  display: inline-block;
  background: var(--grad-gold);
  color: #000;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.hero__title {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--clr-white);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
  /* Gold gradient on the big number */
  background: linear-gradient(135deg, #ffffff 30%, var(--clr-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__title strong {
  /* Inherits gradient from parent; keep text-fill transparent */
  -webkit-text-fill-color: transparent;
}

.hero__subtitle {
  font-size: clamp(0.875rem, 2vw, 1.05rem);
  color: var(--clr-text-muted);
  margin-bottom: var(--space-lg);
}

/* CTA button row */
.hero__buttons {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-sm);
}

/* Small disclaimer text */
.hero__disclaimer {
  font-size: 0.7rem;
  color: var(--clr-text-dim);
  margin-bottom: 0;
  margin-top: var(--space-sm);
}


/* ----------------------------------------------------------------
   11. BREADCRUMBS
   ---------------------------------------------------------------- */
.breadcrumb-wrap {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--clr-border-dim);
  background: rgba(255,255,255,0.02);
}

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

.breadcrumb__item {
  display: flex;
  align-items: center;
}
.breadcrumb__link {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  transition: color var(--transition-fast);
}
.breadcrumb__link:hover { color: var(--clr-gold); }

.breadcrumb__item--active span {
  font-size: 0.8rem;
  color: var(--clr-gold);
  font-weight: 500;
}

.breadcrumb__separator {
  font-size: 0.75rem;
  color: var(--clr-text-dim);
  user-select: none;
}


/* ----------------------------------------------------------------
   12. SECTIONS – Shared styles
   Each major content block uses the .section class for uniform spacing
   ---------------------------------------------------------------- */
.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

/* Alternate section backgrounds for visual rhythm */
.section:nth-of-type(even) {
  background: rgba(255,255,255,0.015);
}

/* Section header – centred by default */
.section__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

/* Left-aligned header variant */
.section__header--left {
  text-align: left;
  margin-bottom: var(--space-xl);
}

.section__title {
  margin-bottom: var(--space-md);
}

/* Decorative gold divider line under section titles */
.section__divider {
  width: 60px;
  height: 3px;
  background: var(--grad-gold);
  border-radius: var(--radius-full);
  margin: var(--space-md) auto;
}
.section__header--left .section__divider {
  margin-inline: 0;
}

.section__lead {
  max-width: 680px;
  margin-inline: auto;
  color: var(--clr-text-muted);
  font-size: 1.05rem;
}
.section__header--left .section__lead {
  margin-inline: 0;
}

/* CTA block centred below section content */
.section__cta {
  text-align: center;
  margin-top: var(--space-2xl);
}


/* ----------------------------------------------------------------
   13. SECTION – INTRO / STATS CARDS
   ---------------------------------------------------------------- */
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.intro__text p {
  color: var(--clr-text-muted);
}
.intro__text .btn {
  margin-top: var(--space-lg);
}

/* Stats grid: 2×2 on desktop */
.intro__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

/* Individual stat card with glowing border */
.stat-card {
  background: var(--grad-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.stat-card::before {
  /* Top golden line accent */
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--grad-gold);
  border-radius: 0 0 var(--radius-full) var(--radius-full);
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.stat-card__number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  /* Gradient text for numbers */
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-xs);
}
.stat-card__suffix {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-card__label {
  display: block;
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: var(--space-xs);
}


/* ----------------------------------------------------------------
   14. SECTION – CASINO OVERVIEW TABLE
   Fully responsive: card layout on mobile, normal table on desktop
   ---------------------------------------------------------------- */
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-md);
  /* Custom scrollbar */
  scrollbar-width: thin;
  scrollbar-color: var(--clr-gold) transparent;
}
.table-wrapper::-webkit-scrollbar { height: 4px; }
.table-wrapper::-webkit-scrollbar-thumb { background: var(--clr-gold); border-radius: 4px; }

/* The table itself */
.casino-table {
  width: 100%;
  min-width: 480px;        /* Triggers horizontal scroll on very small screens */
  border-collapse: collapse;
  background: var(--clr-card);
}

.casino-table thead {
  background: linear-gradient(90deg, #1a1a40 0%, #12122e 100%);
}
.casino-table th {
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-gold);
  text-align: left;
  border-bottom: 2px solid var(--clr-border);
}

.casino-table tbody tr {
  border-bottom: 1px solid var(--clr-border-dim);
  transition: background var(--transition-fast);
}
.casino-table tbody tr:last-child { border-bottom: none; }
.casino-table tbody tr:hover {
  background: rgba(240, 180, 41, 0.04);
}

.casino-table td {
  padding: 14px 20px;
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  vertical-align: middle;
}
/* First column (label) is bolder */
.casino-table td:first-child {
  font-weight: 600;
  color: var(--clr-text);
  white-space: nowrap;
}


/* ----------------------------------------------------------------
   15. SECTION – LOGIN STEPS
   Numbered step-by-step guide in an elegant card layout
   ---------------------------------------------------------------- */
.steps-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  counter-reset: steps;
}

.step-item {
  display: flex;
  gap: var(--space-md);
  background: var(--grad-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  position: relative;
  overflow: hidden;
}
.step-item::after {
  /* Decorative diagonal shimmer on hover */
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-glow);
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}
.step-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(240,180,41,0.4);
}
.step-item:hover::after { opacity: 1; }

/* Large step number badge */
.step-item__number {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--grad-gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  color: #000;
  box-shadow: 0 4px 12px rgba(240,180,41,0.35);
}

.step-item__title {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
  color: var(--clr-white);
}
.step-item__text {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  margin-bottom: 0;
}


/* ----------------------------------------------------------------
   16. SECTION – SECURITY CARDS
   ---------------------------------------------------------------- */
.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.security-card {
  background: var(--grad-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  position: relative;
  overflow: hidden;
}
.security-card::before {
  /* Left gold accent bar */
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: var(--grad-gold);
  border-radius: var(--radius-full);
}
.security-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(240,180,41,0.35);
}

.security-card__icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  display: block;
  /* Bounce animation on hover */
  transition: transform var(--transition-base);
}
.security-card:hover .security-card__icon {
  transform: scale(1.15) rotate(-5deg);
}

.security-card__title {
  font-size: 1rem;
  margin-bottom: var(--space-sm);
  color: var(--clr-gold);
}

.security-card__text {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  margin-bottom: 0;
}


/* ----------------------------------------------------------------
   17. SECTION – SLOTS GRID
   3 columns desktop → 2 tablet → 2 mobile (small cards)
   ---------------------------------------------------------------- */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

/* Each slot card */
.slot-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}
.slot-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 12px 40px rgba(240,180,41,0.25);
  border-color: rgba(240,180,41,0.4);
}

/* Image container with play overlay */
.slot-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #0a0a22;
}
.slot-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.slot-card:hover .slot-card__img {
  transform: scale(1.08);
}

/* Overlay with play button – appears on hover */
.slot-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 26, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}
.slot-card:hover .slot-card__overlay,
.slot-card:focus-within .slot-card__overlay {
  opacity: 1;
}

/* Card info row below the image */
.slot-card__info {
  padding: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}
.slot-card__title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.slot-card__tag {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--clr-text-dim);
  background: rgba(255,255,255,0.05);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}


/* ----------------------------------------------------------------
   18. SECTION – MOBILE APP
   Two-column: text left, phone mockup right
   ---------------------------------------------------------------- */
.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.app__content p {
  color: var(--clr-text-muted);
  margin-bottom: var(--space-md);
}

.app__features {
  list-style: none;
  margin: var(--space-xl) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.app__feature {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}
.app__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(0, 196, 140, 0.12);
  border-radius: var(--radius-full);
  color: var(--clr-green);
  font-style: normal;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.app__buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Phone mockup – decorative */
.app__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
}

.app__phone-mockup {
  width: 220px;
  height: 420px;
  border: 3px solid rgba(240,180,41,0.4);
  border-radius: 36px;
  background: var(--grad-card);
  box-shadow:
    0 0 0 8px rgba(240,180,41,0.06),
    0 24px 80px rgba(0,0,0,0.7),
    inset 0 0 40px rgba(240,180,41,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Animated glow pulse inside the phone */
.app__phone-glow {
  position: absolute;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(240,180,41,0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 3s ease-in-out infinite;
}

.app__phone-screen {
  position: relative;
  text-align: center;
  z-index: 1;
}
.app__phone-text {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--clr-gold);
}
.app__phone-sub {
  display: block;
  font-size: 0.72rem;
  color: var(--clr-text-muted);
  margin-top: 4px;
}


/* ----------------------------------------------------------------
   19. SECTION – PAYMENT METHODS
   Grouped by category; horizontally scrollable rows on mobile
   ---------------------------------------------------------------- */
.payments-categories {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.payments-category__title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-text-dim);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--clr-border-dim);
}

/* Payment icons grid – wraps on desktop, scrolls on mobile */
.payments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
}

/* Individual payment method pill */
.payment-item {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
  cursor: default;
  flex-shrink: 0;
}
.payment-item:hover {
  background: var(--clr-card-hover);
  border-color: rgba(240,180,41,0.4);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.payment-item__icon {
  height: 28px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  filter: brightness(0.9) saturate(0.8);
  transition: filter var(--transition-fast);
}
.payment-item:hover .payment-item__icon {
  filter: brightness(1) saturate(1);
}


/* ----------------------------------------------------------------
   20. SECTION – SUPPORT / CONTACT
   ---------------------------------------------------------------- */
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.support__text p {
  color: var(--clr-text-muted);
}
.support__email {
  color: var(--clr-gold);
  font-weight: 600;
  border-bottom: 1px solid rgba(240,180,41,0.3);
}
.support__email:hover { border-color: var(--clr-gold); }

/* Support option cards */
.support__options {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.support-option {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--grad-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}
.support-option:hover {
  border-color: rgba(240,180,41,0.35);
  transform: translateX(4px);
}

.support-option__icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.support-option__label {
  display: block;
  font-size: 0.9rem;
  color: var(--clr-white);
  margin-bottom: 2px;
}
.support-option__availability {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
}


/* ----------------------------------------------------------------
   21. SITE FOOTER
   ---------------------------------------------------------------- */
.site-footer {
  background: #040410;
  border-top: 1px solid var(--clr-border);
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-lg);
}

/* Four-column footer grid */
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--clr-border-dim);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.footer__logo {
  height: 40px;
  width: auto;
  margin-bottom: var(--space-sm);
  filter: drop-shadow(0 0 6px rgba(240,180,41,0.3));
}
.footer__tagline {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  margin-bottom: 0;
}
.footer__license {
  font-size: 0.75rem;
  color: var(--clr-text-dim);
  margin-bottom: 0;
}

.footer__nav-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-gold);
  margin-bottom: var(--space-md);
}
.footer__nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.footer__link {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  transition: color var(--transition-fast);
}
.footer__link:hover { color: var(--clr-gold); }
.footer__link--external::after {
  content: ' ↗';
  font-size: 0.7em;
}

/* Responsible gambling banner */
.footer__responsible {
  margin: var(--space-xl) 0;
}
.footer__responsible-inner {
  background: rgba(240,180,41,0.05);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.footer__age-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--clr-orange);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.8rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.footer__responsible p {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  margin-bottom: 0;
}

/* Bottom bar */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-lg);
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.footer__copyright {
  font-size: 0.78rem;
  color: var(--clr-text-dim);
  margin-bottom: 0;
}
.footer__domain {
  font-size: 0.78rem;
  color: var(--clr-text-dim);
  margin-bottom: 0;
  font-family: var(--font-heading);
}


/* ----------------------------------------------------------------
   22. SCROLL-TO-TOP BUTTON
   ---------------------------------------------------------------- */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  width: 48px;
  height: 48px;
  background: var(--grad-gold);
  color: #000;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 900;
  box-shadow: var(--shadow-gold);
  cursor: pointer;
  transition:
    opacity var(--transition-base),
    transform var(--transition-base);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}
/* JS adds .is-visible to show the button */
.scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(240,180,41,0.5);
}


/* ----------------------------------------------------------------
   23. ANIMATIONS & KEYFRAMES
   ---------------------------------------------------------------- */

/* Pulsing glow animation (phone mockup) */
@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.2); }
}

/* Fade-in + slide-up for scroll-reveal */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Applied by JS IntersectionObserver */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delay helpers */
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* Floating particle background (pure CSS) on hero */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1px 1px at 20% 30%, rgba(240,180,41,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 10%, rgba(240,180,41,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 70%, rgba(240,180,41,0.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 40% 80%, rgba(240,180,41,0.2) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.hero__overlay { z-index: 2; }


/* ----------------------------------------------------------------
   24. MEDIA QUERIES – RESPONSIVE BREAKPOINTS
   Mobile-first approach: base styles → enhance for larger screens
   ---------------------------------------------------------------- */

/* ── Large Desktop: ≥ 1280px ── */
@media (min-width: 1280px) {
  .slots-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ── Desktop: ≤ 1100px ── */
@media (max-width: 1100px) {
  .security-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .slots-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
}

/* ── Tablet: ≤ 900px ── */
@media (max-width: 900px) {
  /* Navigation becomes mobile overlay */
  .header__nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7, 7, 26, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid var(--clr-border);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: var(--space-xl) var(--container-pad);
    /* Hidden by default */
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    z-index: 99;
    transition: transform 0.35s ease, opacity 0.35s ease;
  }
  /* Show nav when open */
  .header__nav.is-open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .nav__link {
    display: block;
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: var(--radius-md);
    border-bottom: 1px solid var(--clr-border-dim);
  }
  .nav__list li:last-child .nav__link { border-bottom: none; }

  /* Show hamburger button */
  .hamburger { display: flex; }
  /* Hide desktop CTA from nav area; keep in header */
  .header__cta {
    display: none;
  }

  /* Intro section stacks vertically */
  .intro__grid {
    grid-template-columns: 1fr;
  }
  .intro__stats {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Steps: 1 column */
  .steps-list {
    grid-template-columns: 1fr;
  }

  /* App section stacks */
  .app-grid {
    grid-template-columns: 1fr;
  }
  .app__visual {
    display: none; /* Hide phone mockup on tablet to save space */
  }

  /* Support stacks */
  .support-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Mobile: ≤ 640px ── */
@media (max-width: 640px) {
  :root {
    --space-3xl: 56px;
    --space-2xl: 40px;
  }

  /* ==== FIXED MOBILE SCREEN: prevent overflow ====
     All layout-breaking elements are constrained */
  html, body {
    max-width: 100vw;
    overflow-x: hidden;
  }

  /* Hero: full-width banner, no overflow */
  .hero__img {
    max-height: 420px;
  }
  .hero__cta-block {
    padding: 20px 18px;
    border-radius: var(--radius-lg);
    /* Ensure it doesn't go edge-to-edge on tiny phones */
    margin: 0 var(--space-md);
  }
  .hero__title {
    font-size: 1.4rem;
  }
  .hero__buttons {
    flex-direction: column;
    gap: var(--space-sm);
  }
  .hero__buttons .btn {
    width: 100%;
    justify-content: center;
  }

  /* Stats: 2 columns on mobile */
  .intro__stats {
    grid-template-columns: 1fr 1fr;
  }

  /* Security: 1 column on mobile */
  .security-grid {
    grid-template-columns: 1fr;
  }

  /* Slots: 2 columns on mobile */
  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
  .slot-card__info {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: var(--space-sm) var(--space-md);
  }
  .slot-card__title {
    font-size: 0.75rem;
  }

  /* ============================================================
     MOBILE TABLE ADAPTATION
     Table rows become stacked cards – no horizontal scroll needed
     ============================================================ */
  .table-wrapper {
    overflow-x: visible;
    border: none;
    box-shadow: none;
    background: transparent;
  }
  .casino-table {
    /* Remove table layout; make each row a card block */
    display: block;
    min-width: unset;
    background: transparent;
    border: none;
  }
  .casino-table thead {
    /* Hide header row visually; keep for accessibility */
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
  }
  .casino-table tbody {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
  }
  .casino-table tbody tr {
    /* Each row becomes a two-column grid card */
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--grad-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
  }
  .casino-table tbody tr:hover {
    background: var(--grad-card);
  }
  .casino-table td {
    padding: 10px 14px;
    font-size: 0.82rem;
  }
  /* Label column uses data-label for context */
  .casino-table td:first-child {
    background: rgba(240,180,41,0.05);
    border-right: 1px solid var(--clr-border-dim);
    color: var(--clr-gold);
    font-size: 0.75rem;
  }

  /* Footer: single column */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .footer__brand { grid-column: auto; }
  .footer__responsible-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Payment methods: allow wrapping on mobile */
  .payments-grid {
    gap: var(--space-sm);
  }
  .payment-item {
    padding: var(--space-sm) var(--space-md);
  }

  /* Scroll-to-top: slightly smaller on mobile */
  .scroll-top {
    bottom: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  /* Section spacing tighter on mobile */
  .section {
    padding: var(--space-2xl) 0;
  }
  .section__header {
    margin-bottom: var(--space-xl);
  }
  .section__lead {
    font-size: 0.92rem;
  }
}

/* ── Very small phones: ≤ 380px ── */
@media (max-width: 380px) {
  .hero__title { font-size: 1.2rem; }
  .hero__cta-block { margin: 0 var(--space-sm); }
  .slots-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
  }
  .intro__stats {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── Print styles ── */
@media print {
  .site-header,
  .hero__overlay,
  .scroll-top,
  .slot-card__overlay,
  .hamburger { display: none !important; }
  body {
    background: white;
    color: #000;
  }
}
