/* ============================================================
   SYKAAA CASINO — MAIN STYLESHEET
   Design: Obsidian × Gold × Crimson
   Fonts: Cinzel (headings) + Jost (body)
   ============================================================ */

/* ---- 0. DESIGN TOKENS ---- */
:root {
  /* Base Palette */
  --c-bg:           #07070e;
  --c-bg-alt:       #0c0c1a;
  --c-surface:      #111125;
  --c-surface-2:    #17172e;
  --c-surface-3:    #1e1e3a;
  --c-overlay:      rgba(7, 7, 14, 0.85);

  /* Gold Spectrum */
  --c-gold-bright:  #f5d060;
  --c-gold:         #d4a843;
  --c-gold-mid:     #c09030;
  --c-gold-dark:    #8a6318;
  --c-gold-glow:    rgba(212, 168, 67, 0.22);
  --c-gold-glow-lg: rgba(212, 168, 67, 0.12);

  /* Crimson Spectrum */
  --c-red:          #c02828;
  --c-red-bright:   #e03535;
  --c-red-dark:     #8a1414;
  --c-red-glow:     rgba(192, 40, 40, 0.25);
  --c-red-glow-lg:  rgba(192, 40, 40, 0.10);

  /* Typography */
  --c-text:         #f2eedc;
  --c-text-sub:     #b8b2a0;
  --c-text-muted:   #7a7468;
  --c-text-dim:     #4a4640;

  /* Borders */
  --border-gold:    1px solid rgba(212, 168, 67, 0.20);
  --border-red:     1px solid rgba(192, 40, 40, 0.25);
  --border-subtle:  1px solid rgba(255, 255, 255, 0.06);
  --border-glass:   1px solid rgba(255, 255, 255, 0.08);

  /* Gradients */
  --grad-gold:      linear-gradient(135deg, #c09030 0%, #f5d060 45%, #d4a843 60%, #9a7020 100%);
  --grad-gold-h:    linear-gradient(90deg, #9a7020 0%, #f5d060 50%, #9a7020 100%);
  --grad-red:       linear-gradient(135deg, #6a0f0f 0%, #c02828 100%);
  --grad-hero-bg:   radial-gradient(ellipse at 65% 35%, rgba(192,40,40,0.14) 0%, transparent 60%),
                    radial-gradient(ellipse at 25% 75%, rgba(212,168,67,0.10) 0%, transparent 55%),
                    radial-gradient(ellipse at 50% 50%, rgba(17,17,37,0.6) 0%, transparent 80%);
  --grad-section:   linear-gradient(180deg, rgba(7,7,14,0) 0%, rgba(12,12,26,0.6) 100%);
  --grad-card:      linear-gradient(145deg, rgba(23,23,46,0.9) 0%, rgba(14,14,28,0.95) 100%);

  /* Shadows */
  --shadow-gold:    0 0 24px rgba(212,168,67,0.20), 0 8px 32px rgba(0,0,0,0.60);
  --shadow-card:    0 4px 24px rgba(0,0,0,0.55), 0 1px 0 rgba(212,168,67,0.08) inset;
  --shadow-btn:     0 4px 20px rgba(192,40,40,0.35), 0 2px 8px rgba(0,0,0,0.4);
  --shadow-btn-g:   0 4px 20px rgba(212,168,67,0.30), 0 2px 8px rgba(0,0,0,0.4);

  /* Radius */
  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-pill:50px;

  /* Spacing */
  --gap:   clamp(60px, 8vw, 100px);

  /* Transition */
  --ease:  cubic-bezier(0.22, 0.68, 0, 1.2);
  --ease-s:cubic-bezier(0.4, 0, 0.2, 1);

  /* Typography scale */
  --font-display: 'Cinzel', 'Georgia', serif;
  --font-body:    'Jost', 'Segoe UI', sans-serif;
}

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

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

body {
  background-color: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

/* Ambient background grain texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--c-gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--c-gold-bright); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Selection color */
::selection { background: rgba(212,168,67,0.30); color: var(--c-gold-bright); }

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* ---- 2. TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-text);
}

h1 { font-size: clamp(1.9rem, 4.5vw, 3.2rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); letter-spacing: 0.01em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }

.text-gold { color: var(--c-gold); }
.text-red  { color: var(--c-red-bright); }
.text-sub  { color: var(--c-text-sub); }
.text-muted{ color: var(--c-text-muted); font-size: 0.875rem; }

/* Decorative section label */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--grad-gold);
}
.section-label::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--grad-gold);
}

