/* ============================================================
   Vodka Casino — Static CSS
   Converted from React/Vite + Tailwind build
   ============================================================ */

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

/* ---- CSS Custom Properties (Design Tokens) ---- */
:root {
  --background: 216 28% 10%;
  --foreground: 210 20% 92%;
  --card: 216 30% 14%;
  --card-foreground: 210 20% 92%;
  --primary: 190 85% 50%;
  --primary-foreground: 216 28% 7%;
  --secondary: 216 25% 18%;
  --secondary-foreground: 210 20% 92%;
  --muted: 216 22% 16%;
  --muted-foreground: 215 15% 55%;
  --accent: 190 75% 45%;
  --accent-foreground: 216 28% 7%;
  --destructive: 0 84.2% 60.2%;
  --border: 216 22% 20%;
  --input: 216 22% 20%;
  --ring: 190 85% 50%;
  --radius: 0.75rem;
  --cyan-glow: 190 85% 50%;
  --cyan-light: 185 80% 60%;
  --blue-accent: 210 100% 60%;
  --neon-green: 140 70% 50%;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

ul {
  list-style: none;
}

/* ============================================================
   UTILITY CLASSES (Tailwind-equivalent)
   ============================================================ */

/* Layout */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.inline-flex {
  display: inline-flex;
}

.inline-block {
  display: inline-block;
}

.block {
  display: block;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.top-0 {
  top: 0;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.top-4 {
  top: 1rem;
}

.right-4 {
  right: 1rem;
}

/* Alignment */
.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

/* Sizing */
.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.min-h-screen {
  min-height: 100vh;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-5xl {
  max-width: 64rem;
}

.max-w-6xl {
  max-width: 72rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-md {
  max-width: 28rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.w-3 {
  width: 0.75rem;
}

.h-3 {
  height: 0.75rem;
}

.w-4 {
  width: 1rem;
}

.h-4 {
  height: 1rem;
}

.w-5 {
  width: 1.25rem;
}

.h-5 {
  height: 1.25rem;
}

.w-7 {
  width: 1.75rem;
}

.h-7 {
  height: 1.75rem;
}

.w-14 {
  width: 3.5rem;
}

.h-14 {
  height: 3.5rem;
}

/* Overflow */
.overflow-hidden {
  overflow: hidden;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Z-index */
.z-10 {
  z-index: 10;
}

.z-50 {
  z-index: 50;
}

.z-60 {
  z-index: 60;
}

/* Pointer */
.pointer-events-none {
  pointer-events: none;
}

.select-none {
  user-select: none;
}

/* Spacing — Padding */
.p-3 {
  padding: 0.75rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.px-12 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.pt-20 {
  padding-top: 5rem;
}

.pb-16 {
  padding-bottom: 4rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.ml-1 {
  margin-left: 0.25rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

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

/* Gap */
.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

/* Borders */
.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-full {
  border-radius: 9999px;
}

.border {
  border-width: 1px;
  border-style: solid;
}

.border-0 {
  border: none;
}

.border-t {
  border-top-width: 1px;
  border-top-style: solid;
}

.border-b {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

.border-border {
  border-color: hsl(var(--border));
}

/* Colors */
.bg-background {
  background-color: hsl(var(--background));
}

.bg-secondary {
  background-color: hsl(var(--secondary));
}

.text-foreground {
  color: hsl(var(--foreground));
}

.text-muted-foreground {
  color: hsl(var(--muted-foreground));
}

.text-primary {
  color: hsl(var(--primary));
}

.text-primary-foreground {
  color: hsl(var(--primary-foreground));
}

.text-destructive {
  color: hsl(var(--destructive));
}

.text-neon-green {
  color: hsl(var(--neon-green));
}

.text-neon-blue {
  color: hsl(var(--blue-accent));
}

.fill-primary {
  fill: hsl(var(--primary));
}

/* Typography */
.font-heading {
  font-family: 'Montserrat', sans-serif;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-black {
  font-weight: 900;
}

.uppercase {
  text-transform: uppercase;
}

.leading-tight {
  line-height: 1.25;
}

.leading-relaxed {
  line-height: 1.625;
}

.tracking-wider {
  letter-spacing: 0.05em;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

/* Transitions */
.transition-colors {
  transition: color 0.15s, background-color 0.15s, border-color 0.15s;
}

.transition-transform {
  transition: transform 0.15s;
}

.transition-opacity {
  transition: opacity 0.3s;
}

.transition-all {
  transition: all 0.3s;
}

.duration-300 {
  transition-duration: 0.3s;
}

.duration-500 {
  transition-duration: 0.5s;
}

.hover\:scale-105:hover {
  transform: scale(1.05);
}

.hover\:scale-110:hover {
  transform: scale(1.10);
}

.hover\:no-underline:hover {
  text-decoration: none;
}

/* Object Fit */
.object-cover {
  object-fit: cover;
}

.object-contain {
  object-fit: contain;
}

/* Aspect Ratio */
.aspect-\[4\/3\] {
  aspect-ratio: 4 / 3;
}

/* Opacity */
.opacity-0 {
  opacity: 0;
}

.opacity-80 {
  opacity: 0.8;
}

/* Space between children */
.space-y-2>*+* {
  margin-top: 0.5rem;
}

.space-y-3>*+* {
  margin-top: 0.75rem;
}

.space-y-6>*+* {
  margin-top: 1.5rem;
}

/* Backdrop blur */
.backdrop-blur-xl {
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}

.backdrop-blur-lg {
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.backdrop-blur-sm {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

/* Min-width */
.min-w-\[50px\] {
  min-width: 50px;
}

/* ============================================================
   CUSTOM COMPONENT CLASSES
   ============================================================ */

.gold-gradient {
  background: linear-gradient(135deg, #13c8ec, #14aab8, #25c0f4);
}

.gold-text {
  background: linear-gradient(135deg, #3dd6f5, #19d5e6, #4dc3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gold-shadow {
  box-shadow: 0 4px 30px rgba(19, 200, 236, 0.3), 0 0 60px rgba(19, 200, 236, 0.1);
}

.glass-card {
  background: linear-gradient(135deg, rgba(29, 38, 53, 0.8), rgba(20, 26, 36, 0.9));
  border: 1px solid rgba(19, 200, 236, 0.12);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.neon-border {
  border: 1px solid rgba(19, 200, 236, 0.25);
  box-shadow: 0 0 15px rgba(19, 200, 236, 0.08), inset 0 0 15px rgba(19, 200, 236, 0.03);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse-gold {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(255, 191, 0, 0.3);
  }

  50% {
    box-shadow: 0 0 40px rgba(255, 191, 0, 0.6);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-pulse-gold {
  animation: pulse-gold 2s ease-in-out infinite;
}

.animate-fadein {
  animation: fadeIn 0.2s ease;
}

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

.bg-secondary\/20 {
  background-color: hsla(var(--secondary) / 0.2);
}

.bg-secondary\/50 {
  background-color: hsla(var(--secondary) / 0.5);
}

.bg-secondary\/30 {
  background-color: hsla(var(--secondary) / 0.3);
}

.bg-background\/60 {
  background-color: hsla(var(--background) / 0.6);
}

.bg-background\/70 {
  background-color: hsla(var(--background) / 0.7);
}

.bg-background\/90 {
  background-color: hsla(var(--background) / 0.9);
}

.bg-background\/80 {
  background-color: hsla(var(--background) / 0.8);
}

.bg-primary\/10 {
  background-color: hsla(var(--primary) / 0.1);
}

.bg-primary\/20 {
  background-color: hsla(var(--primary) / 0.2);
}

/* ============================================================
   GRADIENT OVERLAYS
   ============================================================ */

.bg-gradient-overlay {
  background: linear-gradient(to bottom,
      hsla(216, 28%, 10%, 0.8),
      hsla(216, 28%, 10%, 0.6),
      hsl(216, 28%, 10%));
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  background-color: hsla(216, 28%, 10%, 0.7);
  border-bottom: 1px solid hsla(var(--border) / 0.5);
}

.site-header .inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.125rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: hsl(var(--foreground));
}

.site-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  transition: color 0.15s;
}

.site-nav a:hover {
  color: hsl(var(--foreground));
}

.header-cta {
  display: none;
  background: linear-gradient(135deg, #13c8ec, #14aab8, #25c0f4);
  color: hsl(var(--primary-foreground));
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  transition: transform 0.15s;
}

.header-cta:hover {
  transform: scale(1.05);
}

.hamburger {
  display: flex;
  align-items: center;
  color: hsl(var(--foreground));
  padding: 0.25rem;
  font-size: 1.25rem;
}

.mobile-menu {
  display: none;
  border-top: 1px solid hsla(var(--border) / 0.5);
  background-color: hsla(216, 28%, 10%, 0.95);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  padding: 1rem;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.4rem 0;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  transition: color 0.15s;
}

.mobile-menu a:hover {
  color: hsl(var(--foreground));
}

.mobile-menu .mobile-cta {
  display: block;
  margin-top: 0.75rem;
  background: linear-gradient(135deg, #13c8ec, #14aab8, #25c0f4);
  color: hsl(var(--primary-foreground));
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  text-align: center;
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 5rem 1rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      hsla(216, 28%, 10%, 0.8),
      hsla(216, 28%, 10%, 0.6),
      hsl(216, 28%, 10%));
}

.hero-girl {
  display: none;
  position: absolute;
  bottom: 0;
  right: 0;
  height: 85%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  opacity: 0.8;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-badge {
  background: linear-gradient(135deg, rgba(29, 38, 53, 0.8), rgba(20, 26, 36, 0.9));
  border: 1px solid rgba(19, 200, 236, 0.12);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.hero-badge.text-primary {
  color: hsl(var(--primary));
}

.hero-badge .icon {
  width: 0.75rem;
  height: 0.75rem;
  flex-shrink: 0;
}

.hero h1 {
  font-size: 2.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-bonus-badge {
  display: inline-block;
  margin-bottom: 2rem;
  animation: float 3s ease-in-out infinite;
}

.hero-bonus-inner {
  background: linear-gradient(135deg, #13c8ec, #14aab8, #25c0f4);
  border-radius: 1rem;
  padding: 1rem 2rem;
  box-shadow: 0 4px 30px rgba(19, 200, 236, 0.3), 0 0 60px rgba(19, 200, 236, 0.1);
  color: hsl(var(--primary-foreground));
  text-align: center;
}

.hero-bonus-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
}

.hero-bonus-amount {
  font-size: 3rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  line-height: 1;
}

.hero-bonus-limit {
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.btn-primary {
  background: linear-gradient(135deg, #13c8ec, #14aab8, #25c0f4);
  color: hsl(var(--primary-foreground));
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1rem 2.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 30px rgba(19, 200, 236, 0.3), 0 0 60px rgba(19, 200, 236, 0.1);
  display: inline-block;
  transition: transform 0.3s;
}

.btn-primary:hover {
  transform: scale(1.05);
}

.btn-secondary {
  background: linear-gradient(135deg, rgba(29, 38, 53, 0.8), rgba(20, 26, 36, 0.9));
  border: 1px solid rgba(19, 200, 236, 0.25);
  box-shadow: 0 0 15px rgba(19, 200, 236, 0.08), inset 0 0 15px rgba(19, 200, 236, 0.03);
  color: hsl(var(--foreground));
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  padding: 1rem 2.5rem;
  border-radius: 0.75rem;
  display: inline-block;
  transition: background-color 0.3s;
}

.btn-secondary:hover {
  background-color: hsla(var(--secondary) / 0.5);
}

.hero-rating {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.stars {
  display: flex;
  gap: 0.1rem;
}

.star {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--primary));
  fill: hsl(var(--primary));
}

.rating-score {
  font-weight: 600;
  color: hsl(var(--foreground));
}

.rating-label {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* ============================================================
   SECTION SHARED STYLES
   ============================================================ */

.section {
  padding: 5rem 1rem;
}

.section-alt {
  background-color: hsla(var(--secondary) / 0.2);
}

.section-title {
  font-size: 1.875rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

/* ============================================================
   BONUS SECTION
   ============================================================ */

#bonus {}

.countdown-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.countdown-label {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-right: 0.5rem;
}

.countdown-units {
  display: flex;
  gap: 0.5rem;
}

.countdown-unit {
  background-color: hsl(var(--secondary));
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  text-align: center;
  min-width: 50px;
}

.countdown-unit .value {
  display: block;
  font-size: 1.25rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: hsl(var(--primary));
}

.countdown-unit .unit-label {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin-left: 0.25rem;
}

.bonus-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.bonus-stat {
  background-color: hsla(var(--secondary) / 0.5);
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
}

.bonus-stat-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.bonus-stat-value {
  font-size: 1.25rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: hsl(var(--foreground));
}

.bonus-stat-label {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin-top: 0.25rem;
}

.promo-code-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.promo-code-inner {
  background-color: hsl(var(--secondary));
  border-radius: 0.75rem;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.promo-code-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  color: hsl(var(--foreground));
}

.promo-icon {
  color: hsl(var(--primary));
  font-size: 1.25rem;
}

.copy-btn {
  padding: 0.5rem;
  border-radius: 0.5rem;
  background-color: hsla(var(--primary) / 0.1);
  transition: background-color 0.15s;
  color: hsl(var(--primary));
  font-size: 0.875rem;
}

.copy-btn:hover {
  background-color: hsla(var(--primary) / 0.2);
}

.copy-btn.copied {
  color: hsl(var(--neon-green));
}

.bonus-footer-text {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin-top: 1rem;
  text-align: center;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */

#about {}

.about-content {
  font-size: 0.9375rem;
  color: hsla(var(--foreground) / 0.8);
  line-height: 1.8;
}

.about-content p {
  margin: 0 0 15px;
}

.about-content strong {
  color: hsl(var(--foreground));
}

.about-content p, .about-content ul li, .about-content ol li {
  font-size: 15px;
  line-height: 24px;
}

.about-content ol {
  padding-left: 20px;
}

.about-content ol li:not(:last-child) {
  margin-bottom: 8px;
}

.about-content ul {
  margin: 15px 0;
  list-style: none;
}

.about-content ul li {
  position: relative;
  font-size: 15px;
  line-height: 135%;
  padding-left: 18px;
  margin-bottom: 10px;
}

.about-content ul li:before {
    content: "";
    position: absolute;
    display: block;
    top: 6px;
    left: 0;
    width: 7px;
    height: 7px;
    background: #4dc3ff;
    border-radius: 100px;
}

.about-content .about-content__content-list a {
  display: inline-flex;
  padding-bottom: 5px;
  border-bottom: 1px dashed rgba(255,255,255,.15);
}

.about-content h2 {
  margin: 30px 0 15px;
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
}

.about-content h3, .about-content div.h3 {
  margin: 20px 0 15px;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
}

.table-wrapper {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(19, 200, 236, 0.25);
  overflow: auto;
}

.table-wrapper table {
  width: max-content;
  min-width: 100%;
  max-width: 760px;
  border-collapse: collapse;
}

.table-wrapper table tr td {
  padding: 5px 10px;
}

.table-wrapper table tr:nth-child(odd) {
  background-color: rgba(255,255,255,.05);
}

.about-content .source a {
  text-decoration: underline;
}

.author-card {
  margin-top: 15px;
  border-radius: 12px;
  padding: 20px;
}

.author-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 12px;
}

.author-avatar-wrap {
  flex: none;
  width: 55px;
  height: 55px;
}

.author-avatar-wrap a {
  display: flex;
  width: 100%;
  height: 100%;
}

.author-avatar-wrap a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 200px;
}

.author-info .author-name {
  margin-bottom: 3px;
  font-size: 16px;
  font-weight: 600;
  line-height: 130%;
}

.author-info .author-position {
  font-size: 14px;
  line-height: 130%;
  opacity: .75;
}

.about-content blockquote {
  background-color: rgba(255,255,255,.1);
  margin: 15px 0;
  padding: 15px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  line-height: 135%;
  border: 1px solid rgba(255,255,255,.15);
}

.about-content blockquote p {
  margin: 0;
}

.about-content blockquote.super .source {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 400;
  color: #ffffff;
}

.about-content blockquote.super .source a {
  color: #ffffff;
  text-decoration: underline;
}

.about-content blockquote.super .author {
  position: relative;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: 15px;
  font-weight: 500;
  line-height: 135%;
}

.about-content blockquote.super .author span {
  display: block;
  font-size: 12px;
  opacity: 0.75;
}

.about-content blockquote.super .author span:first-child {
  font-weight: 600;
  opacity: 1;
}

.about-content blockquote.super .author:after {
  content: "";
  position: absolute;
  display: block;
  bottom: 5px;
  right: 0;
  width: 30px;
  height: 30px;
  background: url(../images/icon-quote.svg) 50% 50%/100% no-repeat;
  opacity: 0.55;
}

/* ============================================================
   FEATURES / WHY US SECTION
   ============================================================ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.feature-card {
  background: linear-gradient(135deg, rgba(29, 38, 53, 0.8), rgba(20, 26, 36, 0.9));
  border: 1px solid rgba(19, 200, 236, 0.25);
  box-shadow: 0 0 15px rgba(19, 200, 236, 0.08), inset 0 0 15px rgba(19, 200, 236, 0.03);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.feature-card:hover {
  background-color: hsla(var(--secondary) / 0.3);
}

.feature-icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #13c8ec, #14aab8, #25c0f4);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.feature-card:hover .feature-icon-wrap {
  transform: scale(1.1);
}

.feature-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* ============================================================
   GAMES SECTION
   ============================================================ */

.games-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.game-tab-btn {
  padding: 0.625rem 1.25rem;
  border-radius: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s;
  background: linear-gradient(135deg, rgba(29, 38, 53, 0.8), rgba(20, 26, 36, 0.9));
  border: 1px solid rgba(19, 200, 236, 0.12);
  color: hsl(var(--muted-foreground));
  cursor: pointer;
}

.game-tab-btn:hover {
  color: hsl(var(--foreground));
}

.game-tab-btn.active {
  background: linear-gradient(135deg, #13c8ec, #14aab8, #25c0f4);
  color: hsl(var(--primary-foreground));
  box-shadow: 0 4px 30px rgba(19, 200, 236, 0.3), 0 0 60px rgba(19, 200, 236, 0.1);
  border-color: transparent;
}

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

.game-panel {
  display: none;
}

.game-panel.active {
  display: contents;
}

.game-card {
  background: linear-gradient(135deg, rgba(29, 38, 53, 0.8), rgba(20, 26, 36, 0.9));
  border: 1px solid rgba(19, 200, 236, 0.25);
  box-shadow: 0 0 15px rgba(19, 200, 236, 0.08), inset 0 0 15px rgba(19, 200, 236, 0.03);
  border-radius: 0.75rem;
  overflow: hidden;
}

.game-card-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.game-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.game-card-overlay {
  position: absolute;
  inset: 0;
  background-color: hsla(216, 28%, 10%, 0.6);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

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

.game-play-btn {
  background: linear-gradient(135deg, #13c8ec, #14aab8, #25c0f4);
  border-radius: 9999px;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: hsl(var(--primary-foreground));
  transition: transform 0.15s;
}

.game-play-btn:hover {
  transform: scale(1.1);
}

.game-preview-btn {
  background-color: hsl(var(--secondary));
  border-radius: 9999px;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: hsl(var(--foreground));
  transition: transform 0.15s;
}

.game-preview-btn:hover {
  transform: scale(1.1);
}

.game-card-info {
  padding: 0.75rem;
}

.game-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: hsl(var(--foreground));
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============================================================
   MIRROR SECTION
   ============================================================ */

#mirror .mirror-card {
  padding: 2rem;
}

.mirror-warning {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  color: hsl(var(--primary));
}

.mirror-warning-icon {
  font-size: 1.25rem;
}

.mirror-warning-text {
  font-size: 0.875rem;
  font-weight: 500;
}

.mirror-btn {
  background: linear-gradient(135deg, #13c8ec, #14aab8, #25c0f4);
  color: hsl(var(--primary-foreground));
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1rem 2.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 30px rgba(19, 200, 236, 0.3), 0 0 60px rgba(19, 200, 236, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s;
}

.mirror-btn:hover {
  transform: scale(1.05);
}

.mirror-note {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin-top: 1.5rem;
}

/* ============================================================
   PAYMENTS SECTION
   ============================================================ */

.payments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.payment-card {
  background: linear-gradient(135deg, rgba(29, 38, 53, 0.8), rgba(20, 26, 36, 0.9));
  border: 1px solid rgba(19, 200, 236, 0.25);
  box-shadow: 0 0 15px rgba(19, 200, 236, 0.08), inset 0 0 15px rgba(19, 200, 236, 0.03);
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
  transition: background-color 0.15s;
}

.payment-card:hover {
  background-color: hsla(var(--secondary) / 0.3);
}

.payment-emoji {
  font-size: 1.875rem;
  margin-bottom: 0.5rem;
}

.payment-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  color: hsl(var(--foreground));
}

.payments-note {
  text-align: center;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-top: 2rem;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

details.faq-item {
  background: linear-gradient(135deg, rgba(29, 38, 53, 0.8), rgba(20, 26, 36, 0.9));
  border: 1px solid rgba(19, 200, 236, 0.25);
  box-shadow: 0 0 15px rgba(19, 200, 236, 0.08), inset 0 0 15px rgba(19, 200, 236, 0.03);
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
}

details.faq-item summary {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: hsl(var(--foreground));
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
}

details.faq-item summary::-webkit-details-marker {
  display: none;
}

details.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: hsl(var(--primary));
  flex-shrink: 0;
  transition: transform 0.2s;
}

details.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  color: hsl(var(--muted-foreground));
  line-height: 1.625;
  padding: 0.75rem 0 0.25rem;
}

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

.site-footer {
  padding: 3rem 1rem;
  border-top: 1px solid hsl(var(--border));
}

.footer-inner {
  max-width: 72rem;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  grid-column: 1 / -1;
}

.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
  display: block;
}

.footer-tagline {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.625;
}

.footer-col-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
}

.footer-links li+li {
  margin-top: 0.5rem;
}

.footer-links a {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  transition: color 0.15s;
}

.footer-links a:hover {
  color: hsl(var(--foreground));
}

.footer-bottom {
  border-top: 1px solid hsl(var(--border));
  padding-top: 1.5rem;
  text-align: center;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  max-width: 42rem;
  margin: 0 auto 0.75rem;
  line-height: 1.625;
}

.footer-copy {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */

.mobile-sticky-cta {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0.75rem;
  background-color: hsla(216, 28%, 10%, 0.9);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-top: 1px solid hsl(var(--border));
}

.mobile-sticky-cta a {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #13c8ec, #14aab8, #25c0f4);
  color: hsl(var(--primary-foreground));
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-align: center;
  padding: 0.75rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 30px rgba(19, 200, 236, 0.3), 0 0 60px rgba(19, 200, 236, 0.1);
}

/* ============================================================
   EXIT INTENT POPUP
   ============================================================ */

.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background-color: hsla(216, 28%, 10%, 0.7);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.popup-overlay.open {
  display: flex;
}

.popup-card {
  background: linear-gradient(135deg, rgba(29, 38, 53, 0.8), rgba(20, 26, 36, 0.9));
  border: 1px solid rgba(19, 200, 236, 0.25);
  box-shadow: 0 0 15px rgba(19, 200, 236, 0.08), inset 0 0 15px rgba(19, 200, 236, 0.03);
  border-radius: 1rem;
  padding: 2rem;
  max-width: 28rem;
  width: 100%;
  position: relative;
  animation: float 3s ease-in-out infinite;
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: hsl(var(--muted-foreground));
  font-size: 1.25rem;
  line-height: 1;
  padding: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.15s;
}

.popup-close:hover {
  color: hsl(var(--foreground));
}

.popup-content {
  text-align: center;
}

.popup-emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.popup-title {
  font-size: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #3dd6f5, #19d5e6, #4dc3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.popup-text {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
}

.popup-btn {
  display: inline-block;
  background: linear-gradient(135deg, #13c8ec, #14aab8, #25c0f4);
  color: hsl(var(--primary-foreground));
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 30px rgba(19, 200, 236, 0.3), 0 0 60px rgba(19, 200, 236, 0.1);
  transition: transform 0.15s;
}

.popup-btn:hover {
  transform: scale(1.05);
}

/* ============================================================
   SVG ICON HELPERS
   ============================================================ */

.icon-svg {
  display: inline-block;
  vertical-align: middle;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================================
   reviews block
   ============================================================ */

.field {
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 15px 15px;
  font-size: 15px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.15);
  width: 100%;
  outline: none;
  transition: border-color 0.2s ease;
}

.field:hover {
  border-color: rgba(255, 255, 255, 0.25);
}

.field:focus {
  border-color: rgba(255, 255, 255, 0.5);
}

.field.error {
  color: #EB6969;
  border-color: rgba(235, 105, 105, 0.75);
}

.custom-checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.custom-checkbox + label {
  position: relative;
  display: block;
  color: #ffffff;
  padding-left: 23px;
  font-size: 12px;
  font-weight: 400;
  line-height: 135%;
  cursor: pointer;
}

.custom-checkbox + label a {
  text-decoration: underline;
  transition: color 0.2s ease;
}

.custom-checkbox + label a:hover {
  color: rgba(255,255,255,.5);
}

.custom-checkbox + label::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 15px;
  height: 15px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  margin-right: 20px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

.custom-checkbox:checked + label::before {
  border-color: rgba(255, 255, 255, 0.25);
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

.custom-checkbox + label.error:before {
  border-color: rgba(235, 105, 105, 0.75);
}

.reviews__rate {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
}

.reviews__rate:before {
  flex: none;
  content: "";
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  background: url(../img/icon-star-fill.svg) 50% 50%/100% no-repeat;
  margin-right: 5px;
}

.reviews__rate span {
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  opacity: 0.75;
  font-size: 14px;
  font-weight: 400;
}

.review-card{
  margin-bottom: 15px;
  padding: 20px 15px;
  background: linear-gradient(135deg, rgba(29, 38, 53, 0.8), rgba(20, 26, 36, 0.9));
  border: 1px solid rgba(19, 200, 236, 0.25);
  box-shadow: 0 0 15px rgba(19, 200, 236, 0.08), inset 0 0 15px rgba(19, 200, 236, 0.03);
  border-radius: 1rem;
}

.review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviews__item-avatar {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: rgba(0, 246, 255, 0.25);
  color: var(--link);
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.reviews__item-name {
  font-size: 15px;
  font-weight: 500;
  line-height: 135%;
}

.reviews__item-name span {
  display: block;
  font-size: 12px;
  opacity: 0.65;
}

.reviews__item-rate {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  font-weight: 500;
}

.reviews__item-rate:before {
  flex: none;
  content: "";
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
  background: url(../img/icon-star-fill.svg) 50% 50%/100% no-repeat;
}

.review-text {
  margin-bottom: 10px;
  font-size: 15px;
}

.review-date {
  font-size: 14px;
}

.reviews__item-full {
  font-size: 14px;
  color: #4dc3ff;
  cursor: pointer;
}

.reviews__add {
  position: relative;
  margin-top: 15px;
  padding: 25px 15px;
  background: linear-gradient(135deg, rgba(29, 38, 53, 0.8), rgba(20, 26, 36, 0.9));
  border: 1px solid rgba(19, 200, 236, 0.25);
  box-shadow: 0 0 15px rgba(19, 200, 236, 0.08), inset 0 0 15px rgba(19, 200, 236, 0.03);
  border-radius: 1rem;
  overflow: hidden;
}

.reviews__add .field {
  margin-bottom: 15px;
}

.reviews__add textarea {
  resize: none;
  height: 90px;
}

.reviews__add > label {
  display: block;
  margin: 0 0 5px;
  font-size: 14px;
  font-weight: 500;
}

.reviews__add button {
  width: 100%;
}

.reviews__add button:hover {
  transform: scale(1.01);
}

.reviews__add .form-consent {
  margin-top: 15px;
}

.review-form-title {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
}

.reviews__add-rate {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.reviews__add-rate span {
  font-size: 22px;
  font-weight: 600;
}

.reviews__add-stars {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.reviews__add-stars img {
  flex: none;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* ============================================================
   RESPONSIVE — TABLET (≥640px)
   ============================================================ */

@media (min-width: 640px) {
  .hero h1 {
    font-size: 3.75rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .hero-buttons {
    flex-direction: row;
  }

  .section-title {
    font-size: 2.25rem;
  }

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

/* ============================================================
   RESPONSIVE — DESKTOP (≥768px)
   ============================================================ */

@media (min-width: 768px) {
  .site-nav {
    display: flex;
  }

  .header-cta {
    display: inline-block;
  }

  .hamburger {
    display: none;
  }

  .hero-girl {
    display: block;
  }

  .hero h1 {
    font-size: 4.5rem;
  }

  .bonus-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

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

  .payments-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-brand {
    grid-column: auto;
  }

  .mobile-sticky-cta {
    display: none;
  }

  .hero-bonus-amount {
    font-size: 3.75rem;
  }

  .mirror-card.md-p {
    padding: 3rem;
  }

  .bonus-card.md-p {
    padding: 3rem;
  }
}

/* ============================================================
   RESPONSIVE — LARGE (≥1024px)
   ============================================================ */

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 5.25rem;
  }
}


/* ============================================================
   COOKIE CONSENT
   ============================================================ */

#cookie {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 60;

  max-width: 36rem;
  margin: 0 auto;

  background: linear-gradient(135deg, rgba(29, 38, 53, 0.9), rgba(20, 26, 36, 0.95));
  border: 1px solid rgba(19, 200, 236, 0.25);
  box-shadow: 0 0 15px rgba(19, 200, 236, 0.08), inset 0 0 15px rgba(19, 200, 236, 0.03);

  border-radius: 0.75rem;
  padding: 1rem 1.25rem;

  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.5;

  display: flex;
  flex-direction: column;
  gap: 0.75rem;

  animation: fadeIn 0.3s ease;
}

#cookie p {
  margin: 0;
}

#cookie a {
  color: hsl(var(--primary));
  text-decoration: underline;
}

#cookie .accept {
  align-self: flex-start;

  background: linear-gradient(135deg, #13c8ec, #14aab8, #25c0f4);
  color: hsl(var(--primary-foreground));

  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;

  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;

  box-shadow: 0 4px 30px rgba(19, 200, 236, 0.3), 0 0 60px rgba(19, 200, 236, 0.1);

  transition: transform 0.15s;
}

#cookie .accept:hover {
  transform: scale(1.05);
}

/* desktop positioning */

@media (min-width: 768px) {
  #cookie {
    left: 2rem;
    right: auto;
    bottom: 2rem;
  }
}