/* ===== BASE ===== */
:root {
  --bg: #0d0b1a;
  --bg2: #160f2e;
  --card: #1a1438;
  --card2: #221952;
  --gold: #ffd679;
  --gold2: #ffb830;
  --pink: #ff3d9a;
  --pink2: #c4006e;
  --purple: #7b2fff;
  --text: #ffffff;
  --text2: #b8a8d8;
  --radius: 12px;
  --radius-lg: 18px;
  --trans: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Nunito', 'Segoe UI', Arial, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 11, 26, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 214, 121, 0.12);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo img { height: 34px; width: auto; }
.logo-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-link {
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text2);
  transition: color var(--trans), background var(--trans);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold);
  background: rgba(255, 214, 121, 0.1);
}

.header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  outline: none;
  transition: transform var(--trans), box-shadow var(--trans), opacity var(--trans);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 214, 121, 0.5);
  color: var(--gold);
}
.btn-outline:hover { border-color: var(--gold); background: rgba(255, 214, 121, 0.08); }

.btn-primary {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink2) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 61, 154, 0.4);
}
.btn-primary:hover { box-shadow: 0 6px 28px rgba(255, 61, 154, 0.6); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
  color: #1a0a00;
  box-shadow: 0 4px 20px rgba(255, 184, 48, 0.4);
}
.btn-gold:hover { box-shadow: 0 6px 28px rgba(255, 184, 48, 0.6); }

.btn-lg { padding: 14px 36px; font-size: 16px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../header-bg.webp');
  background-size: cover;
  background-position: center top;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(13, 11, 26, 0.88) 0%,
    rgba(13, 11, 26, 0.60) 50%,
    rgba(13, 11, 26, 0.25) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 20px;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 61, 154, 0.15);
  border: 1px solid rgba(255, 61, 154, 0.5);
  color: var(--pink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
}
.hero-title span { color: var(--gold); }

.hero-subtitle {
  font-size: 16px;
  color: var(--text2);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.6;
}

.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== FEATURES ===== */
.features {
  background: linear-gradient(180deg, rgba(123, 47, 255, 0.08) 0%, transparent 100%);
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.features-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
}
.features-inner::-webkit-scrollbar { display: none; }

.feature-card {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 12px 18px;
  white-space: nowrap;
  transition: background var(--trans), border-color var(--trans);
}
.feature-card:hover { background: rgba(255, 214, 121, 0.08); border-color: rgba(255, 214, 121, 0.25); }
.feature-icon { font-size: 24px; }
.feature-label { font-size: 13px; font-weight: 700; color: var(--text); }

/* ===== SECTION ===== */
.section { padding: 48px 0; }

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
}

.section-title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 28px;
  background: linear-gradient(180deg, var(--pink), var(--purple));
  border-radius: 2px;
}

.see-all {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: opacity var(--trans);
}
.see-all:hover { opacity: 0.75; }

/* ===== GAMES GRID ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

.game-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform var(--trans), box-shadow var(--trans);
}
.game-card:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 12px 36px rgba(0,0,0,0.5); }

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.game-card:hover img { transform: scale(1.08); }

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13,11,26,0.9) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
  opacity: 0;
  transition: opacity var(--trans);
}
.game-card:hover .game-card-overlay { opacity: 1; }

.game-card-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.game-card-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--pink), var(--pink2));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 50px;
  width: 100%;
  transition: box-shadow var(--trans);
}
.game-card-play:hover { box-shadow: 0 4px 16px rgba(255,61,154,0.6); }

.game-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, var(--pink), var(--pink2));
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.06em;
}

/* ===== WINS TICKER ===== */
.wins-section {
  background: linear-gradient(90deg, rgba(123,47,255,0.12) 0%, rgba(255,61,154,0.08) 100%);
  border-top: 1px solid rgba(123,47,255,0.2);
  border-bottom: 1px solid rgba(123,47,255,0.2);
  padding: 16px 0;
}

.wins-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.wins-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.wins-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--pink);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(255,61,154,0.7); }
  50% { opacity: 0.8; transform: scale(1.15); box-shadow: 0 0 0 5px rgba(255,61,154,0); }
}

.wins-list {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.wins-list::-webkit-scrollbar { display: none; }

.win-card {
  flex: 0 0 auto;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
  animation: winSlideIn 0.4s ease;
}
.win-card.win-big { border-color: rgba(255,214,121,0.3); background: rgba(255,214,121,0.06); }

@keyframes winSlideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

.win-avatar {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
  color: #fff;
}

.win-info { flex: 1; min-width: 0; }
.win-user { font-size: 13px; font-weight: 700; color: var(--text); }
.win-game { font-size: 11px; color: var(--text2); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.win-amount {
  font-size: 16px;
  font-weight: 900;
  color: var(--gold);
  white-space: nowrap;
}

/* ===== PROMO CARDS ===== */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.promo-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform var(--trans), box-shadow var(--trans);
}
.promo-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,0.4); }