/* Heading underline accent */
.heading-accent {
  position: relative;
  display: inline-block;
}
.heading-accent::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--grad-gold-h);
  border-radius: 2px;
  opacity: 0.7;
}

/* ---- 3. LAYOUT ---- */
.container {
  width: min(1200px, 94vw);
  margin: 0 auto;
}

.section {
  padding: var(--gap) 0;
  position: relative;
  z-index: 1;
}

.section--alt {
  background:
    linear-gradient(180deg, transparent 0%, rgba(17,17,37,0.5) 50%, transparent 100%);
}

.section--dark {
  background: var(--c-bg-alt);
}

/* Section divider */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212,168,67,0.2) 30%, rgba(212,168,67,0.4) 50%, rgba(212,168,67,0.2) 70%, transparent 100%);
  margin: 0;
}

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ---- 4. BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease-s), opacity 0.2s;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::before { opacity: 1; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--grad-red);
  color: #fff;
  box-shadow: var(--shadow-btn);
  border: 1px solid rgba(224,53,53,0.4);
}
.btn-primary:hover { box-shadow: 0 6px 28px rgba(192,40,40,0.50), 0 2px 10px rgba(0,0,0,0.5); color: #fff; }

.btn-gold {
  background: var(--grad-gold);
  color: #1a0e00;
  box-shadow: var(--shadow-btn-g);
  border: 1px solid rgba(245,208,96,0.3);
}
.btn-gold:hover { box-shadow: 0 6px 28px rgba(212,168,67,0.45), 0 2px 10px rgba(0,0,0,0.5); color: #1a0e00; }

.btn-outline {
  background: transparent;
  color: var(--c-gold);
  border: 1px solid rgba(212,168,67,0.45);
  box-shadow: none;
}
.btn-outline:hover { background: rgba(212,168,67,0.08); color: var(--c-gold-bright); }

.btn-sm { padding: 9px 20px; font-size: 0.8rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

.btn-arrow::after {
  content: '→';
  font-size: 1.1em;
  transition: transform 0.2s;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ---- 5. CARDS ---- */
.card {
  background: var(--grad-card);
  border: var(--border-gold);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease-s), border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,168,67,0.4), transparent);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(212,168,67,0.35);
}

/* ---- 6. HEADER ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease-s), box-shadow 0.4s var(--ease-s), height 0.3s;
  background: transparent;
}

.site-header.scrolled {
  background: rgba(7,7,14,0.96);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5), 0 1px 0 rgba(212,168,67,0.12);
  height: 64px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
}

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header-logo img { height: 44px; width: auto; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header-nav a {
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--c-text-sub);
  border-radius: var(--r-sm);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.header-nav a:hover { color: var(--c-gold); background: rgba(212,168,67,0.07); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-social {
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-social a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(212,168,67,0.15);
  transition: border-color 0.2s, background 0.2s;
}
.header-social a:hover { border-color: rgba(212,168,67,0.4); background: rgba(212,168,67,0.08); }
.header-social img { width: 16px; height: 16px; }

/* Burger */
.burger-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  border: var(--border-gold);
  background: transparent;
  transition: background 0.2s;
}
.burger-btn:hover { background: rgba(212,168,67,0.08); }
.burger-btn img { width: 22px; height: 22px; }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }

.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,7,14,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.mobile-menu__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 360px;
  height: 100%;
  background: var(--c-surface);
  border-right: var(--border-gold);
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  overflow-y: auto;
}

.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}

.mobile-menu__close {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: var(--border-gold);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: auto;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-radius: var(--r-md);
  color: var(--c-text-sub);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
  border: 1px solid transparent;
}
.mobile-nav a:hover {
  color: var(--c-gold);
  background: rgba(212,168,67,0.07);
  border-color: rgba(212,168,67,0.12);
}
.mobile-nav a img { width: 20px; height: 20px; opacity: 0.7; }

.mobile-menu__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: var(--border-subtle);
}
.mobile-menu__actions .btn { width: 100%; justify-content: center; }

/* ---- 7. HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--c-bg);
  z-index: 0;
}
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-hero-bg);
}
.hero__bg::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(192,40,40,0.06) 0%, transparent 70%);
}

/* Animated stars */
.hero__stars {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero__stars span {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--c-gold);
  border-radius: 50%;
  animation: twinkle var(--dur, 4s) var(--delay, 0s) infinite alternate ease-in-out;
  opacity: var(--op, 0.4);
}

