/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-dark:     #0d0b1e;
  --bg-card:     #16132e;
  --bg-card2:    #1e1a38;
  --purple:      #5c3ba3;
  --purple-light:#7c52d4;
  --gold:        #f0b429;
  --gold-light:  #ffd166;
  --pink:        #e040a0;
  --text:        #e8e0ff;
  --text-muted:  #9080c0;
  --green:       #22c55e;
  --radius:      12px;
  --radius-sm:   8px;
  --transition:  .25s ease;
}

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; }

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

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(135deg, #0a0820 0%, #16132e 100%);
  border-bottom: 1px solid rgba(92,59,163,.4);
  backdrop-filter: blur(12px);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo-wrap { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-wrap img { height: 42px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  background: rgba(92,59,163,.25);
  color: var(--text);
}
.nav-link.active { color: var(--gold); }

.nav-icon { width: 20px; height: 20px; opacity: .8; }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .88rem;
  transition: var(--transition);
  cursor: pointer;
}

.btn-outline {
  border: 1.5px solid var(--purple-light);
  color: var(--text);
  background: transparent;
}
.btn-outline:hover { background: rgba(124,82,212,.2); }

.btn-primary {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(92,59,163,.5);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(92,59,163,.7); }

.btn-gold {
  background: linear-gradient(135deg, #c98a00 0%, var(--gold) 50%, var(--gold-light) 100%);
  color: #1a0a00;
  font-weight: 800;
  box-shadow: 0 4px 18px rgba(240,180,41,.4);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(240,180,41,.6); }

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  padding: 6px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,8,32,.97);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link {
  font-size: 1.1rem;
  padding: 12px 30px;
  width: 220px;
  justify-content: center;
}
.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: var(--text);
  font-size: 1.5rem;
}

/* ===== 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;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,11,30,.92) 0%, rgba(13,11,30,.6) 55%, rgba(13,11,30,.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 20px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(240,180,41,.15);
  border: 1px solid rgba(240,180,41,.4);
  color: var(--gold);
  padding: 5px 14px;
  border-radius: 30px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  max-width: 560px;
  margin-bottom: 16px;
}

.hero h1 span { color: var(--gold); }

.hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 440px;
  line-height: 1.6;
  margin-bottom: 32px;
}

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

.hero-features {
  display: flex;
  gap: 24px;
  margin-top: 42px;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 600;
}
.hero-feature-icon { font-size: 1.4rem; }

/* ===== WINS TICKER ===== */
.wins-ticker {
  background: linear-gradient(90deg, #0d0a22 0%, #1a1438 50%, #0d0a22 100%);
  border-top: 1px solid rgba(240,180,41,.25);
  border-bottom: 1px solid rgba(240,180,41,.25);
  padding: 10px 0;
  overflow: hidden;
  position: relative;
}

.wins-ticker-label {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  padding: 0 16px;
  background: linear-gradient(90deg, var(--bg-dark) 70%, transparent);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold);
  z-index: 2;
  white-space: nowrap;
}

.wins-ticker-inner {
  display: flex;
  gap: 0;
  animation: tickerScroll 30s linear infinite;
  width: max-content;
  padding-left: 180px;
}

.wins-ticker:hover .wins-ticker-inner { animation-play-state: paused; }

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

.win-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 22px;
  border-right: 1px solid rgba(255,255,255,.08);
  white-space: nowrap;
  font-size: .82rem;
}

.win-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .7rem;
  flex-shrink: 0;
}

.win-player { color: var(--text-muted); }
.win-game { color: var(--text); font-weight: 600; }
.win-amount { color: var(--green); font-weight: 800; }

/* ===== SECTION ===== */
.section { padding: 48px 20px; max-width: 1280px; margin: 0 auto; }

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

.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
}
.section-title-icon { font-size: 1.4rem; }

.section-link {
  font-size: .82rem;
  color: var(--purple-light);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}
.section-link:hover { color: var(--gold); }

/* ===== CATEGORY TABS ===== */
.category-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-bottom: 28px;
  scrollbar-width: none;
}
.category-tabs::-webkit-scrollbar { display: none; }

.cat-tab {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 30px;
  border: 1.5px solid rgba(255,255,255,.1);
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: .82rem;
  font-weight: 700;
  white-space: nowrap;
  transition: var(--transition);
}
.cat-tab:hover { border-color: var(--purple-light); color: var(--text); }
.cat-tab.active {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(92,59,163,.5);
}
.cat-tab-icon { font-size: 1rem; }

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

