/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #f5a623;
  --gold-light: #ffd166;
  --gold-dark: #d4841a;
  --bg: #07090f;
  --bg2: #0d1120;
  --bg3: #131929;
  --bg4: #1a2138;
  --text: #e8eaf0;
  --text-muted: #8892a4;
  --red: #e63946;
  --green: #2ec45a;
  --border: rgba(245,166,35,0.18);
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 8px 32px rgba(0,0,0,0.5);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; font-family: inherit; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(7,9,15,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 16px;
}

.header__logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.header__logo img { height: 38px; width: auto; }

.header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  margin: 0 12px;
  overflow-x: auto;
  scrollbar-width: none;
}
.header__nav::-webkit-scrollbar { display: none; }

.nav-link {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  transition: all 0.2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold);
  background: rgba(245,166,35,0.1);
}
.nav-link svg { width: 16px; height: 16px; flex-shrink: 0; }

.header__actions {
  display: flex; align-items: center; gap: 8px; flex-shrink: 0;
}

.btn-login {
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}
.btn-login:hover { border-color: var(--gold); color: var(--gold); }

.btn-register {
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #000;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(245,166,35,0.3);
}
.btn-register:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(245,166,35,0.5);
}

/* ===== MAIN WRAPPER ===== */
.main { padding-top: 64px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: 60px 20px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('background.webp');
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,9,15,0.1) 0%, rgba(7,9,15,0.85) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.4);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  color: #fff;
  text-shadow: 0 0 40px rgba(245,166,35,0.3);
}

.hero__title span {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.hero__desc {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #000;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 8px 32px rgba(245,166,35,0.45);
  transition: all 0.25s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(245,166,35,0.65);
}

/* ===== WINS TICKER ===== */
.wins-ticker {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 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(--bg2) 70%, transparent);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
  gap: 6px;
  white-space: nowrap;
}

.wins-ticker__track {
  display: flex;
  gap: 32px;
  padding-left: 160px;
  animation: ticker 32s linear infinite;
  width: max-content;
}

.wins-ticker__track:hover { animation-play-state: paused; }

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.win-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 13px;
}

.win-item__avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg4), var(--bg3));
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.win-item__name { color: var(--text-muted); }
.win-item__game { color: var(--text); font-weight: 600; }
.win-item__amount {
  color: var(--gold);
  font-weight: 800;
}
.win-item__amount.big { color: var(--green); }
.win-item__sep { color: var(--bg4); }

/* ===== SECTION ===== */
.section { padding: 48px 20px; max-width: 1280px; margin: 0 auto; }
.section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
  flex-wrap: wrap;
}
.section__title {
  font-size: 22px;
  font-weight: 800;
  display: flex; align-items: center; gap: 10px;
}
.section__title::before {
  content: '';
  width: 4px; height: 22px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}
.section__link {
  font-size: 13px;
  color: var(--gold);
  display: flex; align-items: center; gap: 4px;
  font-weight: 600;
  transition: gap 0.2s;
}
.section__link:hover { gap: 8px; }

/* ===== TABS ===== */
.tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.tabs::-webkit-scrollbar { display: none; }

.tab {
  padding: 8px 20px;
  border-radius: 50px;
  background: var(--bg3);
  border: 1px solid transparent;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.2s;
}
.tab.active {
  background: rgba(245,166,35,0.12);
  border-color: rgba(245,166,35,0.4);
  color: var(--gold);
}
.tab:hover:not(.active) { color: var(--text); border-color: var(--border); }

/* ===== 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);
  border: 1px solid transparent;
  aspect-ratio: 3/4;
  transition: all 0.25s;
  cursor: pointer;
  group: true;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 12px 32px rgba(245,166,35,0.25);
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}

.game-card:hover img { transform: scale(1.07); }

.game-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
  opacity: 0;
  transition: opacity 0.25s;
}

.game-card:hover .game-card__overlay { opacity: 1; }

.game-card__name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-card__play {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-size: 13px;
  font-weight: 700;
  width: 100%;
}

.game-card__badge {
  position: absolute;
  top: 8px; left: 8px;
  padding: 3px 8px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.game-card__badge--new { background: var(--green); color: #fff; }
.game-card__badge--hot { background: var(--red); color: #fff; }
.game-card__badge--top { background: var(--gold); color: #000; }

/* ===== BANNER ===== */
.bonus-banner {
  margin: 0 20px 48px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  background: linear-gradient(135deg, #1a2138 0%, #0d1120 50%, #1a1500 100%);
  border: 1px solid var(--border);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.bonus-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,166,35,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.bonus-banner__text { flex: 1; }
.bonus-banner__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.bonus-banner__label::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--gold);
}
.bonus-banner__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 8px;
}
.bonus-banner__title span { color: var(--gold); }
.bonus-banner__desc { font-size: 15px; color: var(--text-muted); }

.bonus-banner__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 8px 32px rgba(245,166,35,0.4);
  transition: all 0.25s;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.bonus-banner__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(245,166,35,0.6);
}

/* ===== INFO SECTION ===== */
.info-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 20px;
}

.info-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.info-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 40px;
  text-align: center;
  color: #fff;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.info-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.2s;
}
.info-card:hover { border-color: rgba(245,166,35,0.4); }

.info-card__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(245,166,35,0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}

.info-card__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.info-card__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.info-text-block {
  max-width: 860px;
  margin: 0 auto;
}
.info-text-block h2 { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 16px; }
.info-text-block h3 { font-size: 17px; font-weight: 700; color: var(--gold); margin: 24px 0 10px; }
.info-text-block p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 12px; }
.info-text-block ul { padding-left: 20px; margin-bottom: 12px; }
.info-text-block li { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 4px; }

