/* ============================================
   Mapleentertain — Social Gaming Hub
   Design system: Aqua / Twilight Blue
   Mobile-first responsive
   ============================================ */

:root {
  /* Brand palette */
  --c-twilight: #03045e;
  --c-french: #023e8a;
  --c-teal: #0077b6;
  --c-blue-green: #0096c7;
  --c-turquoise: #00b4d8;
  --c-sky: #48cae4;
  --c-frost: #90e0ef;
  --c-frost-2: #ade8f4;
  --c-cyan: #caf0f8;

  /* Semantic */
  --color-primary: var(--c-teal);
  --color-accent: var(--c-turquoise);
  --color-bg: #0a0f2e;
  --color-bg-2: #0e1640;
  --color-surface: rgba(255, 255, 255, 0.06);
  --color-surface-2: rgba(255, 255, 255, 0.1);
  --color-border: rgba(173, 232, 244, 0.18);
  --color-text: #e8f6fb;
  --color-text-strong: #ffffff;
  --color-muted: #9bb7c4;
  --color-success: #4ade80;
  --color-danger: #f87171;
  --color-warning: #fbbf24;

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #023e8a 0%, #0077b6 50%, #00b4d8 100%);
  --grad-accent: linear-gradient(135deg, #00b4d8 0%, #48cae4 50%, #90e0ef 100%);
  --grad-hero: radial-gradient(ellipse at 20% 0%, rgba(0, 119, 182, 0.4), transparent 60%),
               radial-gradient(ellipse at 80% 100%, rgba(0, 180, 216, 0.3), transparent 60%),
               linear-gradient(180deg, #03045e 0%, #0a0f2e 100%);
  --grad-card: linear-gradient(145deg, rgba(0, 119, 182, 0.12), rgba(0, 180, 216, 0.04));

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 24px rgba(3, 4, 94, 0.35);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 32px rgba(0, 180, 216, 0.45);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 280ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 480ms cubic-bezier(0.4, 0, 0.2, 1);

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

/* ============ Reset ============ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--c-sky); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--c-frost); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-strong);
  letter-spacing: -0.02em;
}

/* ============ Layout ============ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 64px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}
.section-header .eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-turquoise);
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 14px;
}
.section-header p {
  color: var(--color-muted);
  font-size: 17px;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-text-strong);
  border: 1px solid var(--color-border);
  backdrop-filter: blur(8px);
  transition: all var(--transition-normal);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--c-sky);
  transform: translateY(-2px);
  color: var(--color-text-strong);
}
.btn:active { transform: translateY(0); }
.btn--ghost { background: transparent; }
.btn--lg { padding: 17px 34px; font-size: 16px; }
.btn--block { width: 100%; }

.btn-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  border-radius: var(--radius-md);
  background: var(--grad-primary);
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: #fff;
  border: none;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 119, 182, 0.45), 0 0 0 0 rgba(0, 180, 216, 0.6);
  animation: pulse-glow 2.4s ease-in-out infinite;
  transition: transform var(--transition-normal), background-position var(--transition-normal), box-shadow var(--transition-normal);
}
.btn-play:hover {
  transform: scale(1.07);
  background-position: 100% 50%;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 180, 216, 0.55), 0 0 32px rgba(72, 202, 228, 0.7);
}
.btn-play:active { transform: scale(0.97); }
.btn-play--lg { padding: 18px 38px; font-size: 17px; }

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 6px 18px rgba(0, 119, 182, 0.45), 0 0 0 0 rgba(0, 180, 216, 0.55); }
  50% { box-shadow: 0 8px 24px rgba(0, 119, 182, 0.55), 0 0 0 12px rgba(0, 180, 216, 0); }
}

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(10, 15, 46, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--color-text-strong);
  letter-spacing: -0.02em;
}
.logo:hover { color: var(--color-text-strong); }
.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--grad-primary);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-glow);
}
.logo-mark svg { width: 22px; height: 22px; color: #fff; }

.nav-main { display: none; }
.nav-main ul {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-main a {
  display: inline-block;
  padding: 8px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--color-text);
  border-radius: 8px;
  transition: all var(--transition-fast);
}
.nav-main a:hover { background: rgba(255, 255, 255, 0.06); color: var(--c-frost); }
.nav-main a.active { color: var(--c-turquoise); background: rgba(0, 180, 216, 0.1); }

.has-dropdown { position: relative; }
.has-dropdown > a::after {
  content: '▾';
  margin-left: 6px;
  font-size: 10px;
  opacity: 0.7;
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--color-bg-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 8px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-lg);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a { padding: 10px 14px; }

.header-cta { display: none; }

.menu-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}
.menu-toggle svg { width: 22px; height: 22px; }

/* Mobile nav */
.mobile-nav {
  display: none;
  
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding: 24px;
  z-index: 55;
  overflow-y: auto;
  overflow-x: hidden;
  animation: mobile-nav-in var(--transition-normal) ease;
  z-index: 9999;
}
.mobile-nav.open { display: block; }
@keyframes mobile-nav-in {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: block;
  padding: 14px 16px;
  font-size: 17px;
  font-weight: 500;
  color: var(--color-text);
  border-radius: 12px;
  border: 1px solid transparent;
}
.mobile-nav a.active,
.mobile-nav a:hover { background: var(--color-surface); border-color: var(--color-border); color: var(--c-frost); }
.mobile-nav .btn-play { margin-top: 16px; width: 100%; }

@media (min-width: 1024px) {
  .nav-main { display: block; }
  .header-cta { display: inline-flex; }
  .menu-toggle { display: none; }
  .mobile-nav,
  .mobile-nav.open { display: none; }
}

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  padding: 64px 0 80px;
  background: var(--grad-hero);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(72, 202, 228, 0.15), transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(0, 180, 216, 0.15);
  border: 1px solid rgba(72, 202, 228, 0.35);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-frost);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.hero h1 {
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.05;
  margin-bottom: 22px;
}
.hero h1 .grad {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--color-muted);
  max-width: 580px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 14px;
  color: var(--color-muted);
}
.hero-meta-item { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta-item svg { width: 18px; height: 18px; color: var(--c-turquoise); }

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 540px;
  margin: 0 auto;
}
.hero-orb {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.4), rgba(3, 4, 94, 0) 70%);
  filter: blur(20px);
  animation: orb-pulse 5s ease-in-out infinite;
}
@keyframes orb-pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.1); opacity: 1; }
}
.hero-icons {
  position: absolute;
  inset: 0;
}
.float-icon {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: var(--grad-card);
  border: 1px solid var(--color-border);
  backdrop-filter: blur(12px);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  animation: float-y 6s ease-in-out infinite;
}
.float-icon svg { width: 36px; height: 36px; color: var(--c-frost); }
.float-icon:nth-child(1) { top: 5%; left: 15%; animation-delay: 0s; }
.float-icon:nth-child(2) { top: 12%; right: 8%; animation-delay: 1s; }
.float-icon:nth-child(3) { bottom: 18%; left: 5%; animation-delay: 2s; }
.float-icon:nth-child(4) { bottom: 8%; right: 18%; animation-delay: 3s; }
.float-icon:nth-child(5) { top: 45%; left: 45%; animation-delay: 1.5s; }