.game-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,.07);
  transition: var(--transition);
  cursor: pointer;
  aspect-ratio: 1/1;
}
.game-card:hover { transform: translateY(-4px); border-color: var(--purple-light); box-shadow: 0 12px 32px rgba(92,59,163,.4); }

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

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13,11,30,.95) 0%, rgba(13,11,30,.3) 50%, transparent 100%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px 12px;
}
.game-card:hover .game-card-overlay { opacity: 1; }

.game-card-name {
  font-size: .8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}

.btn-play-small {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
  color: #fff;
  border-radius: 6px;
  padding: 7px;
  font-size: .78rem;
  font-weight: 700;
  text-align: center;
  transition: var(--transition);
}
.btn-play-small:hover { background: var(--gold); color: #1a0a00; }

.game-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--pink);
  color: #fff;
  font-size: .66rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.game-badge.hot { background: linear-gradient(135deg, #ff6b35, #f7253c); }
.game-badge.new { background: linear-gradient(135deg, var(--purple), var(--purple-light)); }
.game-badge.top { background: linear-gradient(135deg, #c98a00, var(--gold)); color: #1a0a00; }

/* ===== PROMO BANNER ===== */
.promo-banner {
  margin: 0 auto 0;
  max-width: 1280px;
  padding: 0 20px;
}

.promo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.promo-card {
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid rgba(255,255,255,.08);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.promo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: var(--transition);
}
.promo-card:hover::before { opacity: 1; }
.promo-card:hover { transform: translateY(-3px); }

.promo-card.purple-card {
  background: linear-gradient(135deg, rgba(92,59,163,.3) 0%, rgba(30,26,56,.9) 100%);
}
.promo-card.purple-card::before {
  background: linear-gradient(135deg, rgba(92,59,163,.5) 0%, rgba(30,26,56,.95) 100%);
}

.promo-card.gold-card {
  background: linear-gradient(135deg, rgba(201,138,0,.25) 0%, rgba(30,26,56,.9) 100%);
}
.promo-card.gold-card::before {
  background: linear-gradient(135deg, rgba(240,180,41,.35) 0%, rgba(30,26,56,.95) 100%);
}

.promo-card.pink-card {
  background: linear-gradient(135deg, rgba(224,64,160,.25) 0%, rgba(30,26,56,.9) 100%);
}
.promo-card.pink-card::before {
  background: linear-gradient(135deg, rgba(224,64,160,.4) 0%, rgba(30,26,56,.95) 100%);
}

.promo-card.green-card {
  background: linear-gradient(135deg, rgba(34,197,94,.2) 0%, rgba(30,26,56,.9) 100%);
}
.promo-card.green-card::before {
  background: linear-gradient(135deg, rgba(34,197,94,.35) 0%, rgba(30,26,56,.95) 100%);
}

.promo-icon {
  font-size: 2.4rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.promo-info { position: relative; z-index: 1; }
.promo-info h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 6px; }
.promo-info p { font-size: .82rem; color: var(--text-muted); line-height: 1.5; }

/* ===== LIVE WINS SECTION ===== */
.live-wins-section {
  background: linear-gradient(135deg, rgba(22,19,46,.8) 0%, rgba(13,11,30,.9) 100%);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 40px 20px;
}

.live-wins-inner { max-width: 1280px; margin: 0 auto; }

.live-wins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.live-win-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}
.live-win-card.highlight {
  border-color: rgba(240,180,41,.4);
  background: rgba(240,180,41,.08);
  animation: winPop .4s ease;
}
@keyframes winPop {
  0% { transform: scale(.96); }
  60% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

.live-win-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .9rem;
  flex-shrink: 0;
  color: #fff;
}

.live-win-info { flex: 1; min-width: 0; }
.live-win-player { font-size: .8rem; color: var(--text-muted); }
.live-win-game { font-size: .88rem; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.live-win-amount { font-size: 1rem; font-weight: 900; color: var(--green); margin-left: auto; white-space: nowrap; }
.live-win-big { color: var(--gold); }

/* ===== SEO TEXT ===== */
.seo-section {
  background: linear-gradient(135deg, rgba(22,19,46,.6) 0%, rgba(13,11,30,.8) 100%);
  padding: 60px 20px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.seo-inner {
  max-width: 900px;
  margin: 0 auto;
}

.seo-inner h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--gold);
}

.seo-inner h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--text);
}

.seo-inner p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
  font-size: .92rem;
}