.promo-card-header {
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.promo-icon { font-size: 42px; flex-shrink: 0; }

.promo-card-title { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.promo-card-sub { font-size: 13px; color: var(--text2); }

.promo-card-amount {
  font-size: 32px;
  font-weight: 900;
  color: var(--gold);
  padding: 0 24px 8px;
}

.promo-card-desc {
  font-size: 13px;
  color: var(--text2);
  padding: 0 24px 20px;
  line-height: 1.6;
}

.promo-card-footer {
  padding: 16px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.promo-card .badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--pink);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
}

/* ===== BONUS PROGRESS ===== */
.bonus-progress-bar {
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 10px;
}
.bonus-progress-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  animation: progressAnim 1.5s ease forwards;
}
@keyframes progressAnim { from { width: 0; } }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  transition: color var(--trans);
  user-select: none;
}
.faq-question:hover { color: var(--gold); }

.faq-toggle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  transition: transform var(--trans), background var(--trans);
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--pink); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 500px; }

.faq-answer-inner {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
}

/* ===== SEO TEXT ===== */
.seo-section { padding: 48px 0; border-top: 1px solid rgba(255,255,255,0.06); }

.seo-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.seo-block {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.seo-block h1 { font-size: 22px; font-weight: 800; margin-bottom: 16px; color: var(--gold); }
.seo-block h2, .seo-block h3 { font-size: 17px; font-weight: 700; margin: 24px 0 10px; color: var(--text); }
.seo-block p { font-size: 14px; color: var(--text2); line-height: 1.8; margin-bottom: 12px; }
.seo-block ol, .seo-block ul { padding-left: 20px; color: var(--text2); font-size: 14px; line-height: 1.8; margin-bottom: 12px; }
.seo-block a { color: var(--pink); transition: color var(--trans); }
.seo-block a:hover { color: var(--gold); }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 48px 0 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-hero-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  margin-bottom: 10px;
}
.page-hero-title span { color: var(--gold); }
.page-hero-sub { font-size: 15px; color: var(--text2); max-width: 600px; line-height: 1.6; }

/* ===== FILTERS ===== */
.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.filter-btn {
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  color: var(--text2);
  transition: all var(--trans);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--pink);
  background: rgba(255,61,154,0.12);
  color: var(--text);
}

/* ===== GAMES XL ===== */
.games-grid-xl {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
}

.game-card-xl {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform var(--trans), box-shadow var(--trans);
}
.game-card-xl:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 16px 40px rgba(0,0,0,0.5); }
.game-card-xl img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.game-card-xl:hover img { transform: scale(1.1); }

.game-card-xl .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(13,11,26,0.92) 0%, transparent 50%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 14px;
  opacity: 0; transition: opacity var(--trans);
}
.game-card-xl:hover .overlay { opacity: 1; }

.g-name { font-size: 13px; font-weight: 800; margin-bottom: 4px; }
.g-provider { font-size: 11px; color: var(--text2); margin-bottom: 8px; }
.g-players { font-size: 10px; color: var(--pink); margin-bottom: 4px; }
.g-btn {
  display: block; text-align: center;
  background: linear-gradient(135deg, var(--pink), var(--pink2));
  color: #fff; font-size: 12px; font-weight: 800;
  padding: 8px; border-radius: 8px; margin-top: 8px;
}