@keyframes float-y {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-18px) rotate(3deg); }
}

@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1.1fr 1fr; }
}

/* ============ Cards ============ */
.card {
  background: var(--grad-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-accent);
  opacity: 0;
  transition: opacity var(--transition-normal);
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(72, 202, 228, 0.45);
  box-shadow: var(--shadow-md);
}
.card:hover::before { opacity: 1; }

/* ============ Games Preview / Catalog ============ */
.games-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 600px) { .games-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .games-grid { grid-template-columns: repeat(3, 1fr); } }

.game-card {
  background: var(--grad-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}
.game-card:hover {
  transform: translateY(-6px);
  border-color: var(--c-turquoise);
  box-shadow: 0 16px 40px rgba(0, 180, 216, 0.2);
}
.game-card__preview {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #023e8a, #0077b6);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.game-card__preview svg { width: 60%; height: 60%; }
.game-card__preview::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(3, 4, 94, 0.5));
}
.game-card__body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.game-card__tags { display: flex; gap: 8px; flex-wrap: wrap; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(0, 180, 216, 0.15);
  color: var(--c-frost);
  border: 1px solid rgba(72, 202, 228, 0.3);
}
.badge--age { background: rgba(248, 113, 113, 0.15); color: #fca5a5; border-color: rgba(248, 113, 113, 0.35); }
.badge--virtual { background: rgba(74, 222, 128, 0.15); color: #86efac; border-color: rgba(74, 222, 128, 0.3); }
.game-card h3 { font-size: 22px; }
.game-card p { color: var(--color-muted); font-size: 14.5px; flex: 1; }
.game-card .btn-play { width: 100%; margin-top: 8px; }

/* ============ About ============ */
.about-grid {
  display: flex;  
  align-items: center;
}
@media (min-width: 900px) { .about-grid { grid-template-columns: 1fr 1fr; } }

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}
@media (min-width: 600px) { .feature-grid { grid-template-columns: 1fr 1fr; } }

.feature {
  display: flex;
  gap: 16px;
  padding: 18px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}
.feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--grad-primary);
  display: grid;
  place-items: center;
}
.feature-icon svg { width: 22px; height: 22px; color: #fff; }
.feature h4 { font-size: 16px; margin-bottom: 4px; }
.feature p { font-size: 13.5px; color: var(--color-muted); line-height: 1.5; }

.about-illustration {

  display: block;
  max-width: 460px;
  margin: 0 auto;
}

/* ============ How It Works ============ */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  counter-reset: step;
}
@media (min-width: 600px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(4, 1fr); } }