.seo-inner ol, .seo-inner ul {
  margin: 10px 0 14px 20px;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: .92rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: linear-gradient(135deg, #080618 0%, #0d0b1e 100%);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 48px 20px 28px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: .85rem;
  line-height: 1.6;
  margin-top: 14px;
  max-width: 260px;
}

.footer-logo { height: 38px; width: auto; margin-bottom: 4px; }

.footer-col h4 {
  font-size: .88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .88rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-legal { font-size: .78rem; color: var(--text-muted); }
.footer-badges { display: flex; gap: 10px; align-items: center; }
.footer-badge {
  padding: 4px 12px;
  border-radius: 4px;
  font-size: .72rem;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.15);
  color: var(--text-muted);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, rgba(92,59,163,.3) 0%, rgba(13,11,30,1) 100%);
  padding: 60px 20px 50px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; margin-bottom: 12px; }
.page-hero h1 span { color: var(--gold); }
.page-hero p { color: var(--text-muted); font-size: 1rem; max-width: 560px; margin: 0 auto; }

/* ===== BONUS CARDS ===== */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px;
}

.bonus-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.bonus-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.4); }

.bonus-card-header {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.bonus-card-header.grad-purple { background: linear-gradient(135deg, #3b1f8a, #7c52d4); }
.bonus-card-header.grad-gold   { background: linear-gradient(135deg, #7a4f00, #f0b429); }
.bonus-card-header.grad-pink   { background: linear-gradient(135deg, #8a1560, #e040a0); }
.bonus-card-header.grad-green  { background: linear-gradient(135deg, #0a5e30, #22c55e); }

.bonus-card-body { padding: 22px 20px 24px; }
.bonus-card-body h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; }
.bonus-card-amount {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 10px;
}
.bonus-card-body p { color: var(--text-muted); font-size: .85rem; line-height: 1.5; margin-bottom: 18px; }
.bonus-terms { font-size: .75rem; color: var(--text-muted); opacity: .7; margin-bottom: 16px; }

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: .95rem;
  font-weight: 700;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}
.faq-question:hover { color: var(--gold); }

.faq-icon {
  width: 24px;
  height: 24px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  transition: var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--gold); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner {
  padding: 0 20px 20px;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: .9rem;
}

/* ===== LIVE CASINO GRID ===== */
.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.live-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.live-card:hover { transform: translateY(-4px); border-color: var(--pink); }

.live-card-thumb {
  height: 150px;
  background: linear-gradient(135deg, var(--bg-card2), var(--bg-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
}

.live-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e53e3e;
  color: #fff;
  font-size: .66rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 30px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
}
.live-dot { width: 6px; height: 6px; background: #fff; border-radius: 50%; animation: pulse 1.2s ease infinite; }
@keyframes pulse { 0%,100%{ opacity:1; } 50%{ opacity:.3; } }

.live-players {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,.6);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 30px;
}

.live-card-body { padding: 14px 14px 18px; }
.live-card-body h3 { font-size: .92rem; font-weight: 800; margin-bottom: 4px; }
.live-card-provider { font-size: .75rem; color: var(--text-muted); margin-bottom: 12px; }

/* ===== NOTIFICATION TOAST ===== */
.win-toast {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.toast-item {
  background: linear-gradient(135deg, rgba(22,19,46,.98) 0%, rgba(13,11,30,.98) 100%);
  border: 1px solid rgba(240,180,41,.35);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 260px;
  max-width: 320px;
  box-shadow: 0 8px 24px rgba(0,0,0,.5);
  animation: toastIn .3s ease forwards;
  pointer-events: auto;
}

@keyframes toastIn {
  from { transform: translateX(-110%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}
@keyframes toastOut {
  from { transform: translateX(0);    opacity: 1; }
  to   { transform: translateX(-110%); opacity: 0; }
}
.toast-item.leaving { animation: toastOut .3s ease forwards; }

.toast-ava {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .8rem;
  color: #fff;
  flex-shrink: 0;
}
.toast-info { flex: 1; min-width: 0; }
.toast-player { font-size: .75rem; color: var(--text-muted); }
.toast-game { font-size: .8rem; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.toast-amount { font-size: .9rem; font-weight: 900; color: var(--green); margin-left: 4px; white-space: nowrap; }
.toast-amount.big { color: var(--gold); }
.toast-label { font-size: .62rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-actions .btn-outline { display: none; }
  .hero { min-height: 380px; }
  .hero h1 { font-size: 1.8rem; }
  .hero-features { gap: 10px; }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .live-wins-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-cards { grid-template-columns: 1fr; }
  .win-toast { left: 10px; bottom: 10px; }
  .toast-item { min-width: 240px; }
}
