/* ============================================================
   EVA CASINO — MAIN STYLESHEET
   Dark green-black palette · Gold accents · Glossy cards
   ============================================================ */

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

:root {
  --bg-dark:       #050c05;
  --bg-mid:        #0b180b;
  --bg-card:       #0f200f;
  --bg-card2:      #121e12;
  --gold:          #c9a02e;
  --gold-light:    #f0c04a;
  --gold-dim:      #7a6018;
  --gold-grad:     linear-gradient(135deg, #a07020 0%, #f0c04a 50%, #a07020 100%);
  --green:         #1a7a38;
  --green-bright:  #22d45a;
  --red:           #c93030;
  --white:         #ffffff;
  --off-white:     #d8e8d8;
  --gray:          #7a9a7a;
  --gray-dark:     #2a3a2a;
  --border-gold:   rgba(201,160,46,0.35);
  --border-green:  rgba(34,212,90,0.2);
  --glow-gold:     0 0 24px rgba(201,160,46,0.3);
  --glow-green:    0 0 24px rgba(34,212,90,0.2);
  --sidebar-w:     230px;
  --header-h:      68px;
  --radius:        12px;
  --radius-sm:     8px;
  --trans:         0.28s ease;
}

/* ── Base ── */
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg-dark);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.2;
}

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: linear-gradient(180deg, rgba(5,12,5,0.98) 0%, rgba(5,12,5,0.92) 100%);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 1000;
  gap: 16px;
}

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

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

.header__logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.03em;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.btn-login {
  padding: 8px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-gold);
  background: transparent;
  color: var(--gold-light);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--trans);
  white-space: nowrap;
}
.btn-login:hover {
  background: rgba(201,160,46,0.12);
  border-color: var(--gold);
  box-shadow: var(--glow-gold);
}

.btn-register {
  padding: 8px 22px;
  border-radius: var(--radius-sm);
  border: none;
  background: var(--gold-grad);
  color: #1a0f00;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--trans);
  white-space: nowrap;
  box-shadow: var(--glow-gold);
}
.btn-register:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 0 32px rgba(201,160,46,0.5);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--trans);
}

/* ══════════════════════════════════════
   LAYOUT WRAPPER
══════════════════════════════════════ */
.layout {
  display: flex;
  margin-top: var(--header-h);
  min-height: calc(100vh - var(--header-h));
}

/* ══════════════════════════════════════
   SIDEBAR
══════════════════════════════════════ */
.sidebar {
  width: var(--sidebar-w);
  flex-shrink: 0;
  background: linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-dark) 100%);
  border-right: 1px solid var(--border-gold);
  position: sticky;
  top: var(--header-h);
  height: calc(100vh - var(--header-h));
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dim) transparent;
  display: flex;
  flex-direction: column;
  padding: 20px 0 24px;
  z-index: 100;
  transition: transform var(--trans);
}

.sidebar::-webkit-scrollbar { width: 4px; }
.sidebar::-webkit-scrollbar-track { background: transparent; }
.sidebar::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 4px; }

.sidebar__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  padding: 0 18px 10px;
  border-bottom: 1px solid var(--gray-dark);
  margin-bottom: 8px;
}

.nav-menu { flex: 1; }

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--off-white);
  border-left: 3px solid transparent;
  transition: var(--trans);
  cursor: pointer;
  position: relative;
}

.nav-item:hover {
  background: rgba(201,160,46,0.08);
  color: var(--gold-light);
  border-left-color: var(--gold);
}

.nav-item.active {
  background: rgba(201,160,46,0.12);
  color: var(--gold-light);
  border-left-color: var(--gold);
  font-weight: 600;
}

.nav-item .nav-icon {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

/* ── Live wins in sidebar ── */
.sidebar__wins {
  margin: 16px 10px 0;
  border-top: 1px solid var(--gray-dark);
  padding-top: 14px;
}

.sidebar__wins-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-bright);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  padding: 0 8px;
}

.sidebar__wins-title::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 8px var(--green-bright);
  animation: pulse 1.5s infinite;
}

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

.wins-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 280px;
  overflow: hidden;
}

.win-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-green);
  animation: slideDown 0.4s ease;
  flex-shrink: 0;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.win-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
  color: #050c05;
}

.win-info { flex: 1; min-width: 0; }