.step {
  text-align: center;
  padding: 32px 22px;
  background: var(--grad-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  position: relative;
  counter-increment: step;
}
.step-num {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 14px;
  background: var(--grad-accent);
  display: grid;
  place-items: center;
  color: var(--c-twilight);
  font-weight: 800;
  font-size: 20px;
  box-shadow: var(--shadow-glow);
}
.step svg.step-icon { width: 32px; height: 32px; margin: 0 auto 12px; color: var(--c-turquoise); }
.step h4 { font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--color-muted); font-size: 14.5px; }

/* ============ FAQ ============ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-normal);
}
.faq-item.active { border-color: var(--c-turquoise); background: rgba(0, 180, 216, 0.07); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-strong);
}
.faq-q svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition-normal);
  color: var(--c-turquoise);
}
.faq-item.active .faq-q svg { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}
.faq-a-inner {
  padding: 0 24px 22px;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ============ Testimonials ============ */
.testimonials-slider {
  position: relative;
  overflow: hidden;
  margin: 0 -10px;
  cursor: grab;
}
.testimonials-slider:active { cursor: grabbing; }
.testimonials-track {
  display: flex;
  transition: transform var(--transition-slow);
  will-change: transform;
}
.testimonial {
  flex: 0 0 100%;
  padding: 0 10px;
  box-sizing: border-box;
}
@media (min-width: 768px) { .testimonial { flex: 0 0 50%; } }
@media (min-width: 1024px) { .testimonial { flex: 0 0 33.333%; } }