@keyframes twinkle {
  0%  { opacity: 0.1; transform: scale(0.8); }
  100%{ opacity: 0.8; transform: scale(1.4); }
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(192,40,40,0.15);
  border: 1px solid rgba(192,40,40,0.35);
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-red-bright);
  width: fit-content;
}
.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-red-bright);
  box-shadow: 0 0 6px var(--c-red-bright);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 4px var(--c-red-bright); }
  50%       { box-shadow: 0 0 10px var(--c-red-bright); }
}

.hero__h1 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.hero__h1 .accent {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--c-text-sub);
  line-height: 1.65;
  max-width: 500px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 8px;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: var(--c-text-sub);
  font-weight: 500;
}
.hero__trust-item .checkmark {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(212,168,67,0.15);
  border: 1px solid rgba(212,168,67,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--c-gold);
  flex-shrink: 0;
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__visual-img {
  width: 100%;
  max-width: 560px;
  border-radius: var(--r-xl);
  border: var(--border-gold);
  box-shadow: var(--shadow-gold);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* Glow ring behind visual */
.hero__glow-ring {
  position: absolute;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(192,40,40,0.12) 0%, transparent 70%);
  filter: blur(30px);
  z-index: -1;
}

/* ---- 8. QUICK FACTS ---- */
.quick-facts {
  padding: 60px 0;
  background: var(--c-bg-alt);
  border-top: var(--border-subtle);
  border-bottom: var(--border-subtle);
}

.quick-facts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.fact-card {
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  position: relative;
}
.fact-card + .fact-card::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(212,168,67,0.12);
}
.fact-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(212,168,67,0.08);
  border: 1px solid rgba(212,168,67,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.fact-card__value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-gold-bright);
  line-height: 1;
}
.fact-card__label {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  letter-spacing: 0.05em;
  line-height: 1.3;
}

@media (max-width: 900px) {
  .quick-facts__grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 700px) {
  .quick-facts__grid { grid-template-columns: repeat(2, 1fr); }
  .fact-card:nth-child(2n+1)::before { display: none; }
}

/* ---- 9. INTRO / ABOUT ---- */
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: start;
}

.intro__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.intro__body p {
  font-size: 1.02rem;
  line-height: 1.78;
  color: var(--c-text-sub);
}
.intro__body p strong { color: var(--c-text); font-weight: 600; }

.intro__sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-card {
  background: var(--grad-card);
  border: var(--border-gold);
  border-radius: var(--r-lg);
  padding: 22px;
  box-shadow: var(--shadow-card);
}
.sidebar-card h4 {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 14px;
}
.sidebar-card ul { display: flex; flex-direction: column; gap: 10px; }
.sidebar-card li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.sidebar-card li:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-card li span:first-child { color: var(--c-text-muted); }
.sidebar-card li span:last-child  { color: var(--c-text); font-weight: 500; text-align: right; }

@media (max-width: 960px) {
  .intro__grid { grid-template-columns: 1fr; }
  .intro__sidebar { position: static; }
}

/* ---- 10. MIRROR SECTION ---- */
.mirror__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.mirror__alert {
  background: rgba(192,40,40,0.08);
  border: 1px solid rgba(192,40,40,0.25);
  border-left: 3px solid var(--c-red-bright);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--c-text-sub);
  margin-bottom: 24px;
}
.mirror__alert strong { color: var(--c-red-bright); }

.checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--c-text-sub);
  line-height: 1.5;
}
.checklist li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(212,168,67,0.12);
  border: 1px solid rgba(212,168,67,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--c-gold);
  margin-top: 2px;
}

.mirror__cta-box {
  background: linear-gradient(135deg, rgba(17,17,37,0.95), rgba(23,23,46,0.9));
  border: var(--border-gold);
  border-radius: var(--r-xl);
  padding: 36px 30px;
  text-align: center;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.mirror__cta-box h3 { color: var(--c-gold); margin-bottom: 8px; }
.mirror__cta-box p  { color: var(--c-text-sub); font-size: 0.92rem; line-height: 1.6; }

@media (max-width: 768px) {
  .mirror__inner { grid-template-columns: 1fr; }
}

/* ---- 11. STEPS (REGISTRATION / LOGIN) ---- */
.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  counter-reset: step;
}
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px;
  background: var(--grad-card);
  border: var(--border-subtle);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.step:hover {
  border-color: rgba(212,168,67,0.25);
  transform: translateX(4px);
}
.step__num {
  counter-increment: step;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #1a0e00;
  box-shadow: 0 0 14px rgba(212,168,67,0.25);
}
.step__body h4 { color: var(--c-text); margin-bottom: 6px; font-size: 1rem; }
.step__body p  { color: var(--c-text-sub); font-size: 0.9rem; line-height: 1.6; margin: 0; }

