/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #f5c842;
  --gold-light: #ffe680;
  --gold-dark: #c9960a;
  --red: #e02020;
  --red-dark: #a01010;
  --bg: #0b0c14;
  --bg2: #12131f;
  --bg3: #1a1b2e;
  --bg4: #22243a;
  --text: #e8e8f0;
  --text-muted: #9090b0;
  --border: #2a2c45;
  --radius: 12px;
  --radius-sm: 6px;
  --shadow: 0 4px 24px rgba(0,0,0,.5);
  --glow-gold: 0 0 18px rgba(245,200,66,.35);
  --transition: .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', 'Inter', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ===== WINS TICKER ===== */
#wins-ticker {
  background: linear-gradient(90deg, #0d0e1c 0%, #1a1230 50%, #0d0e1c 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
  overflow: hidden;
  height: 40px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}

#wins-ticker::before {
  content: '🏆 WINS';
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #000;
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .08em;
  padding: 0 14px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  z-index: 2;
  min-width: 90px;
  justify-content: center;
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker-scroll 35s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.ticker-track:hover { animation-play-state: paused; }

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 28px;
  font-size: .8rem;
  border-right: 1px solid var(--border);
  color: var(--text-muted);
}

.ticker-item .player { color: var(--gold-light); font-weight: 600; }
.ticker-item .amount { color: #4ade80; font-weight: 700; }
.ticker-item .game-name { color: var(--text); }

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== HEADER ===== */
header {
  background: linear-gradient(180deg, #07080f 0%, rgba(7,8,15,.9) 100%);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  height: 70px;
}

.logo-link { flex-shrink: 0; }
.logo-img { height: 46px; width: auto; object-fit: contain; }

/* ===== NAV ===== */
nav { flex: 1; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav-item a:hover,
.nav-item a.active {
  color: var(--gold);
  background: rgba(245,200,66,.08);
}

.nav-item a .nav-icon { font-size: 1rem; }

/* ===== HEADER BUTTONS ===== */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  letter-spacing: .03em;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  color: #07080f;
  box-shadow: var(--glow-gold);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  transform: translateY(-1px);
  box-shadow: 0 0 28px rgba(245,200,66,.5);
}

/* ===== HERO BANNER ===== */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 460px;
}

.hero-slider {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7,8,15,.85) 0%,
    rgba(7,8,15,.4) 50%,
    rgba(7,8,15,.1) 100%
  );
  z-index: 1;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 60px;
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,200,66,.15);
  border: 1px solid rgba(245,200,66,.3);
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 14px;
  width: fit-content;
}

.hero-title {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0,0,0,.8);
  margin-bottom: 12px;
}

.hero-title span { color: var(--gold); }

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.5;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-lg { padding: 13px 30px; font-size: 1rem; }

.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 60px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  padding: 0;
}

.hero-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
  box-shadow: var(--glow-gold);
}

/* ===== SECTION STYLES ===== */
.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 52px 24px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 24px;
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  border-radius: 2px;
}

.section-link {
  font-size: .85rem;
  color: var(--gold);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.section-link:hover { gap: 8px; }

/* ===== GAMES GRID ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 14px;
}

.game-card {
  background: var(--bg3);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  aspect-ratio: 3/4;
}

.game-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 32px rgba(0,0,0,.6);
  border-color: var(--gold-dark);
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.game-card:hover img { transform: scale(1.07); }

.game-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.85) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
}

.game-card:hover .game-overlay { opacity: 1; }

.game-title {
  font-size: .78rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 8px;
}

.btn-play {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #000;
  font-weight: 800;
  font-size: .78rem;
  padding: 7px 0;
  border-radius: 6px;
  text-align: center;
  width: 100%;
  letter-spacing: .05em;
  transition: all var(--transition);
}

.btn-play:hover { box-shadow: var(--glow-gold); }

.game-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--red);
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.game-badge.hot {
  background: linear-gradient(135deg, #ff6b00, #ff9500);
}

.game-badge.new {
  background: linear-gradient(135deg, #1a73e8, #0052b4);
}

/* ===== PROMO BANNERS ===== */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.promo-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  min-height: 200px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.promo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
}

.promo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .4s ease;
}

.promo-card:hover .promo-bg { transform: scale(1.04); }

.promo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,8,15,.8) 0%, rgba(7,8,15,.3) 100%);
}

.promo-content {
  position: relative;
  z-index: 1;
  padding: 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.promo-tag {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.promo-title {
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 6px;
}

.promo-desc {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: linear-gradient(135deg, var(--bg3), var(--bg4));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
}

.stat-item {
  padding: 24px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}

.stat-item:last-child { border-right: none; }

.stat-value {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: .78rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: .05em;
}

/* ===== LIVE SECTION ===== */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: pulse-live 2s infinite;
}

@keyframes pulse-live {
  0%, 100% { box-shadow: 0 0 0 0 rgba(224,32,32,.6); }
  50% { box-shadow: 0 0 0 8px rgba(224,32,32,0); }
}

.live-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

/* ===== BONUSES TABLE ===== */
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.bonus-card {
  background: linear-gradient(135deg, var(--bg3), var(--bg4));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}

.bonus-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-dark);
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,200,66,.12) 0%, transparent 70%);
}