.win-player {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--off-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.win-game {
  font-size: 0.62rem;
  color: var(--gray);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.win-amount {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-light);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   MAIN CONTENT
══════════════════════════════════════ */
.main-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 40px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../header-bg.webp');
  background-size: cover;
  background-position: center top;
  z-index: 0;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5,12,5,0.92) 0%,
    rgba(5,12,5,0.7) 50%,
    rgba(5,12,5,0.3) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,160,46,0.15);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero__badge::before {
  content: '★';
  color: var(--gold);
}

.hero__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero__title span {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: 1rem;
  color: var(--off-white);
  margin-bottom: 30px;
  line-height: 1.6;
  opacity: 0.9;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--gold-grad);
  color: #1a0f00;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--trans);
  box-shadow: var(--glow-gold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.btn-primary:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(201,160,46,0.55);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: rgba(201,160,46,0.1);
  color: var(--gold-light);
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--trans);
}
.btn-secondary:hover {
  background: rgba(201,160,46,0.2);
  box-shadow: var(--glow-gold);
}

/* ══════════════════════════════════════
   FEATURES BAR
══════════════════════════════════════ */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-gold);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: var(--bg-mid);
  transition: var(--trans);
  cursor: default;
}
.feature-item:hover {
  background: rgba(201,160,46,0.08);
}

.feature-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.feature-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 2px;
}
.feature-text span {
  font-size: 0.74rem;
  color: var(--gray);
}

/* ══════════════════════════════════════
   SECTION HEADERS
══════════════════════════════════════ */
.section { padding: 40px; }
.section--dark { background: var(--bg-mid); }

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.section-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title::before {
  content: '';
  width: 4px;
  height: 22px;
  background: var(--gold-grad);
  border-radius: 4px;
  flex-shrink: 0;
}

.see-all {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: var(--trans);
}
.see-all:hover { border-color: var(--gold); }

/* ══════════════════════════════════════
   GAMES GRID
══════════════════════════════════════ */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 14px;
}

.game-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  cursor: pointer;
  transition: var(--trans);
  aspect-ratio: 1 / 1;
  background: var(--bg-card);
}

.game-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--gold);
  box-shadow: var(--glow-gold);
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--trans);
}

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

.game-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5,12,5,0.95) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
  opacity: 0;
  transition: var(--trans);
}

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

.game-card__name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}

.game-card__play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  background: var(--gold-grad);
  color: #1a0f00;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 6px;
  text-transform: uppercase;
}

/* Glossy shine on card */
.game-card::before {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  transform: skewX(-15deg);
  transition: 0.6s ease;
  z-index: 1;
}
.game-card:hover::before { left: 130%; }

/* ══════════════════════════════════════
   INFO CARDS
══════════════════════════════════════ */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.info-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card2) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-grad);
  opacity: 0;
  transition: var(--trans);
}

.info-card:hover { border-color: var(--gold); box-shadow: var(--glow-gold); }
.info-card:hover::before { opacity: 1; }

.info-card__icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.info-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.info-card__text {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ══════════════════════════════════════
   ARTICLE / CONTENT
══════════════════════════════════════ */
.article {
  max-width: 900px;
}

.article h2 {
  font-size: 1.4rem;
  color: var(--white);
  margin: 36px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-dark);
}

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

.article h3 {
  font-size: 1.1rem;
  color: var(--gold-light);
  margin: 24px 0 10px;
}

.article p {
  font-size: 0.9rem;
  color: var(--off-white);
  line-height: 1.75;
  margin-bottom: 16px;
}

.article ol, .article ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.article li {
  font-size: 0.9rem;
  color: var(--off-white);
  line-height: 1.75;
  margin-bottom: 6px;
}

.article ol { list-style: decimal; }
.article ul { list-style: disc; }

/* ══════════════════════════════════════
   BONUS CARDS
══════════════════════════════════════ */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.bonus-card {
  background: linear-gradient(145deg, #0a1e0a, #122212);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--trans);
}

.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--glow-gold);
  border-color: var(--gold);
}

