/* ============================================================
   EVA CASINO — MAIN STYLES
   Dark green-black palette, gold CTAs, glossy cards
   ============================================================ */

:root {
  --black:       #070c07;
  --bg:          #0b130b;
  --bg-2:        #0f1c0f;
  --bg-3:        #132213;
  --green-dark:  #0e2210;
  --green-mid:   #163a17;
  --green:       #1e5220;
  --green-light: #2a7a2d;
  --gold:        #c9a227;
  --gold-light:  #e8c044;
  --gold-dark:   #9e7c18;
  --gold-grad:   linear-gradient(135deg, #e8c044 0%, #c9a227 50%, #9e7c18 100%);
  --text:        #f0f0f0;
  --text-muted:  #8fa88f;
  --text-dim:    #5a7a5a;
  --border:      rgba(201, 162, 39, 0.18);
  --border-green: rgba(30, 82, 32, 0.6);
  --glass:       rgba(14, 34, 16, 0.75);
  --glass-card:  rgba(16, 28, 16, 0.85);
  --shadow-gold: 0 4px 30px rgba(201, 162, 39, 0.22);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.55);
  --radius:      12px;
  --radius-lg:   18px;
  --header-h:    64px;
  --sidebar-w:   230px;
  --ticker-h:    40px;
  --font:        'Segoe UI', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
}

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

/* ============================================================ SCROLLBAR */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--green-light); }

/* ============================================================ BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.22s ease;
  border: none;
  white-space: nowrap;
  text-align: center;
  justify-content: center;
}

.btn-gold {
  background: var(--gold-grad);
  color: #1a1000;
  box-shadow: 0 2px 18px rgba(201,162,39,0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(201,162,39,0.55);
  filter: brightness(1.1);
}
.btn-gold:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: rgba(201,162,39,0.1);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); }

.btn-lg { padding: 14px 32px; font-size: 16px; border-radius: 10px; }
.btn-sm { padding: 7px 16px; font-size: 13px; }
.btn-full { width: 100%; display: flex; }

.btn-text-link {
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  transition: opacity 0.2s;
}
.btn-text-link:hover { opacity: 0.75; }

.gold-text { color: var(--gold-light); }

/* ============================================================ HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(7, 12, 7, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo { height: 40px; filter: brightness(1.1); }

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 16px;
  flex: 1;
}
.nav-link {
  padding: 8px 16px;
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}
.nav-link:hover {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}
.nav-link.active { color: var(--gold); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

/* ============================================================ WINS TICKER */
.wins-ticker {
  height: var(--ticker-h);
  background: linear-gradient(90deg, var(--green-dark), rgba(14,34,16,0.9), var(--green-dark));
  border-bottom: 1px solid var(--border-green);
  display: flex;
  align-items: center;
  overflow: hidden;
  gap: 16px;
  padding: 0 16px;
  position: sticky;
  top: var(--header-h);
  z-index: 90;
}
.wins-ticker-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.wins-ticker-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 32px;
  animation: tickerScroll 40s linear infinite;
  min-width: max-content;
}
.wins-ticker-track:hover { animation-play-state: paused; }

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-win {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  flex-shrink: 0;
  white-space: nowrap;
}
.ticker-win .tw-name { color: var(--text); font-weight: 600; }
.ticker-win .tw-amount { color: var(--gold-light); font-weight: 700; }
.ticker-win .tw-game { color: var(--text-dim); }

/* ============================================================ LAYOUT */
.layout {
  display: flex;
  max-width: 1440px;
  margin: 0 auto;
  min-height: calc(100vh - var(--header-h) - var(--ticker-h));
}

/* ============================================================ SIDEBAR */
.sidebar {
  width: var(--sidebar-w);
  flex-shrink: 0;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  border-right: 1px solid var(--border-green);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: sticky;
  top: calc(var(--header-h) + var(--ticker-h));
  height: calc(100vh - var(--header-h) - var(--ticker-h));
  overflow-y: auto;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  padding: 0 12px;
  gap: 2px;
  flex: 1;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 10px;
  color: var(--text-muted);
  font-size: 13.5px;
  font-weight: 500;
  transition: all 0.2s;
  border: 1px solid transparent;
}
.sidebar-link:hover {
  color: var(--text);
  background: var(--glass);
  border-color: var(--border-green);
}
.sidebar-link.active {
  color: var(--gold);
  background: rgba(201,162,39,0.08);
  border-color: rgba(201,162,39,0.3);
}
.sidebar-icon { font-size: 16px; flex-shrink: 0; }

.sidebar-bonus {
  margin: 20px 12px 8px;
  padding: 18px;
  background: linear-gradient(135deg, var(--green-dark), rgba(20,45,22,0.9));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.sidebar-bonus-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.sidebar-bonus-amount {
  font-size: 32px;
  font-weight: 800;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.sidebar-bonus-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* ============================================================ MAIN CONTENT */
.main-content {
  flex: 1;
  min-width: 0;
}

/* ============================================================ HERO */
.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7,12,7,0.85) 0%,
    rgba(10,20,10,0.7) 50%,
    rgba(7,12,7,0.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 48px;
  max-width: 640px;
}
.hero-badge {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.4);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #fff 0%, #d0d0d0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}
.hero-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-stat-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 3px;
}