.testimonial-inner {
  background: var(--grad-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  height: 100%;
  position: relative;
}
.testimonial-quote svg { width: 28px; height: 28px; color: var(--c-turquoise); opacity: 0.6; margin-bottom: 12px; }
.testimonial-text { font-size: 15.5px; line-height: 1.65; color: var(--color-text); margin-bottom: 22px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
}
.t-name { font-weight: 600; color: var(--color-text-strong); font-size: 15px; }
.t-loc { font-size: 13px; color: var(--color-muted); }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border);
  transition: all var(--transition-fast);
}
.slider-dot.active { background: var(--c-turquoise); transform: scale(1.3); }

/* ============ Newsletter ============ */
.newsletter {
  background: linear-gradient(135deg, rgba(0, 119, 182, 0.2), rgba(0, 180, 216, 0.1));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 48px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(72, 202, 228, 0.15), transparent 60%);
  animation: rotate 20s linear infinite;
}
@keyframes rotate { to { transform: rotate(360deg); } }
.newsletter-inner { position: relative; z-index: 2; max-width: 580px; margin: 0 auto; }
.newsletter h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 12px; }
.newsletter p { color: var(--color-muted); margin-bottom: 24px; }
.newsletter-form { display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 600px) { .newsletter-form { flex-direction: row; } }
.newsletter input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-strong);
  font-size: 15px;
}
.newsletter input[type="email"]:focus {
  outline: none;
  border-color: var(--c-turquoise);
  background: rgba(255, 255, 255, 0.12);
}
.newsletter input::placeholder { color: var(--color-muted); }
.newsletter-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 14px;
  font-size: 13px;
  color: var(--color-muted);
  text-align: left;
}
.newsletter-consent input { margin-top: 3px; accent-color: var(--c-turquoise); }
.newsletter-msg { margin-top: 14px; font-size: 14px; min-height: 20px; }
.newsletter-msg.success { color: var(--color-success); }
.newsletter-msg.error { color: var(--color-danger); }

/* ============ Disclaimer (rendered by JS) ============ */
.disclaimer {
  background: linear-gradient(135deg, rgba(248, 113, 113, 0.08), rgba(251, 191, 36, 0.05));
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 40px auto;
  max-width: var(--container);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.disclaimer-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(251, 191, 36, 0.18);
  display: grid;
  place-items: center;
  color: var(--color-warning);
}
.disclaimer-icon svg { width: 22px; height: 22px; }
.disclaimer-body { flex: 1; }
.disclaimer-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--color-text-strong);
  margin-bottom: 6px;
  font-size: 15.5px;
}
.disclaimer p { font-size: 13.5px; color: var(--color-muted); line-height: 1.6; }
.disclaimer p strong { color: var(--c-frost); }

/* ============ Footer ============ */
.site-footer {
  background: linear-gradient(180deg, transparent, rgba(3, 4, 94, 0.6));
  border-top: 1px solid var(--color-border);
  padding: 56px 0 28px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }

.footer-brand p { color: var(--color-muted); font-size: 14px; margin-top: 14px; max-width: 320px; }
.footer-contacts { list-style: none; margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.footer-contacts li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--color-muted); }
.footer-contacts svg { width: 18px; height: 18px; color: var(--c-turquoise); margin-top: 2px; flex-shrink: 0; }
.footer-contacts a { color: var(--color-muted); }
.footer-contacts a:hover { color: var(--c-frost); }

.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-frost-2);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--color-muted); font-size: 14.5px; }
.footer-col a:hover { color: var(--c-frost); }

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-bottom small { color: var(--color-muted); font-size: 13px; }
.footer-badges { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; justify-content: center; }

/* ============ Page hero (inner pages) ============ */
.page-hero {
  padding: 64px 0 32px;
  background: linear-gradient(180deg, rgba(0, 119, 182, 0.15), transparent);
  text-align: center;
  position: relative;
}
.page-hero h1 { font-size: clamp(30px, 5vw, 48px); margin-bottom: 14px; }
.page-hero p { max-width: 720px; margin: 0 auto; color: var(--color-muted); font-size: 17px; }

