/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #f0c040;
  --gold-light: #ffe066;
  --gold-dark: #c89a00;
  --green: #1aff7a;
  --bg: #0d0d0d;
  --bg2: #161616;
  --bg3: #1e1e1e;
  --bg4: #242424;
  --text: #e8e8e8;
  --text2: #a0a0a0;
  --red: #ff4444;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.6);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', 'Arial', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  min-height: 100vh;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

img { max-width: 100%; display: block; }

/* ===== PROMO TICKER ===== */
.promo-ticker {
  background: linear-gradient(90deg, #1a0a00, #2a1500, #1a0a00);
  border-bottom: 1px solid rgba(240,192,64,0.3);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}

.promo-ticker__track {
  display: flex;
  gap: 60px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
  padding-left: 100%;
}

.promo-ticker__item {
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.promo-ticker__item span { color: var(--text2); font-weight: 400; }

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,13,0.97);
  border-bottom: 1px solid rgba(240,192,64,0.15);
  backdrop-filter: blur(10px);
}

.header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header__logo img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(240,192,64,0.4));
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  color: var(--text2);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.3px;
}

.nav__link:hover, .nav__link.active {
  color: var(--gold);
  background: rgba(240,192,64,0.08);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
  letter-spacing: 0.3px;
}

.btn--gold {
  background: linear-gradient(135deg, #f0c040, #d4a017);
  color: #1a0900;
  box-shadow: 0 2px 12px rgba(240,192,64,0.4);
}

.btn--gold:hover {
  background: linear-gradient(135deg, #ffe066, #f0c040);
  color: #1a0900;
  box-shadow: 0 4px 20px rgba(240,192,64,0.6);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn--outline:hover {
  background: rgba(240,192,64,0.12);
  color: var(--gold-light);
}

.btn--green {
  background: linear-gradient(135deg, #1aff7a, #00cc5a);
  color: #001a0a;
  box-shadow: 0 2px 16px rgba(26,255,122,0.4);
}

.btn--green:hover {
  background: linear-gradient(135deg, #33ff8f, #1aff7a);
  box-shadow: 0 4px 24px rgba(26,255,122,0.6);
  transform: translateY(-1px);
}

.btn--lg { padding: 14px 32px; font-size: 16px; border-radius: 10px; }

/* ===== BURGER ===== */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO / BANNER ===== */
.hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../guest_banner.webp');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.2) 100%),
              linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 50%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 20px;
  width: 100%;
}

.hero__badge {
  display: inline-block;
  background: rgba(240,192,64,0.15);
  border: 1px solid rgba(240,192,64,0.4);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero__title {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 12px;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}

.hero__title span {
  background: linear-gradient(135deg, #f0c040, #ff9500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(16px, 2.5vw, 22px);
  color: var(--text2);
  margin-bottom: 32px;
  max-width: 500px;
}

.hero__bonus-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.bonus-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(240,192,64,0.25);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}

.bonus-badge strong { color: var(--gold); }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* ===== SECTION HEADER ===== */
.section {
  padding: 50px 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.section-title {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 28px;
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  border-radius: 4px;
}

.section-title a {
  margin-left: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
}

.section-title a:hover { color: var(--gold); }

/* ===== GAMES GRID ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}

.game-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg3);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  aspect-ratio: 3/4;
}

.game-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 32px rgba(240,192,64,0.25);
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.game-card:hover img { transform: scale(1.05); }

.game-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.2s;
  display: flex;
  align-items: flex-end;
  padding: 14px;
}

.game-card:hover .game-card__overlay { opacity: 1; }

.game-card__play {
  background: linear-gradient(135deg, #f0c040, #d4a017);
  color: #1a0900;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 6px;
  width: 100%;
  text-align: center;
}

/* ===== LIVE WINS ===== */
.wins-section {
  background: var(--bg2);
  border-top: 1px solid rgba(240,192,64,0.08);
  border-bottom: 1px solid rgba(240,192,64,0.08);
  padding: 40px 20px;
}

.wins-section .inner {
  max-width: 1280px;
  margin: 0 auto;
}

.wins-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.wins-dot {
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--green);
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 6px var(--green); }
  50% { box-shadow: 0 0 16px var(--green), 0 0 30px rgba(26,255,122,0.3); }
}

.wins-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}

.win-item {
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeSlideIn 0.4s ease;
}

.win-item.big-win {
  border-color: rgba(240,192,64,0.3);
  background: linear-gradient(135deg, rgba(240,192,64,0.06), var(--bg3));
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.win-item__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg4), var(--bg3));
  border: 2px solid rgba(240,192,64,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.win-item__info { flex: 1; min-width: 0; }

.win-item__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.win-item__game {
  font-size: 11px;
  color: var(--text2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.win-item__amount {
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
  flex-shrink: 0;
}

.win-item__amount.big { color: var(--gold); }
.win-item__amount.medium { color: var(--green); }
.win-item__amount.small { color: var(--text2); }

/* ===== BONUSES STRIP ===== */
.bonuses-strip {
  background: linear-gradient(135deg, #1a0f00, #0d0d0d);
  border: 1px solid rgba(240,192,64,0.12);
  border-radius: 16px;
  overflow: hidden;
  margin: 0 20px;
}

.bonuses-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}

.bonus-card {
  flex: 1;
  min-width: 200px;
  padding: 30px 24px;
  border-right: 1px solid rgba(240,192,64,0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.2s;
  cursor: pointer;
}

.bonus-card:last-child { border-right: none; }
.bonus-card:hover { background: rgba(240,192,64,0.04); }

.bonus-card__icon { font-size: 32px; }

.bonus-card__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--gold);
}

.bonus-card__desc { font-size: 13px; color: var(--text2); }

/* ===== INFO SECTION ===== */
.info-section {
  background: var(--bg2);
  padding: 50px 20px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.info-section__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.info-section h2 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.info-section h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  margin-top: 28px;
  margin-bottom: 10px;
}

.info-section p {
  color: var(--text2);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 10px;
}

.info-section ol, .info-section ul {
  color: var(--text2);
  font-size: 14px;
  line-height: 1.7;
  padding-left: 22px;
  margin-bottom: 10px;
}

.info-section li { margin-bottom: 4px; }

/* ===== APP BANNER ===== */
.app-banner {
  background: linear-gradient(135deg, #0d1a10, #0a1520);
  border: 1px solid rgba(26,255,122,0.12);
  border-radius: 16px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 0 20px 40px;
}

.app-banner__icon { font-size: 60px; }

.app-banner__text { flex: 1; min-width: 200px; }
.app-banner__text h3 { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.app-banner__text p { font-size: 14px; color: var(--text2); }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg2);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 20px 20px;
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand img { height: 40px; margin-bottom: 12px; }

.footer__brand p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
  max-width: 260px;
}

.footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 8px; }
.footer__col a { font-size: 13px; color: var(--text2); }
.footer__col a:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom p { font-size: 12px; color: var(--text2); }

.age-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text2);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}

/* ===== PAGE SPECIFIC ===== */
/* Slots / Live pages */
.page-hero {
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
  padding: 50px 20px 30px;
  text-align: center;
}

.page-hero h1 { font-size: 36px; font-weight: 900; color: #fff; margin-bottom: 10px; }
.page-hero h1 span { color: var(--gold); }
.page-hero p { font-size: 16px; color: var(--text2); max-width: 600px; margin: 0 auto; }

.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: 20px;
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text2);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover, .filter-btn.active {
  background: rgba(240,192,64,0.12);
  border-color: rgba(240,192,64,0.4);
  color: var(--gold);
}

/* Bonuses page */
.bonus-page-card {
  background: var(--bg2);
  border: 1px solid rgba(240,192,64,0.12);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.bonus-page-card:hover {
  border-color: rgba(240,192,64,0.35);
  box-shadow: 0 4px 24px rgba(240,192,64,0.1);
}

.bonus-page-card__header {
  padding: 24px;
  background: linear-gradient(135deg, rgba(240,192,64,0.08), transparent);
  border-bottom: 1px solid rgba(240,192,64,0.08);
  display: flex;
  align-items: center;
  gap: 16px;
}

.bonus-page-card__icon { font-size: 44px; }

.bonus-page-card__title { font-size: 22px; font-weight: 800; color: #fff; }
.bonus-page-card__value { font-size: 28px; font-weight: 900; color: var(--gold); margin-top: 2px; }

.bonus-page-card__body {
  padding: 20px 24px;
}

.bonus-page-card__desc {
  font-size: 14px;
  color: var(--text2);
  margin-bottom: 16px;
  line-height: 1.6;
}

.bonus-conditions {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.bonus-conditions li {
  font-size: 13px;
  color: var(--text2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.bonus-conditions li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 12px;
}

/* FAQ */
.faq-item {
  background: var(--bg2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}

.faq-question {
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
  user-select: none;
}

.faq-question:hover { background: rgba(240,192,64,0.04); }

.faq-question.open {
  color: var(--gold);
  background: rgba(240,192,64,0.04);
}

.faq-question::after {
  content: '+';
  font-size: 22px;
  color: var(--text2);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-question.open::after {
  transform: rotate(45deg);
  color: var(--gold);
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.faq-answer.open { display: block; }

/* Live page */
.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}

.live-card {
  background: var(--bg2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  cursor: pointer;
}

.live-card:hover {
  border-color: rgba(240,192,64,0.3);
  transform: translateY(-3px);
}

.live-card__img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: var(--bg3);
}

.live-card__info {
  padding: 14px;
}

.live-card__title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.live-card__meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text2);
}

.live-card__badge {
  display: inline-block;
  background: rgba(255,68,68,0.15);
  border: 1px solid rgba(255,68,68,0.4);
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(13,13,13,0.98);
  border-bottom: 1px solid rgba(240,192,64,0.15);
  backdrop-filter: blur(10px);
  z-index: 99;
  padding: 16px 20px;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav.open { display: flex; }
.mobile-nav .nav__link { width: 100%; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .burger { display: flex; }
  .header__actions .btn--outline { display: none; }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .app-banner { padding: 24px 20px; }
  .bonuses-strip-inner { flex-direction: column; }
  .bonus-card { border-right: none; border-bottom: 1px solid rgba(240,192,64,0.08); }
  .bonus-card:last-child { border-bottom: none; }
  .wins-list { grid-template-columns: 1fr; }
  .live-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
}

@media (max-width: 480px) {
  .footer__top { grid-template-columns: 1fr; }
  .hero__content { padding: 40px 16px; }
  .games-grid { grid-template-columns: repeat(3, 1fr); }
  .hero__bonus-badges { gap: 6px; }
}

/* ===== SEO INFO BLOCKS ===== */
.info-article h2 {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-top: 32px;
  margin-bottom: 10px;
}

.info-article h2:first-child { margin-top: 0; }

.info-faq { margin-top: 40px; }

.info-faq__title,
.info-links__title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-faq__title::before,
.info-links__title::before {
  content: '';
  display: block;
  width: 4px;
  height: 20px;
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  border-radius: 4px;
}

.info-links {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.info-links__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.info-links__list li a {
  display: inline-block;
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text2);
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 20px;
  transition: all 0.2s;
}

.info-links__list li a:hover {
  background: rgba(240,192,64,0.1);
  border-color: rgba(240,192,64,0.3);
  color: var(--gold);
}

.info-disclaimer {
  margin-top: 28px;
  font-size: 12px;
  color: #555;
  line-height: 1.5;
}

/* ===== UTILS ===== */
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mb-0 { margin-bottom: 0; }
.full-width { width: 100%; }

/* ===== NOTIFICATION ===== */
.win-notification {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.win-toast {
  background: var(--bg3);
  border: 1px solid rgba(240,192,64,0.3);
  border-left: 3px solid var(--gold);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
  max-width: 320px;
  box-shadow: var(--shadow);
  animation: toastIn 0.3s ease, toastOut 0.3s ease 4.7s forwards;
}

.win-toast.mega {
  border-left-color: var(--green);
  border-color: rgba(26,255,122,0.3);
}

@keyframes toastIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes toastOut {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(-20px); }
}

.win-toast__emoji { font-size: 24px; }

.win-toast__text { flex: 1; }
.win-toast__player { font-size: 13px; font-weight: 600; color: var(--text); }
.win-toast__detail { font-size: 12px; color: var(--text2); }
.win-toast__amount { font-size: 16px; font-weight: 800; color: var(--gold); white-space: nowrap; }
.win-toast.mega .win-toast__amount { color: var(--green); }