.bonus-card__tag {
  position: absolute;
  top: 0; right: 0;
  background: var(--gold-grad);
  color: #1a0f00;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 0 var(--radius) 0 var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.bonus-card__icon { font-size: 2.8rem; margin-bottom: 14px; }

.bonus-card__amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.bonus-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.bonus-card__text {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 18px;
}

/* ══════════════════════════════════════
   PROMO CODE BOX
══════════════════════════════════════ */
.promo-box {
  background: linear-gradient(135deg, #0a1e0a, #122212);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.promo-box__icon { font-size: 3rem; }

.promo-box__info { flex: 1; min-width: 200px; }

.promo-box__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 4px;
}

.promo-box__code {
  font-family: 'Montserrat', monospace;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.promo-box__desc {
  font-size: 0.82rem;
  color: var(--off-white);
  margin-top: 6px;
}

.btn-copy {
  padding: 12px 24px;
  background: var(--gold-grad);
  color: #1a0f00;
  font-size: 0.88rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--trans);
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-copy:hover { filter: brightness(1.1); transform: translateY(-1px); }
.btn-copy.copied { background: linear-gradient(135deg, #1a7a38, #22d45a); color: #fff; }

/* ══════════════════════════════════════
   STEPS
══════════════════════════════════════ */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: step;
}

.step {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-dark);
  counter-increment: step;
}
.step:last-child { border-bottom: none; }

.step__num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold-grad);
  color: #1a0f00;
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--glow-gold);
}

.step__content {}
.step__title { font-size: 0.95rem; font-weight: 700; color: var(--gold-light); margin-bottom: 4px; }
.step__text { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }

/* ══════════════════════════════════════
   FORM STYLES
══════════════════════════════════════ */
.auth-page {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: radial-gradient(ellipse at center, rgba(26,122,56,0.08) 0%, transparent 70%);
}

.auth-card {
  background: linear-gradient(145deg, var(--bg-card), var(--bg-card2));
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 40px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), var(--glow-gold);
}

.auth-card__logo {
  text-align: center;
  margin-bottom: 28px;
}

.auth-card__logo img { height: 48px; margin: 0 auto 8px; }

.auth-card__title {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 8px;
  color: var(--white);
}

.auth-card__sub {
  font-size: 0.85rem;
  text-align: center;
  color: var(--gray);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.form-group input, .form-group select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--gray-dark);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.9rem;
  outline: none;
  transition: var(--trans);
  font-family: inherit;
}

.form-group input:focus, .form-group select:focus {
  border-color: var(--gold);
  background: rgba(201,160,46,0.06);
  box-shadow: 0 0 0 3px rgba(201,160,46,0.1);
}

.form-group input::placeholder { color: var(--gray); }

.form-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
}
.form-divider::before, .form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-dark);
}
.form-divider span { font-size: 0.75rem; color: var(--gray); white-space: nowrap; }

.auth-link {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 20px;
}
.auth-link a { color: var(--gold-light); border-bottom: 1px solid transparent; transition: var(--trans); }
.auth-link a:hover { border-color: var(--gold-light); }

.btn-full {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  background: var(--gold-grad);
  color: #1a0f00;
  cursor: pointer;
  transition: var(--trans);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--glow-gold);
}
.btn-full:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 0 40px rgba(201,160,46,0.5);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0;
  font-size: 0.8rem;
  color: var(--gray);
}
.form-check input[type="checkbox"] {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--gold);
}

/* ══════════════════════════════════════
   TICKER / WINS PANEL (page-level)
══════════════════════════════════════ */
.wins-panel {
  background: var(--bg-mid);
  border: 1px solid var(--border-green);
  border-radius: var(--radius);
  overflow: hidden;
}

.wins-panel__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-green);
  background: rgba(34,212,90,0.05);
}

.wins-panel__header h3 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green-bright);
}

.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 8px var(--green-bright);
  animation: pulse 1.5s infinite;
}

.wins-table {
  display: flex;
  flex-direction: column;
}

.wins-table .win-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  border-bottom: 1px solid var(--gray-dark);
  animation: slideDown 0.4s ease;
  transition: background var(--trans);
}
.wins-table .win-row:hover { background: rgba(201,160,46,0.05); }
.wins-table .win-row:last-child { border-bottom: none; }

.win-row .win-avatar { width: 36px; height: 36px; font-size: 0.85rem; }
.win-row .win-player { font-size: 0.88rem; }
.win-row .win-game { font-size: 0.78rem; }
.win-row .win-amount { font-size: 0.95rem; font-weight: 700; color: var(--gold-light); }
.win-row .win-time { font-size: 0.72rem; color: var(--gray); margin-left: auto; }