/* ============ Contacts ============ */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 900px) { .contacts-grid { grid-template-columns: 1fr 1.4fr; } }

.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-info-item {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--grad-primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 22px; height: 22px; color: #fff; }
.contact-info h4 { font-size: 15px; margin-bottom: 4px; }
.contact-info span, .contact-info a { color: var(--color-muted); font-size: 14.5px; }

.contact-form {
  background: var(--grad-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.form-row { display: grid; gap: 16px; margin-bottom: 16px; }
@media (min-width: 600px) { .form-row.cols-2 { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 13.5px; font-weight: 600; color: var(--c-frost-2); }
.form-field input,
.form-field select,
.form-field textarea {
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text-strong);
  font-size: 14.5px;
  transition: all var(--transition-fast);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--c-turquoise);
  background: rgba(255, 255, 255, 0.08);
}
.form-field textarea { resize: vertical; min-height: 130px; font-family: inherit; }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--color-muted); margin-bottom: 14px; }
.form-checkbox input { margin-top: 3px; accent-color: var(--c-turquoise); }
.form-msg { margin-top: 14px; font-size: 14px; min-height: 22px; }
.form-msg.success { color: var(--color-success); }
.form-msg.error { color: var(--color-danger); }
.spinner svg { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============ Legal pages ============ */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
  background: var(--grad-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}
.legal-content h2 { font-size: 24px; margin: 32px 0 14px; color: var(--c-frost); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 18px; margin: 22px 0 10px; color: var(--c-frost-2); }
.legal-content p, .legal-content li { font-size: 15px; line-height: 1.75; color: var(--color-text); margin-bottom: 12px; }
.legal-content ul { padding-left: 24px; list-style: disc; }
.legal-content ul li::marker { color: var(--c-turquoise); }
.legal-content strong { color: var(--color-text-strong); }
.legal-meta {
  padding: 14px 18px;
  background: rgba(0, 180, 216, 0.08);
  border-left: 3px solid var(--c-turquoise);
  border-radius: var(--radius-sm);
  margin-bottom: 32px;
  font-size: 14px;
  color: var(--color-muted);
}

/* ============ Age Gate ============ */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(3, 4, 94, 0.92);
  backdrop-filter: blur(14px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.age-gate.show { display: flex; }
.age-gate-box {
  width: 100%;
  max-width: 480px;
  background: linear-gradient(160deg, #0a0f2e, #03045e);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: scale-in var(--transition-normal);
}
@keyframes scale-in { from { transform: scale(0.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.age-gate-logo { margin: 0 auto 14px; }
.age-gate-mark {
  width: 86px;
  height: 86px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-glow);
  font-weight: 800;
  font-size: 26px;
  color: #fff;
  letter-spacing: -0.02em;
}
.age-gate h2 { font-size: 24px; margin-bottom: 10px; }
.age-gate p { color: var(--color-muted); margin-bottom: 22px; font-size: 15px; line-height: 1.6; }
.age-gate-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  padding: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 22px;
  font-size: 14px;
  color: var(--color-text);
  cursor: pointer;
}
.age-gate-check input { margin-top: 3px; accent-color: var(--c-turquoise); flex-shrink: 0; }
.age-gate-actions { display: flex; gap: 12px; }
.age-gate-actions .btn-play,
.age-gate-actions .btn { flex: 1; }
.age-gate-actions .btn-play:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  animation: none;
  filter: grayscale(0.4);
}

/* ============ Cookie banner ============ */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 90;
  background: linear-gradient(160deg, #0e1640, #0a0f2e);
  border: 1px solid var(--c-turquoise);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  display: none;
  align-items: center;
  gap: 18px;
  flex-direction: column;
  max-width: 720px;
  margin: 0 auto;
  animation: slide-up var(--transition-normal);
}
.cookie-banner.show { display: flex; }
@keyframes slide-up { from { transform: translateY(40px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cookie-banner-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 180, 216, 0.15);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.cookie-banner-icon svg { width: 22px; height: 22px; color: var(--c-frost); }
.cookie-banner-body { flex: 1; }
.cookie-banner h4 { font-size: 15px; margin-bottom: 4px; }
.cookie-banner p { font-size: 13.5px; color: var(--color-muted); }
.cookie-banner-actions { display: flex; gap: 10px; width: 100%; }
.cookie-banner-actions .btn,
.cookie-banner-actions .btn-play { flex: 1; padding: 11px 16px; font-size: 13.5px; animation: none; }
@media (min-width: 768px) {
  .cookie-banner { flex-direction: row; padding: 18px 26px; }
  .cookie-banner-actions { width: auto; }
}

/* ============ Game pages ============ */
.game-stage {
  background: var(--grad-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 24px;
  position: relative;
  overflow: hidden;
}
.stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
@media (min-width: 600px) { .stats-bar { grid-template-columns: repeat(4, 1fr); } }
.stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  text-align: center;
}
.stat-label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 6px;
}
.stat-value {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--color-text-strong);
  
}
.stat-value.win { color: var(--color-success); }
.stat-value.lose { color: var(--color-danger); }

.game-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin: 24px 0;
}
.bet-control {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}
.bet-control button {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--color-surface);
  color: var(--c-frost);
  font-size: 18px;
  font-weight: 700;
}
.bet-control button:hover { background: var(--c-teal); color: #fff; }
.bet-amount {
  min-width: 100px;
  text-align: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: var(--c-frost);
  font-size: 17px;
}
.bet-label {
  font-size: 13px;
  color: var(--color-muted);
  padding-left: 6px;
}

.game-message {
  text-align: center;
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  min-height: 36px;
  margin: 16px 0;
  letter-spacing: -0.01em;
}
.game-message.win { color: var(--color-success); text-shadow: 0 0 20px rgba(74, 222, 128, 0.5); }
.game-message.lose { color: var(--color-danger); }
.game-message.push { color: var(--c-frost); }

.how-to-play {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 28px 0;
}
@media (min-width: 600px) { .how-to-play { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .how-to-play { grid-template-columns: repeat(4, 1fr); } }
.htp-step {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}
.htp-step-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--grad-accent);
  display: grid;
  place-items: center;
  color: var(--c-twilight);
}
.htp-step-icon svg { width: 18px; height: 18px; }
.htp-step strong { display: block; font-size: 14px; color: var(--color-text-strong); margin-bottom: 2px; }
.htp-step span { font-size: 13px; color: var(--color-muted); line-height: 1.5; }

.game-note {
  text-align: center;
  font-size: 13px;
  color: var(--color-muted);
  margin-top: 20px;
  padding: 14px;
  background: rgba(0, 180, 216, 0.06);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-md);
}