/* ===== SUPPORT BADGE ===== */
.support-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: var(--radius);
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.25);
  max-width: 400px;
}

.support-badge__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 6px var(--green); }
  50% { box-shadow: 0 0 16px var(--green), 0 0 4px var(--green); }
}

.support-badge__text { font-size: 14px; }
.support-badge__title { font-weight: 700; color: #fff; }
.support-badge__sub { font-size: 12px; color: var(--text-muted); }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 40px 20px 24px;
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

.footer__logo { margin-bottom: 12px; }
.footer__logo img { height: 36px; }
.footer__desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }

.footer__heading { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 16px; }

.footer__links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer__links a { font-size: 13px; color: var(--text-muted); transition: color 0.2s; }
.footer__links a:hover { color: var(--gold); }

.footer__bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copy { font-size: 12px; color: var(--text-muted); }
.footer__age {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--red);
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,17,32,0.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 8px 0 max(8px, env(safe-area-inset-bottom));
  grid-template-columns: repeat(4, 1fr);
}

.mobile-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px;
  font-size: 11px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.mobile-nav__item.active, .mobile-nav__item:hover { color: var(--gold); }
.mobile-nav__item svg { width: 22px; height: 22px; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
  padding: 48px 20px 32px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero__title { font-size: 36px; font-weight: 900; color: #fff; margin-bottom: 8px; }
.page-hero__title span { color: var(--gold); }
.page-hero__sub { font-size: 15px; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  border-radius: var(--radius);
  background: var(--bg3);
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  width: 100%;
  background: none;
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}
.faq-item__q:hover { color: var(--gold); }

.faq-item__icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s;
  font-size: 16px;
  color: var(--gold);
}

.faq-item.open .faq-item__icon { transform: rotate(45deg); background: var(--gold); color: #000; border-color: var(--gold); }

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-item__a { max-height: 400px; }

.faq-item__a-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ===== BONUS CARDS ===== */
.bonus-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }

.bonus-card {
  border-radius: 16px;
  background: var(--bg3);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.25s;
}
.bonus-card:hover { border-color: rgba(245,166,35,0.5); transform: translateY(-4px); box-shadow: var(--shadow); }

.bonus-card__img {
  height: 160px;
  background: linear-gradient(135deg, var(--bg4), var(--bg2));
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
  position: relative;
  overflow: hidden;
}

.bonus-card__img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,166,35,0.1), transparent);
}

.bonus-card__body { padding: 20px; }
.bonus-card__tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  background: rgba(245,166,35,0.15);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.bonus-card__title { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.bonus-card__desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin-bottom: 16px; }
.bonus-card__cta {
  display: block;
  width: 100%;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  transition: all 0.2s;
}
.bonus-card__cta:hover { box-shadow: 0 4px 20px rgba(245,166,35,0.5); }

/* ===== LIVE CARDS ===== */
.live-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }

.live-card {
  border-radius: var(--radius);
  background: var(--bg3);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.25s;
}
.live-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(245,166,35,0.2); }

.live-card__img {
  height: 180px;
  background: linear-gradient(135deg, #1a2138, #0d1120);
  display: flex; align-items: center; justify-content: center;
  font-size: 56px;
  position: relative;
}

.live-card__live-badge {
  position: absolute;
  top: 10px; left: 10px;
  display: flex; align-items: center; gap: 5px;
  padding: 4px 10px;
  border-radius: 50px;
  background: var(--red);
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}
.live-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

.live-card__players {
  position: absolute;
  top: 10px; right: 10px;
  display: flex; align-items: center; gap: 4px;
  padding: 4px 10px;
  border-radius: 50px;
  background: rgba(0,0,0,0.6);
  font-size: 11px;
  color: var(--text-muted);
}

.live-card__body { padding: 16px; }
.live-card__name { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.live-card__provider { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
.live-card__limits { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-muted); }
.live-card__limits span:last-child { color: var(--gold); font-weight: 600; }

/* ===== RECENT WINS PANEL ===== */
.wins-panel { max-width: 1280px; margin: 0 auto 40px; padding: 0 20px; }
.wins-panel__title { font-size: 18px; font-weight: 800; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.wins-panel__title::before { content: ''; width: 4px; height: 18px; background: var(--gold); border-radius: 2px; }
.wins-list { display: flex; flex-direction: column; gap: 8px; }

.win-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--bg3);
  border: 1px solid transparent;
  gap: 12px;
  transition: all 0.2s;
  animation: fadeIn 0.4s ease;
}
.win-row:hover { border-color: var(--border); }
@keyframes fadeIn { from { opacity:0; transform:translateY(-8px); } to { opacity:1; transform:none; } }

.win-row__user { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); }
.win-row__user-av {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--bg4);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--gold); font-weight: 700;
  flex-shrink: 0;
}
.win-row__game { font-size: 13px; color: var(--text); font-weight: 600; }
.win-row__amount { font-size: 15px; font-weight: 800; color: var(--gold); text-align: right; }
.win-row__amount.mega { color: var(--green); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .header__nav { display: none; }
  .mobile-nav { display: grid; }
  .main { padding-bottom: 72px; }

  .bonus-banner {
    flex-direction: column;
    padding: 28px 24px;
    text-align: center;
  }
  .bonus-banner__label { justify-content: center; }
  .bonus-banner__cta { width: 100%; justify-content: center; }

  .footer__inner { grid-template-columns: 1fr 1fr; }

  .games-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }

  .hero { min-height: 400px; padding: 40px 16px; }

  .btn-login { display: none; }
}

@media (max-width: 480px) {
  .footer__inner { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
}