.section__two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
@media (max-width: 768px) {
  .section__two-col { grid-template-columns: 1fr; }
}

/* ---- 12. BONUSES ---- */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 768px) { .bonus-grid { grid-template-columns: 1fr; } }

.bonus-card {
  background: var(--grad-card);
  border: var(--border-gold);
  border-radius: var(--r-xl);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease-s);
}
.bonus-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.bonus-card__featured {
  position: absolute;
  top: 14px; right: 14px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a0e00;
  background: var(--grad-gold);
  padding: 4px 10px;
  border-radius: var(--r-pill);
}
.bonus-card__icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
  line-height: 1;
}
.bonus-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--c-gold);
  margin-bottom: 8px;
}
.bonus-card__value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--c-text);
  line-height: 1.1;
  margin-bottom: 12px;
}
.bonus-card__desc {
  font-size: 0.87rem;
  color: var(--c-text-sub);
  line-height: 1.55;
}

/* Bonus table */
.bonus-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-top: 30px;
  overflow: hidden;
  border-radius: var(--r-lg);
}
.bonus-table th {
  background: rgba(212,168,67,0.10);
  color: var(--c-gold);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(212,168,67,0.2);
}
.bonus-table td {
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--c-text-sub);
  vertical-align: middle;
}
.bonus-table tr:last-child td { border-bottom: none; }
.bonus-table tr:hover td { background: rgba(212,168,67,0.03); color: var(--c-text); }
.bonus-table .td-name { color: var(--c-text); font-weight: 500; }
.bonus-table .td-val  { color: var(--c-gold-bright); font-weight: 600; }
.bonus-table .badge   {
  display: inline-block;
  padding: 3px 9px;
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  font-weight: 600;
}
.badge--green { background: rgba(50,180,80,0.12); color: #60e080; border: 1px solid rgba(50,180,80,0.2); }
.badge--gold  { background: rgba(212,168,67,0.12); color: var(--c-gold); border: 1px solid rgba(212,168,67,0.25); }
.badge--red   { background: rgba(192,40,40,0.12); color: var(--c-red-bright); border: 1px solid rgba(192,40,40,0.25); }

/* ---- 13. PAYMENTS ---- */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.payment-item {
  background: var(--grad-card);
  border: var(--border-subtle);
  border-radius: var(--r-md);
  padding: 18px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--c-text-muted);
  transition: border-color 0.2s, transform 0.2s;
  cursor: default;
}
.payment-item:hover {
  border-color: rgba(212,168,67,0.25);
  transform: translateY(-3px);
  color: var(--c-text-sub);
}
.payment-item__icon {
  font-size: 1.8rem;
  line-height: 1;
}
.payment-item__name { font-weight: 500; }
.payment-item__speed {
  font-size: 0.72rem;
  color: var(--c-gold-dark);
}

/* Payment info cards row */
.payment-info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.payment-info-card {
  background: rgba(212,168,67,0.04);
  border: var(--border-gold);
  border-radius: var(--r-md);
  padding: 20px;
}
.payment-info-card h4 { font-size: 0.88rem; color: var(--c-gold); margin-bottom: 8px; }
.payment-info-card p  { font-size: 0.86rem; color: var(--c-text-sub); margin: 0; line-height: 1.55; }

@media (max-width: 600px) {
  .payment-info-row { grid-template-columns: 1fr; }
}

/* ---- 14. WITHDRAWAL ---- */
.withdrawal__grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 50px;
  align-items: start;
}
@media (max-width: 900px) { .withdrawal__grid { grid-template-columns: 1fr; } }

.tip-box {
  background: rgba(212,168,67,0.05);
  border: var(--border-gold);
  border-radius: var(--r-lg);
  padding: 24px;
}
.tip-box h4 {
  color: var(--c-gold);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.tip-box ul { display: flex; flex-direction: column; gap: 10px; }
.tip-box li {
  font-size: 0.88rem;
  color: var(--c-text-sub);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.tip-box li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--c-gold);
  font-weight: 700;
}