/* ============ Blackjack table ============ */
.bj-table { padding: 20px; min-height: 320px; }
.bj-zone { margin-bottom: 22px; }
.bj-zone-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-frost-2);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.bj-zone-label .score {
  padding: 2px 10px;
  background: rgba(0, 180, 216, 0.18);
  border: 1px solid rgba(72, 202, 228, 0.3);
  border-radius: 999px;
  color: var(--c-frost);
  font-size: 12.5px;
  font-weight: 700;
}
.cards-row {
  display: flex;
  gap: 8px;
  min-height: 110px;
  flex-wrap: wrap;
}

.playing-card {
  width: 70px;
  height: 100px;
  background: linear-gradient(160deg, #fff, #e8f6fb);
  border-radius: 10px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 6px 8px;
  color: #03045e;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  transform-style: preserve-3d;
  animation: card-deal 0.4s ease;
}
@keyframes card-deal {
  from { transform: translateY(-30px) rotateY(180deg); opacity: 0; }
  to { transform: translateY(0) rotateY(0); opacity: 1; }
}
.playing-card.red { color: #c1121f; }
.playing-card .card-corner-tl { font-size: 14px; line-height: 1; }
.playing-card .card-corner-tl small { display: block; font-size: 16px; }
.playing-card .card-center { text-align: center; font-size: 28px; }
.playing-card .card-corner-br {
  font-size: 14px;
  align-self: flex-end;
  transform: rotate(180deg);
  line-height: 1;
}
.playing-card .card-corner-br small { display: block; font-size: 16px; }
.playing-card.back {
  background: var(--grad-primary);
  color: transparent;
}
.playing-card.back::after {
  content: '★';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 30px;
}

/* ============ Dice game ============ */
.dice-area {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin: 30px 0;
  min-height: 110px;
}
.die {
  width: 90px;
  height: 90px;
  background: linear-gradient(160deg, #fff, #ade8f4);
  border-radius: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  padding: 12px;
  box-shadow: 0 8px 22px rgba(3, 4, 94, 0.4);
  position: relative;
}
.die.rolling { animation: roll 0.6s ease; }
@keyframes roll {
  0% { transform: rotate(0) translateY(0); }
  25% { transform: rotate(180deg) translateY(-15px); }
  50% { transform: rotate(360deg) translateY(0); }
  75% { transform: rotate(540deg) translateY(-10px); }
  100% { transform: rotate(720deg) translateY(0); }
}
.die .pip {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #03045e;
  align-self: center;
  justify-self: center;
}
.die-1 .pip:nth-child(1) { grid-area: 2 / 2; }
.die-2 .pip:nth-child(1) { grid-area: 1 / 1; }
.die-2 .pip:nth-child(2) { grid-area: 3 / 3; }
.die-3 .pip:nth-child(1) { grid-area: 1 / 1; }
.die-3 .pip:nth-child(2) { grid-area: 2 / 2; }
.die-3 .pip:nth-child(3) { grid-area: 3 / 3; }
.die-4 .pip:nth-child(1) { grid-area: 1 / 1; }
.die-4 .pip:nth-child(2) { grid-area: 1 / 3; }
.die-4 .pip:nth-child(3) { grid-area: 3 / 1; }
.die-4 .pip:nth-child(4) { grid-area: 3 / 3; }
.die-5 .pip:nth-child(1) { grid-area: 1 / 1; }
.die-5 .pip:nth-child(2) { grid-area: 1 / 3; }
.die-5 .pip:nth-child(3) { grid-area: 2 / 2; }
.die-5 .pip:nth-child(4) { grid-area: 3 / 1; }
.die-5 .pip:nth-child(5) { grid-area: 3 / 3; }
.die-6 .pip:nth-child(1) { grid-area: 1 / 1; }
.die-6 .pip:nth-child(2) { grid-area: 1 / 3; }
.die-6 .pip:nth-child(3) { grid-area: 2 / 1; }
.die-6 .pip:nth-child(4) { grid-area: 2 / 3; }
.die-6 .pip:nth-child(5) { grid-area: 3 / 1; }
.die-6 .pip:nth-child(6) { grid-area: 3 / 3; }

.target-picker {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 16px 0 20px;
}
.target-btn {
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border-radius: 10px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  transition: all var(--transition-fast);
}
.target-btn:hover { background: var(--color-surface-2); border-color: var(--c-sky); }
.target-btn.active {
  background: var(--grad-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}
.target-meta { text-align: center; font-size: 13.5px; color: var(--color-muted); margin-bottom: 8px; }
.target-meta strong { color: var(--c-frost); }

/* ============ Keno ============ */
.keno-board {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 6px;
  max-width: 560px;
  margin: 0 auto 20px;
}
@media (max-width: 480px) { .keno-board { gap: 4px; } }
.keno-num {
  aspect-ratio: 1 / 1;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  font-size: 13.5px;
  color: var(--color-text);
  transition: all var(--transition-fast);
  user-select: none;
}
@media (max-width: 480px) { .keno-num { font-size: 11px; border-radius: 6px; } }
.keno-num:hover:not(.locked) { background: var(--color-surface-2); border-color: var(--c-sky); }
.keno-num.picked {
  background: var(--grad-primary);
  color: #fff;
  border-color: transparent;
  transform: scale(1.05);
}
.keno-num.drawn {
  background: rgba(72, 202, 228, 0.25);
  border-color: var(--c-turquoise);
  color: var(--c-frost);
}
.keno-num.hit {
  background: var(--grad-accent);
  color: var(--c-twilight);
  border-color: transparent;
  animation: pop 0.4s ease;
}
@keyframes pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.25); box-shadow: 0 0 20px rgba(72, 202, 228, 0.8); }
  100% { transform: scale(1); }
}
.keno-num.locked { cursor: not-allowed; opacity: 0.85; }

.keno-info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
  padding: 12px 16px;
  background: rgba(0, 180, 216, 0.08);
  border-radius: var(--radius-md);
  font-size: 14px;
}
.keno-info span { color: var(--color-muted); }
.keno-info strong { color: var(--c-frost); font-family: 'Sora', sans-serif; }

