@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-deep: #060a10;
  --bg-main: #0c1219;
  --bg-card: #111a24;
  --bg-elevated: #162030;
  --border-glow: rgba(240, 180, 41, 0.35);
  --accent-gold: #f0b429;
  --accent-copper: #c9842b;
  --accent-amber: #e8940a;
  --accent-teal: #14b8a6;
  --accent-emerald: #059669;
  --text-primary: #f5f0e8;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --gradient-gold: linear-gradient(135deg, #fde68a 0%, #f0b429 45%, #c9842b 100%);
  --gradient-cta: linear-gradient(90deg, #f59e0b 0%, #fbbf24 50%, #f59e0b 100%);
  --gradient-promo-1: linear-gradient(135deg, #f97316 0%, #fbbf24 100%);
  --gradient-promo-2: linear-gradient(135deg, #ec4899 0%, #8b5cf6 50%, #06b6d4 100%);
  --gradient-promo-3: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  --shadow-glow: 0 0 30px rgba(240, 180, 41, 0.15);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --header-h: 72px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(20, 184, 166, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(240, 180, 41, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 10% 80%, rgba(99, 102, 241, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

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

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

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

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.08em;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gradient-gold);
  color: #1a1208;
  box-shadow: 0 4px 20px rgba(240, 180, 41, 0.35);
}

.btn-gold:hover {
  box-shadow: 0 6px 28px rgba(240, 180, 41, 0.5);
}

.btn-outline {
  border: 1.5px solid rgba(240, 180, 41, 0.5);
  color: var(--accent-gold);
  background: rgba(240, 180, 41, 0.06);
}

.btn-outline:hover {
  background: rgba(240, 180, 41, 0.12);
  border-color: var(--accent-gold);
}

.btn-dark {
  background: #0a0f14;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-lg {
  padding: 0.9rem 2.2rem;
  font-size: 1rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 100;
  background: rgba(6, 10, 16, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(240, 180, 41, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.header__logo img {
  height: 40px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

.nav__link:hover {
  color: var(--accent-gold);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--accent-gold);
  border-radius: 2px;
  transition: 0.3s;
}

/* Hero */
.hero {
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  text-align: center;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 0 30px rgba(240, 180, 41, 0.3));
}

.hero__subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* Slot Machine */
.slot-wrapper {
  max-width: 680px;
  margin: 0 auto;
}

.slot-machine {
  background: linear-gradient(180deg, #121a28 0%, #0e1520 100%);
  border: 2px solid rgba(240, 180, 41, 0.45);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow:
    0 0 40px rgba(240, 180, 41, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.slot-machine__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.slot-balance {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(240, 180, 41, 0.2);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  justify-self: start;
}

.slot-balance img {
  width: 22px;
  height: 22px;
}

.slot-balance span {
  font-weight: 700;
  color: var(--accent-gold);
  font-size: 1rem;
}

.slot-last-win {
  text-align: center;
}

.slot-last-win__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 0.15rem;
}

.slot-last-win__value {
  font-weight: 700;
  color: var(--accent-teal);
  font-size: 1.1rem;
}

.slot-bet-display {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  justify-self: end;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.slot-bet-display strong {
  color: var(--text-primary);
}

.slot-reels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(240, 180, 41, 0.25);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  min-height: 180px;
}

.slot-reel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0a1018 0%, #141e2e 50%, #0a1018 100%);
  border: 1.5px solid rgba(240, 180, 41, 0.3);
  border-radius: var(--radius-md);
  height: 150px;
}

.slot-reel__strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: none;
}

.slot-reel__strip.spinning {
  transition: transform 0.1s linear;
}

.slot-reel__symbol {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.slot-reel__symbol img {
  width: 72px;
  height: 72px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.slot-reel.winner {
  animation: reelWin 0.6s ease-in-out 3;
  border-color: var(--accent-gold);
  box-shadow: 0 0 20px rgba(240, 180, 41, 0.4);
}

@keyframes reelWin {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.slot-message {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  min-height: 1.5em;
}

.slot-message.win {
  color: var(--accent-gold);
  animation: pulse 0.5s ease;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.slot-controls {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.slot-bet-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-self: start;
}

.slot-bet-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.2);
  border: 1px solid rgba(99, 102, 241, 0.4);
  color: var(--text-primary);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.slot-bet-btn:hover {
  background: rgba(99, 102, 241, 0.35);
}

.slot-bet-box {
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-sm);
  padding: 0.35rem 1rem;
  min-width: 80px;
}

.slot-bet-box__label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}

.slot-bet-box__value {
  font-weight: 700;
  color: var(--accent-gold);
  font-size: 1.1rem;
}

.slot-spin-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.5rem;
  background: var(--gradient-cta);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1208;
  box-shadow:
    0 0 30px rgba(245, 158, 11, 0.45),
    0 4px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.15s, box-shadow 0.15s;
}

.slot-spin-btn:hover:not(:disabled) {
  transform: scale(1.04);
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.6);
}

.slot-spin-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.slot-spin-btn svg {
  width: 24px;
  height: 24px;
}

.slot-reload {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(240, 180, 41, 0.2);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s;
}

.slot-reload:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.slot-reload img {
  width: 18px;
  height: 18px;
}

/* Jackpots */
.jackpots {
  padding: 3rem 0;
}

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

.jackpot-card {
  background: var(--bg-card);
  border: 1px solid rgba(240, 180, 41, 0.12);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

.jackpot-card:hover {
  border-color: rgba(240, 180, 41, 0.35);
  transform: translateY(-3px);
}

.jackpot-card__icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 0.5rem;
}

.jackpot-card__value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.jackpot-card__label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
}

/* Games */
.games {
  padding: 4rem 0;
}

.games__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.game-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(240, 180, 41, 0.15);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem 1rem;
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.game-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(240, 180, 41, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 180, 41, 0.4);
  box-shadow: var(--shadow-glow);
}

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

.game-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
}

.game-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.game-card__play {
  position: relative;
  z-index: 1;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-gold);
  padding: 0.35rem 1rem;
  border: 1px solid rgba(240, 180, 41, 0.3);
  border-radius: 999px;
  transition: background 0.2s;
}

.game-card:hover .game-card__play {
  background: rgba(240, 180, 41, 0.12);
}

/* Promotions */
.promos {
  padding: 4rem 0;
}

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

.promo-card {
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s;
}

.promo-card:hover {
  transform: translateY(-4px);
}

.promo-card--1 { background: var(--gradient-promo-1); color: #1a1208; }
.promo-card--2 { background: var(--gradient-promo-2); color: #fff; }
.promo-card--3 {
  background: var(--gradient-promo-3);
  color: var(--text-primary);
  border: 1px solid rgba(240, 180, 41, 0.2);
}

.promo-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.promo-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.promo-card__text {
  font-size: 0.88rem;
  opacity: 0.85;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.promo-card .btn {
  align-self: flex-start;
}

.promo-card--1 .btn,
.promo-card--2 .btn {
  background: rgba(0, 0, 0, 0.25);
  color: inherit;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.promo-card--3 .btn {
  background: var(--gradient-gold);
  color: #1a1208;
}

/* Leaderboard */
.leaderboard {
  padding: 4rem 0;
}

.leaderboard__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.leaderboard__info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  letter-spacing: 0.06em;
}

.leaderboard__info p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 400px;
}

.leaderboard__stats {
  display: flex;
  gap: 2rem;
}

.leaderboard__stat-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.leaderboard__stat-label {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.leaderboard__list {
  background: var(--bg-card);
  border: 1px solid rgba(240, 180, 41, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.leaderboard__item {
  display: grid;
  grid-template-columns: 40px 40px 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.2s;
}

.leaderboard__item:last-child {
  border-bottom: none;
}

.leaderboard__item:hover {
  background: rgba(240, 180, 41, 0.04);
}

.leaderboard__item--top {
  background: rgba(240, 180, 41, 0.06);
}

.leaderboard__rank {
  font-weight: 700;
  color: var(--accent-gold);
  font-size: 0.95rem;
}

.leaderboard__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-emerald));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
}

.leaderboard__name {
  font-weight: 500;
  font-size: 0.92rem;
}

.leaderboard__prize {
  font-weight: 700;
  color: var(--accent-gold);
  font-size: 0.92rem;
}

/* Features */
.features {
  padding: 4rem 0;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-card {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid rgba(240, 180, 41, 0.1);
  border-radius: var(--radius-md);
  transition: border-color 0.3s, transform 0.3s;
}

.feature-card:hover {
  border-color: rgba(240, 180, 41, 0.3);
  transform: translateY(-4px);
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: rgba(240, 180, 41, 0.08);
  border: 1px solid rgba(240, 180, 41, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.feature-card__title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.feature-card__text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* CTA */
.cta-banner {
  padding: 3rem 0 5rem;
}

.cta-banner__inner {
  background: var(--gradient-cta);
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 8px 40px rgba(245, 158, 11, 0.25);
}

.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #1a1208;
  margin-bottom: 1.5rem;
  letter-spacing: 0.06em;
}

.cta-banner .btn-dark {
  font-size: 1rem;
  padding: 0.9rem 2.5rem;
  font-weight: 700;
  border: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
  background: var(--bg-main);
  border-top: 1px solid rgba(240, 180, 41, 0.08);
  padding: 3.5rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer__brand img {
  height: 32px;
  margin-bottom: 1rem;
}

.footer__brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(240, 180, 41, 0.08);
  border: 1px solid rgba(240, 180, 41, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--accent-gold);
  transition: background 0.2s;
}

.footer__social a:hover {
  background: rgba(240, 180, 41, 0.18);
}

.footer__col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.footer__col ul {
  list-style: none;
}

.footer__col li {
  margin-bottom: 0.5rem;
}

.footer__col a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer__col a:hover {
  color: var(--text-primary);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 0;
}

.footer__responsible {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 420px;
}

.footer__responsible img {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.footer__responsible p {
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.4;
}

.footer__settings {
  display: flex;
  gap: 0.75rem;
}

.footer__select {
  background: var(--bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.75rem;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-family: inherit;
}

.footer__copy {
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-dim);
  padding-bottom: 1.5rem;
}

/* Modals */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--bg-card);
  border: 1px solid rgba(240, 180, 41, 0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-glow);
  transform: scale(0.95);
  transition: transform 0.3s;
}

.modal-overlay.active .modal {
  transform: scale(1);
}

.modal__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
}

.modal h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--accent-gold);
}

.modal p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.modal__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.modal__actions .btn {
  flex: 1;
  max-width: 160px;
}

/* Cookie bar */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(12, 18, 25, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(240, 180, 41, 0.15);
  padding: 1rem 0;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s;
}

.cookie-bar.active {
  transform: translateY(0);
}

.cookie-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-bar p {
  font-size: 0.85rem;
  color: var(--text-muted);
  flex: 1;
  min-width: 200px;
}

.cookie-bar__actions {
  display: flex;
  gap: 0.75rem;
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: rgba(6, 10, 16, 0.97);
  backdrop-filter: blur(16px);
  padding: 1.5rem;
  border-bottom: 1px solid rgba(240, 180, 41, 0.1);
  z-index: 99;
  transform: translateY(-110%);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-nav.active {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav a {
  display: block;
  padding: 0.75rem 0;
  font-size: 1rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav a:hover {
  color: var(--accent-gold);
}

/* Responsive */
@media (max-width: 1024px) {
  .jackpots__grid { grid-template-columns: repeat(2, 1fr); }
  .games__grid { grid-template-columns: repeat(2, 1fr); }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .leaderboard__inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav, .header__actions { display: none; }
  .burger { display: flex; }
  .promos__grid { grid-template-columns: 1fr; }
  .slot-controls { grid-template-columns: 1fr; justify-items: center; gap: 1.25rem; }
  .slot-bet-controls, .slot-reload { justify-self: center; }
  .slot-machine__top { grid-template-columns: 1fr; justify-items: center; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__responsible { flex-direction: column; text-align: center; align-items: center; }
}

@media (max-width: 480px) {
  .jackpots__grid { grid-template-columns: 1fr 1fr; }
  .games__grid { grid-template-columns: 1fr 1fr; }
  .slot-reels { gap: 0.5rem; padding: 0.75rem; }
  .slot-reel { height: 120px; }
  .slot-reel__symbol { height: 120px; }
  .slot-reel__symbol img { width: 56px; height: 56px; }
}

/* Inner pages */
.page-hero {
  padding: calc(var(--header-h) + 3rem) 0 2.5rem;
  text-align: center;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
}

.page-hero__subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.page-content {
  padding: 2rem 0 5rem;
}

.page-content .container {
  max-width: 860px;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent-gold);
  margin: 2rem 0 1rem;
  letter-spacing: 0.04em;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.prose ul, .prose ol {
  color: var(--text-muted);
  margin: 0 0 1.25rem 1.25rem;
  line-height: 1.7;
}

.prose li {
  margin-bottom: 0.4rem;
}

.prose a {
  color: var(--accent-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid rgba(240, 180, 41, 0.12);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.info-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.info-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

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

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(240, 180, 41, 0.1);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
}

.faq-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.faq-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: rgba(240, 180, 41, 0.4);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info__item {
  background: var(--bg-card);
  border: 1px solid rgba(240, 180, 41, 0.1);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.contact-info__item h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 0.35rem;
}

.contact-info__item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

.game-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}

.game-showcase__item {
  background: var(--bg-card);
  border: 1px solid rgba(240, 180, 41, 0.12);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

.game-showcase__item:hover {
  border-color: rgba(240, 180, 41, 0.35);
  transform: translateY(-4px);
}

.game-showcase__item img {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.75rem;
}

.game-showcase__item h3 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.game-showcase__item p {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin: 0;
}

.page-cta {
  margin-top: 2.5rem;
  text-align: center;
}

@media (max-width: 768px) {
  .info-cards, .contact-grid, .game-showcase { grid-template-columns: 1fr; }
}

/* Auth pages */
.auth-section {
  padding: calc(var(--header-h) + 3rem) 0 5rem;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.auth-card {
  width: min(440px, 92%);
  background: var(--bg-card);
  border: 1px solid rgba(240, 180, 41, 0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-glow);
}

.auth-card__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}

.auth-card__subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.auth-form label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.35rem;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="date"] {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color 0.2s;
}

.auth-form input:focus {
  outline: none;
  border-color: rgba(240, 180, 41, 0.4);
}

.auth-form__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.auth-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
  cursor: pointer;
}

.auth-checkbox input {
  margin-top: 0.2rem;
  accent-color: var(--accent-gold);
  flex-shrink: 0;
}

.auth-checkbox a {
  color: var(--accent-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.auth-link {
  font-size: 0.82rem;
  color: var(--accent-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.auth-form .btn-gold {
  width: 100%;
  padding: 0.85rem;
  margin-top: 0.5rem;
  font-size: 1rem;
}

.auth-card__footer {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
  color: var(--text-muted);
}

.auth-card__footer a {
  color: var(--accent-gold);
  font-weight: 600;
  text-decoration: none;
}

.auth-card__footer a:hover {
  text-decoration: underline;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0.5rem 0;
  color: var(--text-dim);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}