/* ============================================================ SECTIONS */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.section-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.live-dot {
  width: 10px; height: 10px;
  background: #4caf50;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.4s ease infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(76,175,80,0.6); }
  50%      { box-shadow: 0 0 0 6px rgba(76,175,80,0); }
}

/* ============================================================ BONUS BANNER */
.bonus-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, rgba(30,82,32,0.3) 50%, var(--green-dark) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 48px;
}
.bonus-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.bonus-tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 8px;
}
.bonus-banner-text h2 {
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 800;
  margin-bottom: 8px;
}
.bonus-banner-text p {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 480px;
}
.bonus-banner-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* ============================================================ LIVE WINS */
.live-wins-section {
  padding: 32px 48px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border-green);
}
.wins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.win-card {
  background: var(--glass-card);
  border: 1px solid var(--border-green);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  animation: fadeInUp 0.4s ease;
}
.win-card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.win-card-player { font-size: 13px; font-weight: 700; color: var(--text); }
.win-card-game   { font-size: 11px; color: var(--text-dim); margin-top: 2px; }
.win-card-amount {
  font-size: 18px;
  font-weight: 800;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 4px;
}
.win-card-time { font-size: 10px; color: var(--text-dim); }

/* ============================================================ GAMES */
.games-section {
  padding: 32px 48px;
  background: var(--bg);
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.game-card {
  background: var(--glass-card);
  border: 1px solid var(--border-green);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.28s ease;
  display: block;
  position: relative;
}
.game-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: var(--border);
}
.game-card-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--green-dark);
}
.game-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.game-card:hover .game-card-img-wrap img { transform: scale(1.08); }
.game-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,12,7,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  backdrop-filter: blur(2px);
}
.game-card:hover .game-card-overlay { opacity: 1; }
.game-card-info {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.game-name {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game-rtp {
  font-size: 11px;
  color: var(--text-dim);
}

/* Gloss effect on cards */
.game-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
  border-radius: var(--radius) var(--radius) 0 0;
}

/* ============================================================ PROMO */
.promo-section {
  padding: 32px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border-green);
}
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.promo-card {
  background: var(--glass-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.promo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-grad);
}
.promo-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 12px;
}
.promo-code-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.promo-code {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold-light);
  background: rgba(201,162,39,0.1);
  border: 1px dashed rgba(201,162,39,0.4);
  border-radius: 6px;
  padding: 6px 14px;
}
.promo-copy-btn {
  background: var(--gold-grad);
  color: #1a1000;
  border: none;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.promo-copy-btn:hover { filter: brightness(1.15); }
.promo-copy-btn.copied { background: #2a7a2d; color: #fff; }
.promo-desc { font-size: 13px; color: var(--text-muted); }

/* ============================================================ FEATURES */
.features-section {
  padding: 40px 48px;
  background: var(--bg);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.feature-card {
  background: var(--glass-card);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-light), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border);
  box-shadow: 0 8px 28px rgba(0,0,0,0.4);
}
.feature-card:hover::after { opacity: 1; }
.feature-icon { font-size: 32px; margin-bottom: 14px; }
.feature-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.feature-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; }

/* ============================================================ SEO */
.seo-section {
  padding: 40px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border-green);
}
.seo-content { max-width: 820px; }
.seo-content h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text);
}
.seo-content h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 24px 0 10px;
  color: var(--gold);
}
.seo-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}
.seo-content strong { color: var(--gold-light); }

/* ============================================================ FOOTER */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--border-green);
  padding: 48px 0 24px;
}
.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}
.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border-green);
  margin-bottom: 24px;
}
.footer-logo { height: 36px; margin-bottom: 14px; }
.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.badge {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-muted);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }

.footer-bottom { text-align: center; }
.footer-bottom p { font-size: 12px; color: var(--text-dim); margin-bottom: 4px; }
.footer-disclaimer { color: var(--text-dim) !important; opacity: 0.6; }

/* ============================================================ INNER PAGE COMMON */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--bg-3) 100%);
  padding: 52px 48px;
  border-bottom: 1px solid var(--border-green);
}
.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  background: rgba(201,162,39,0.12);
  border: 1px solid rgba(201,162,39,0.35);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 16px;
}
.page-hero h1 {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}
.page-content {
  padding: 40px 48px;
  background: var(--bg);
  flex: 1;
}
.page-content h2 { font-size: 20px; font-weight: 700; margin-bottom: 14px; margin-top: 32px; }
.page-content h2:first-child { margin-top: 0; }
.page-content h3 { font-size: 16px; font-weight: 600; color: var(--gold); margin: 20px 0 10px; }
.page-content p { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; }
.page-content ul, .page-content ol {
  padding-left: 20px;
  margin-bottom: 14px;
}
.page-content li { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 6px; }
.page-content strong { color: var(--text); }