/* ============ Hi-Lo ============ */
.hilo-deck-area {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 30px 0;
  min-height: 180px;
}
.hilo-card-wrap {
  width: 130px;
  height: 180px;
  perspective: 800px;
}
.hilo-card {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #fff, #e8f6fb);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  color: #03045e;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  position: relative;
}
.hilo-card.red { color: #c1121f; }
.hilo-card.flipping { animation: flip-card 0.5s ease; }
@keyframes flip-card {
  0% { transform: rotateY(0); }
  50% { transform: rotateY(90deg); }
  100% { transform: rotateY(0); }
}
.hilo-card .top { font-size: 22px; line-height: 1; }
.hilo-card .top small { display: block; font-size: 28px; }
.hilo-card .mid { text-align: center; font-size: 56px; line-height: 1; }
.hilo-card .bot { font-size: 22px; line-height: 1; align-self: flex-end; transform: rotate(180deg); }
.hilo-card .bot small { display: block; font-size: 28px; }

.hilo-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hilo-actions .btn-play { min-width: 140px; }

/* ============ Page sections (catalog) ============ */
.catalog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 768px) { .catalog-grid { grid-template-columns: repeat(2, 1fr); } }
.catalog-card {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--grad-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
}
@media (min-width: 520px) { .catalog-card { grid-template-columns: 200px 1fr; } }
.catalog-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-turquoise);
  box-shadow: var(--shadow-md);
}
.catalog-card__preview {
  background: linear-gradient(135deg, #023e8a, #0096c7);
  aspect-ratio: 16/10;
  display: grid;
  place-items: center;
  position: relative;
}
@media (min-width: 520px) { .catalog-card__preview { aspect-ratio: auto; min-height: 100%; } }
.catalog-card__preview svg { width: 60%; max-height: 70%; }
.catalog-card__body { padding: 22px 24px; display: flex; flex-direction: column; gap: 12px; }
.catalog-card h3 { font-size: 22px; }
.catalog-card p { color: var(--color-muted); font-size: 14.5px; flex: 1; }
.catalog-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.catalog-card .btn-play { align-self: flex-start; }

/* ============ Utilities ============ */
.text-center { text-align: center; }
.mt-auto { margin-top: auto; }
.hidden { display: none !important; }

/* Mini disclaimer line in game pages */
.entertainment-only {
  text-align: center;
  font-size: 13px;
  color: var(--color-muted);
  padding: 14px;
  border-top: 1px dashed var(--color-border);
  margin-top: 24px;
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb { background: var(--c-teal); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--c-turquoise); }

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--c-turquoise);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

#cf-subject option {
  background-color: #1e1e1e;
  color: white;
 
}
#cf-subject {
  width: 250px;
  
}