.g-badge {
  position: absolute; top: 10px; left: 10px;
  font-size: 10px; font-weight: 800;
  text-transform: uppercase; padding: 3px 8px;
  border-radius: 4px; letter-spacing: 0.06em;
}
.badge-hot { background: linear-gradient(135deg, #ff4444, #ff7700); color: #fff; }
.badge-new { background: linear-gradient(135deg, #00c9ff, #0066ff); color: #fff; }
.badge-mega { background: linear-gradient(135deg, var(--gold), var(--gold2)); color: #1a0a00; }

/* ===== PROVIDER TAGS ===== */
.provider-grid { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.provider-tag {
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px; font-weight: 700;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--text2); cursor: pointer;
  transition: all var(--trans);
}
.provider-tag:hover, .provider-tag.active {
  border-color: var(--gold); color: var(--gold);
  background: rgba(255,214,121,0.08);
}

/* ===== SEARCH ===== */
.search-bar { display: flex; gap: 12px; margin-bottom: 24px; align-items: center; }
.search-input {
  flex: 1; padding: 11px 16px;
  background: var(--card); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; color: var(--text);
  font-size: 14px; font-family: inherit;
  outline: none; transition: border-color var(--trans);
}
.search-input::placeholder { color: var(--text2); }
.search-input:focus { border-color: var(--pink); }

/* ===== LIVE TABLE ===== */
.live-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
  font-size: 14px;
}

.live-table th {
  text-align: left;
  padding: 0 16px 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text2);
}

.live-table tbody tr {
  background: var(--card);
  border-radius: var(--radius);
  transition: background var(--trans);
}
.live-table tbody tr:hover { background: var(--card2); }

.live-table td {
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.05);
  border-left: none;
  border-right: none;
}
.live-table td:first-child {
  border-left: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius) 0 0 var(--radius);
}
.live-table td:last-child {
  border-right: 1px solid rgba(255,255,255,0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.td-game { display: flex; align-items: center; gap: 10px; }
.td-game-thumb { width: 40px; height: 30px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.td-amount { font-weight: 900; color: var(--gold); }
.td-time { color: var(--text2); font-size: 12px; }

/* ===== SEO FAQ ===== */
.seo-faq { margin-top: 32px; }
.seo-faq h2 { font-size: 18px; font-weight: 800; margin-bottom: 16px; color: var(--gold); }

.seo-faq-item {
  border-left: 3px solid rgba(255,61,154,0.4);
  padding: 12px 0 12px 18px;
  margin-bottom: 18px;
}
.seo-faq-item:last-of-type { margin-bottom: 0; }

.seo-faq-q { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.seo-faq-a { font-size: 14px; color: var(--text2); line-height: 1.7; margin: 0; }

/* ===== INTERNAL LINKS ===== */
.seo-internal-links {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.seo-internal-links h2 {
  font-size: 16px; font-weight: 800; margin-bottom: 14px;
  color: var(--text2); text-transform: uppercase; letter-spacing: 0.06em;
}
.seo-internal-links ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.seo-internal-links li { font-size: 14px; color: var(--text2); line-height: 1.5; }
.seo-internal-links a { color: var(--pink); font-weight: 700; transition: color var(--trans); }
.seo-internal-links a:hover { color: var(--gold); }

/* ===== STATS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.stat-card {
  text-align: center;
  padding: 24px;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform var(--trans);
}
.stat-card:hover { transform: translateY(-2px); }
.stat-value { font-size: 32px; font-weight: 900; }
.stat-label { font-size: 13px; color: var(--text2); margin-top: 6px; }

/* ===== LIVE GAME CARDS ===== */
.live-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.live-game-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans);
}
.live-game-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.5); }

.live-game-thumb-bg {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(123,47,255,0.3) 0%, rgba(255,61,154,0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
}

.live-game-info { padding: 16px; }
.live-game-name { font-size: 16px; font-weight: 800; margin-bottom: 4px; }
.live-game-type { font-size: 12px; color: var(--text2); margin-bottom: 12px; }
.live-game-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.live-game-limits {
  font-size: 12px;
  color: var(--gold);
  font-weight: 700;
}
.live-badge-online {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #4ade80;
  font-weight: 700;
}
.live-badge-online::before {
  content: '';
  width: 6px; height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.wins-summary {
  background: linear-gradient(135deg, rgba(123,47,255,0.15) 0%, rgba(255,61,154,0.1) 100%);
  border: 1px solid rgba(123,47,255,0.3);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
}
.ws-item { text-align: center; }
.ws-val { font-size: 24px; font-weight: 900; color: var(--gold); }
.ws-lab { font-size: 12px; color: var(--text2); margin-top: 4px; }

/* ===== FOOTER ===== */
.footer {
  background: #080614;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0 24px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: 13px; color: var(--text2); line-height: 1.7; }

.footer-col h4 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text2);
  margin-bottom: 16px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--text2); transition: color var(--trans); }
.footer-links 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-copy { font-size: 12px; color: var(--text2); }
.footer-18 {
  font-size: 11px;
  font-weight: 800;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 3px 8px;
  color: var(--text2);
}

/* ===== WIN NOTIFICATIONS ===== */
.win-notification {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  background: rgba(22, 15, 46, 0.96);
  border: 1px solid rgba(255, 214, 121, 0.3);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  max-width: 340px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(123,47,255,0.2);
  animation: notifIn 0.4s cubic-bezier(0.34,1.56,0.64,1);
  pointer-events: none;
}
@keyframes notifIn {
  from { opacity: 0; transform: translateX(-40px) scale(0.9); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}
.win-notification.hiding { animation: notifOut 0.3s ease forwards; }
@keyframes notifOut { to { opacity: 0; transform: translateX(-40px); } }

.notif-avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.notif-content { flex: 1; }
.notif-user { font-size: 14px; font-weight: 700; }
.notif-game { font-size: 11px; color: var(--text2); margin: 2px 0; }
.notif-amount { font-size: 18px; font-weight: 900; color: var(--gold); }
.notif-icon { font-size: 28px; }

/* ===== BURGER ===== */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(13,11,26,0.98);
    padding: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    gap: 4px;
    z-index: 99;
  }
  .burger { display: flex; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
  .games-grid-xl { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
  .live-games-grid { grid-template-columns: 1fr; }
  .promo-grid { grid-template-columns: 1fr; }
  .btn-lg { padding: 12px 28px; font-size: 15px; }
  .hero { min-height: 360px; }
  .stat-value { font-size: 26px; }
}

@media (max-width: 480px) {
  .header-inner { gap: 12px; }
  .header-actions .btn-outline { display: none; }
  .seo-block { padding: 20px; }
}