/* ============================================================ AUTH FORMS */
.auth-wrap {
  min-height: calc(100vh - var(--header-h) - var(--ticker-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: radial-gradient(ellipse at center top, var(--green-dark) 0%, var(--black) 70%);
}
.auth-card {
  width: 100%;
  max-width: 440px;
  background: var(--glass-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), var(--shadow-gold);
  position: relative;
  overflow: hidden;
}
.auth-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-grad);
}
.auth-logo { display: flex; justify-content: center; margin-bottom: 28px; }
.auth-logo img { height: 44px; }
.auth-title { font-size: 24px; font-weight: 800; text-align: center; margin-bottom: 6px; }
.auth-sub { font-size: 13px; color: var(--text-muted); text-align: center; margin-bottom: 28px; }

.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 7px;
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-green);
  border-radius: 10px;
  color: var(--text);
  font-size: 15px;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.12);
}
.form-input::placeholder { color: var(--text-dim); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
.form-check input[type="checkbox"] {
  width: 16px; height: 16px;
  margin-top: 2px;
  accent-color: var(--gold);
  flex-shrink: 0;
}
.form-check label { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
.form-check label a { color: var(--gold); }

.auth-divider {
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  margin: 20px 0;
  position: relative;
}
.auth-divider::before, .auth-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: calc(50% - 20px);
  height: 1px;
  background: var(--border-green);
}
.auth-divider::before { left: 0; }
.auth-divider::after { right: 0; }

.auth-switch { text-align: center; font-size: 13px; color: var(--text-muted); margin-top: 20px; }
.auth-switch a { color: var(--gold); font-weight: 600; }

.bonus-note {
  margin-top: 20px;
  padding: 14px 16px;
  background: rgba(201,162,39,0.08);
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 10px;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

/* ============================================================ BONUS CARDS */
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}
.bonus-card {
  background: var(--glass-card);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-grad);
}
.bonus-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.bonus-card-num {
  width: 30px; height: 30px;
  background: var(--gold-grad);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: #1a1000;
  margin-bottom: 16px;
}
.bonus-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.bonus-card .bonus-amount {
  font-size: 28px;
  font-weight: 900;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.bonus-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ============================================================ TABLE */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 14px;
}
.info-table th, .info-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-green);
  text-align: left;
}
.info-table th {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gold);
  background: rgba(201,162,39,0.04);
  font-weight: 700;
}
.info-table td { color: var(--text-muted); }
.info-table tr:last-child td { border-bottom: none; }
.info-table tr:hover td { background: rgba(255,255,255,0.02); }

/* ============================================================ STEP CARDS */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.step-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--glass-card);
  border: 1px solid var(--border-green);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.step-num {
  width: 36px; height: 36px;
  background: var(--gold-grad);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: #1a1000;
  flex-shrink: 0;
}
.step-body h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.step-body p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ============================================================ MIRROR CARDS */
.mirror-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}
.mirror-card {
  background: var(--glass-card);
  border: 1px solid var(--border-green);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mirror-url {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-light);
  word-break: break-all;
}
.mirror-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
}
.mirror-status.active { color: #4caf50; }
.mirror-status.active::before {
  content: '';
  width: 7px; height: 7px;
  background: #4caf50;
  border-radius: 50%;
  display: inline-block;
}

/* ============================================================ RESPONSIVE */
@media (max-width: 1100px) {
  :root { --sidebar-w: 190px; }
  .hero-content { padding: 40px 32px; }
  .games-section, .bonus-banner, .live-wins-section,
  .promo-section, .features-section, .seo-section { padding-left: 32px; padding-right: 32px; }
}

@media (max-width: 860px) {
  .layout { flex-direction: column; }
  .sidebar {
    width: 100%;
    position: static;
    height: auto;
    overflow: hidden;
    border-right: none;
    border-bottom: 1px solid var(--border-green);
    padding: 12px;
  }
  .sidebar-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0;
  }
  .sidebar-bonus { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-inner { padding: 0 24px; }
  .page-hero { padding: 36px 24px; }
  .page-content { padding: 28px 24px; }
  .auth-card { padding: 28px 24px; }
}

@media (max-width: 600px) {
  .header-nav { display: none; }
  .hero-content { padding: 32px 24px; }
  .hero-actions { flex-direction: column; }
  .hero-stats { gap: 16px; }
  .games-section, .bonus-banner, .live-wins-section,
  .promo-section, .features-section, .seo-section { padding: 24px 20px; }
  .bonus-banner-inner { flex-direction: column; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================ MOBILE NAV TOGGLE */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
}
@media (max-width: 600px) {
  .mobile-menu-btn { display: flex; }
}

/* ============================================================ TOAST */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--green-mid);
  border: 1px solid var(--gold);
  border-radius: 10px;
  padding: 14px 22px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  z-index: 9999;
  box-shadow: var(--shadow-gold);
  animation: toastIn 0.3s ease, toastOut 0.3s ease 2.5s forwards;
}
@keyframes toastIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes toastOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(20px); }
}