.bonus-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.bonus-amount {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.bonus-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.bonus-desc {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 18px;
}

.bonus-terms {
  font-size: .72rem;
  color: var(--text-muted);
  margin-top: 10px;
  opacity: .7;
}

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open { border-color: var(--gold-dark); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: 12px;
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  flex-shrink: 0;
  font-size: 1.2rem;
  transition: transform var(--transition);
  color: var(--gold);
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 22px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 22px 18px;
}

.faq-answer p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--bg2) 0%, var(--bg3) 100%);
  border-bottom: 1px solid var(--border);
  padding: 52px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(245,200,66,.06) 0%, transparent 70%);
}

.page-hero-content { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }

.page-hero h1 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.page-hero p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== FILTER TABS ===== */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.filter-tab {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-tab:hover,
.filter-tab.active {
  background: rgba(245,200,66,.1);
  border-color: var(--gold-dark);
  color: var(--gold);
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 52px 24px 24px;
  margin-top: 60px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.footer-brand { max-width: 320px; }
.footer-logo { height: 40px; margin-bottom: 14px; }

.footer-desc {
  font-size: .84rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.footer-heading {
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: .85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: .78rem;
  color: var(--text-muted);
}

.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; }

.age-badge {
  background: var(--bg4);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: .05em;
}

.age-badge.age18 {
  background: var(--red-dark);
  border-color: var(--red);
  color: #fff;
}

/* ===== PAYMENTS ROW ===== */
.payment-icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.pay-icon {
  background: var(--bg4);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .05em;
}

/* ===== RESPONSIBLE GAMING ===== */
.rg-bar {
  background: rgba(245,200,66,.05);
  border: 1px solid rgba(245,200,66,.15);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
  color: var(--text-muted);
  max-width: 1280px;
  margin: 0 auto 0;
}

.rg-bar-wrap {
  padding: 0 24px;
  margin-bottom: 0;
}

/* ===== MOBILE ===== */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    transition: transform var(--transition);
    z-index: 999;
    padding: 16px;
  }

  nav.open { transform: translateY(0); }

  .nav-list { flex-direction: column; align-items: stretch; }
  .nav-item a { padding: 12px 16px; }

  .hero { height: 360px; }
  .hero-content { padding: 0 24px; }
  .hero-title { font-size: 1.8rem; }
  .hero-dots { left: 24px; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }

  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .header-inner { gap: 16px; }
  .header-actions .btn-outline { display: none; }
}

@media (max-width: 480px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { height: 300px; }
  .hero-title { font-size: 1.4rem; }
}

/* ===== DIVIDER ===== */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0 24px;
}

/* ===== GLOW EFFECTS ===== */
.glow-text { text-shadow: 0 0 24px rgba(245,200,66,.5); }

/* ===== SEO TEXT BLOCK ===== */
.seo-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 52px 24px;
}

.seo-inner {
  max-width: 1280px;
  margin: 0 auto;
  columns: 1;
}

.seo-inner h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  margin: 28px 0 10px;
  line-height: 1.3;
}

.seo-inner h2:first-child { margin-top: 0; }

.seo-inner h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin: 20px 0 8px;
}

.seo-inner p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.seo-inner ul,
.seo-inner ol {
  padding-left: 22px;
  margin-bottom: 14px;
}

.seo-inner ul { list-style: disc; }
.seo-inner ol { list-style: decimal; }

.seo-inner li {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 4px;
}

.seo-inner strong { color: var(--text); font-weight: 700; }

.seo-inner .seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin: 16px 0 24px;
}

.seo-inner .seo-box {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
}

.seo-inner .seo-box h3 { margin-top: 0; }
.seo-inner .seo-box p { margin-bottom: 0; }

/* ===== PROVIDER LOGOS (TEXT) ===== */
.providers-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.provider-chip {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: all var(--transition);
  cursor: default;
}

.provider-chip:hover {
  border-color: var(--gold-dark);
  color: var(--gold);
  background: rgba(245,200,66,.05);
}

/* ===== NOTIFICATION TOAST ===== */
#win-notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: linear-gradient(135deg, var(--bg3), var(--bg4));
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.5), var(--glow-gold);
  z-index: 2000;
  max-width: 320px;
  transform: translateX(140%);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}

#win-notification.show { transform: translateX(0); }

.win-notif-icon { font-size: 1.6rem; flex-shrink: 0; }

.win-notif-body {}

.win-notif-title {
  font-size: .78rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.win-notif-text {
  font-size: .88rem;
  color: var(--text);
  line-height: 1.4;
}

.win-notif-amount {
  font-size: 1.1rem;
  font-weight: 900;
  color: #4ade80;
}