/* ══════════════════════════════════════
   STATS BAR
══════════════════════════════════════ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-gold);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 32px;
}

.stat-item {
  background: var(--bg-card);
  padding: 20px;
  text-align: center;
  transition: var(--trans);
}
.stat-item:hover { background: rgba(201,160,46,0.08); }

.stat-item__num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.stat-item__label { font-size: 0.75rem; color: var(--gray); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--bg-mid);
  border-top: 1px solid var(--border-gold);
  padding: 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer__col {}

.footer__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer__logo img { height: 32px; }

.footer__about {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer__title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__links a {
  font-size: 0.82rem;
  color: var(--gray);
  transition: var(--trans);
}
.footer__links a:hover { color: var(--gold-light); }

.footer__bottom {
  border-top: 1px solid var(--gray-dark);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: 0.78rem;
  color: var(--gray);
}

.footer__age {
  background: var(--red);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}

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

.badge-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--gray-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* ══════════════════════════════════════
   PAGE-SPECIFIC HERO VARIANTS
══════════════════════════════════════ */
.page-hero {
  padding: 50px 40px 40px;
  background: linear-gradient(180deg, rgba(26,122,56,0.06) 0%, transparent 100%);
  border-bottom: 1px solid var(--gray-dark);
}

.page-hero__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  margin-bottom: 12px;
}

.page-hero__title span {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--gray);
  margin-bottom: 16px;
}
.page-hero__breadcrumb a { color: var(--gold); transition: var(--trans); }
.page-hero__breadcrumb a:hover { color: var(--gold-light); }
.page-hero__breadcrumb span { color: var(--gray-dark); }

.page-hero__desc {
  font-size: 0.95rem;
  color: var(--off-white);
  line-height: 1.6;
  max-width: 680px;
}

/* ══════════════════════════════════════
   MIRROR TABLE
══════════════════════════════════════ */
.mirror-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-gold);
}

.mirror-table th {
  background: rgba(201,160,46,0.15);
  padding: 12px 16px;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mirror-table td {
  padding: 12px 16px;
  font-size: 0.85rem;
  color: var(--off-white);
  border-top: 1px solid var(--gray-dark);
}

.mirror-table tr:hover td { background: rgba(201,160,46,0.04); }

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
}

.status-badge.active {
  background: rgba(34,212,90,0.15);
  color: var(--green-bright);
  border: 1px solid var(--border-green);
}

/* ══════════════════════════════════════
   MOBILE MENU OVERLAY
══════════════════════════════════════ */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 99;
}
.sidebar-overlay.active { display: block; }

/* ══════════════════════════════════════
   ALERT / NOTICE
══════════════════════════════════════ */
.notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(201,160,46,0.08);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}
.notice__icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.notice__text { font-size: 0.85rem; color: var(--off-white); line-height: 1.6; }
.notice__text strong { color: var(--gold-light); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1100px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --sidebar-w: 260px; }

  .burger { display: flex; }
  .header { padding: 0 16px; }
  .header__logo-text { display: none; }

  .sidebar {
    position: fixed;
    top: var(--header-h);
    left: 0;
    height: calc(100vh - var(--header-h));
    transform: translateX(-100%);
    z-index: 100;
    box-shadow: 4px 0 30px rgba(0,0,0,0.6);
  }
  .sidebar.open { transform: translateX(0); }

  .layout { display: block; }
  .main-content { width: 100%; }

  .hero { padding: 40px 20px; min-height: 340px; }
  .hero__bg::after {
    background: linear-gradient(180deg, rgba(5,12,5,0.85) 0%, rgba(5,12,5,0.6) 100%);
  }

  .features { grid-template-columns: 1fr 1fr; }
  .section { padding: 28px 20px; }
  .page-hero { padding: 28px 20px; }

  .footer { padding: 28px 20px; }
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

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

  .auth-card { padding: 28px 20px; }

  .promo-box { flex-direction: column; text-align: center; }
  .promo-box__info { min-width: 0; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 1.5rem; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: 1fr; }
  .btn-primary, .btn-secondary { padding: 12px 20px; font-size: 0.9rem; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
}