/* ---- 15. GAMES ---- */
/* (see also games.css) */
.games-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.category-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.category-pill {
  padding: 7px 16px;
  border-radius: var(--r-pill);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: var(--border-subtle);
  color: var(--c-text-muted);
  transition: all 0.2s;
  background: transparent;
}
.category-pill:hover,
.category-pill.active {
  background: rgba(212,168,67,0.10);
  border-color: rgba(212,168,67,0.35);
  color: var(--c-gold);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
@media (max-width: 500px) { .games-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* ---- 16. MOBILE SECTION ---- */
.mobile-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) { .mobile-section__inner { grid-template-columns: 1fr; } }

.mobile-phone-mockup {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.phone-frame {
  width: 220px;
  height: 420px;
  border-radius: 36px;
  border: 2px solid rgba(212,168,67,0.35);
  background: var(--c-surface);
  box-shadow: var(--shadow-gold), inset 0 0 40px rgba(212,168,67,0.04);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-frame::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  border-radius: 2px;
  background: rgba(212,168,67,0.3);
}
.phone-screen {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 32px 14px 16px;
  background: var(--grad-hero-bg);
  background-color: var(--c-bg);
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.phone-screen__logo {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--c-gold);
  letter-spacing: 0.1em;
}
.phone-screen__demo {
  width: 100%;
  background: rgba(212,168,67,0.06);
  border: var(--border-gold);
  border-radius: var(--r-md);
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.phone-screen__text {
  font-size: 0.7rem;
  color: var(--c-text-muted);
  text-align: center;
  line-height: 1.4;
}
.phone-screen .btn-sm { font-size: 0.68rem; padding: 8px 14px; }
.phone-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(212,168,67,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.mobile__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}
.mobile__feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--grad-card);
  border: var(--border-subtle);
  border-radius: var(--r-md);
  font-size: 0.9rem;
  color: var(--c-text-sub);
  transition: border-color 0.2s;
}
.mobile__feature:hover { border-color: rgba(212,168,67,0.2); }
.mobile__feature-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.app-badges {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.app-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--grad-card);
  border: var(--border-gold);
  border-radius: var(--r-md);
  transition: border-color 0.2s, transform 0.2s;
}
.app-badge:hover { border-color: rgba(212,168,67,0.4); transform: translateY(-2px); }
.app-badge img  { width: 28px; height: 28px; }
.app-badge__text { display: flex; flex-direction: column; }
.app-badge__line1 { font-size: 0.68rem; color: var(--c-text-muted); line-height: 1; }
.app-badge__line2 { font-size: 0.9rem; font-weight: 600; color: var(--c-text); line-height: 1.3; }

/* ---- 17. WHY US ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  background: var(--grad-card);
  border: var(--border-subtle);
  border-radius: var(--r-xl);
  padding: 30px 24px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-s);
}
.why-card:hover {
  border-color: rgba(212,168,67,0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.why-card:hover::after { transform: scaleX(1); }

.why-card__icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}
.why-card h3 { font-size: 1.05rem; color: var(--c-gold); margin-bottom: 10px; }
.why-card p  { font-size: 0.88rem; color: var(--c-text-sub); line-height: 1.6; margin: 0; }

/* ---- 18. SAFETY ---- */
.safety__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
@media (max-width: 768px) { .safety__grid { grid-template-columns: 1fr; } }

.safety-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: #f2eedc;
  background: rgba(192,40,40,0.15);
  border: 1px solid rgba(192,40,40,0.4);
}
.safety-badge .icon { font-size: 1.1rem; }

.safety-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.safety-item {
  display: flex;
  gap: 16px;
  padding: 18px;
  background: var(--grad-card);
  border: var(--border-subtle);
  border-radius: var(--r-md);
}
.safety-item__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.safety-item h4 { font-size: 0.95rem; color: var(--c-text); margin-bottom: 5px; }
.safety-item p  { font-size: 0.86rem; color: var(--c-text-sub); line-height: 1.55; margin: 0; }

/* ---- 19. FAQ ---- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--grad-card);
  border: var(--border-subtle);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open {
  border-color: rgba(212,168,67,0.25);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--c-text);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--c-gold); }
.faq-item.open .faq-question { color: var(--c-gold); }

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(212,168,67,0.08);
  border: 1px solid rgba(212,168,67,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--c-gold);
  transition: transform 0.3s var(--ease-s), background 0.2s;
  line-height: 1;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(212,168,67,0.15);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 22px;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 18px;
}
.faq-answer p {
  font-size: 0.9rem;
  color: var(--c-text-sub);
  line-height: 1.7;
  margin: 0;
}

/* ---- 20. FINAL CTA ---- */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: var(--gap) 0;
}
.final-cta__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(192,40,40,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(212,168,67,0.08) 0%, transparent 60%);
}
.final-cta__border-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212,168,67,0.3) 30%, rgba(212,168,67,0.5) 50%, rgba(212,168,67,0.3) 70%, transparent 100%);
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.final-cta__inner h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  margin-bottom: 16px;
}
.final-cta__inner p {
  font-size: 1.05rem;
  color: var(--c-text-sub);
  margin-bottom: 32px;
  line-height: 1.65;
}
.final-cta__btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.final-cta__note {
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--c-text-muted);
}

/* ---- 21. FOOTER ---- */
.site-footer {
  background: var(--c-bg-alt);
  border-top: var(--border-subtle);
  padding: 60px 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: var(--border-subtle);
}
@media (max-width: 960px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer__top { grid-template-columns: 1fr; }
}

.footer__brand { display: flex; flex-direction: column; gap: 14px; }
.footer__brand img { height: 40px; width: auto; }
.footer__brand p  { font-size: 0.84rem; color: var(--c-text-muted); line-height: 1.6; }

.footer__col h5 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.footer__col li a {
  font-size: 0.86rem;
  color: var(--c-text-muted);
  transition: color 0.2s;
}
.footer__col li a:hover { color: var(--c-text-sub); }

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.footer__social a:hover { border-color: rgba(212,168,67,0.3); background: rgba(212,168,67,0.06); }
.footer__social img { width: 18px; height: 18px; }

.footer__bottom {
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--c-text-dim);
}

.footer__links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__links a {
  font-size: 0.8rem;
  color: var(--c-text-dim);
}
.footer__links a:hover { color: var(--c-text-muted); }

.footer__age-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-red-dark);
  border: 2px solid var(--c-red);
  font-size: 0.72rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}

.footer__disclaimer {
  width: 100%;
  font-size: 0.78rem;
  color: var(--c-text-dim);
  line-height: 1.6;
  padding-top: 16px;
  border-top: var(--border-subtle);
  margin-top: 8px;
}

/* ---- 22. SCROLL TO TOP ---- */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(212,168,67,0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s var(--ease);
  font-size: 1.1rem;
  color: #1a0e00;
  font-weight: 700;
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(212,168,67,0.45);
}

/* ---- 23. ANIMATIONS ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

.anim-fade-up { animation: fadeInUp 0.7s var(--ease-s) both; }
.anim-fade    { animation: fadeIn  0.5s var(--ease-s) both; }
.anim-delay-1 { animation-delay: 0.15s; }
.anim-delay-2 { animation-delay: 0.30s; }
.anim-delay-3 { animation-delay: 0.45s; }
.anim-delay-4 { animation-delay: 0.60s; }

/* Scroll-triggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-s), transform 0.65s var(--ease-s);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---- 24. UTILITY ---- */
.text-center { text-align: center; }
.mt-4  { margin-top: 16px; }
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4  { margin-bottom: 16px; }
.mb-6  { margin-bottom: 24px; }
.mb-8  { margin-bottom: 32px; }

/* Section heading block */
.section-head {
  margin-bottom: clamp(32px, 4vw, 56px);
}
.section-head.centered { text-align: center; }
.section-head h2 { margin-bottom: 12px; }
.section-head p  { font-size: 1.02rem; color: var(--c-text-sub); max-width: 600px; line-height: 1.7; }
.section-head.centered p { margin: 0 auto; }

/* Info note block */
.info-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 18px;
  background: rgba(212,168,67,0.05);
  border: var(--border-gold);
  border-radius: var(--r-md);
  font-size: 0.87rem;
  color: var(--c-text-sub);
  line-height: 1.55;
  margin-top: 20px;
}
.info-note__icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }

/* Responsive nav display */
@media (max-width: 1000px) {
  .header-nav { display: none; }
}
@media (max-width: 900px) {
  .burger-btn { display: flex; }
}
@media (max-width: 768px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .hero { min-height: auto; padding: 120px 0 60px; }
  :root { --gap: 50px; }
}
@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; width: 100%; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
}
