@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

:root {
  --bg-primary: #0a0d1a;
  --bg-secondary: #0e1221;
  --bg-card: #131728;
  --bg-card-hover: #1a2035;
  --accent-gold: #f5c518;
  --accent-gold-dark: #d4a80f;
  --accent-orange: #ff6b1a;
  --accent-purple: #7c3aed;
  --accent-purple-light: #9f5cf0;
  --text-primary: #ffffff;
  --text-secondary: #9aa3c2;
  --text-muted: #5a6380;
  --border-color: #1e2540;
  --green: #22c55e;
  --shadow-gold: 0 0 30px rgba(245, 197, 24, 0.3);
  --shadow-purple: 0 0 30px rgba(124, 58, 237, 0.3);
  --gradient-hero: linear-gradient(135deg, #0a0d1a 0%, #1a0a2e 50%, #0a0d1a 100%);
  --gradient-gold: linear-gradient(135deg, #f5c518 0%, #ff8c00 100%);
  --gradient-card: linear-gradient(145deg, #131728, #1a2035);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

/* ======= HEADER ======= */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 13, 26, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding: 0 20px;
  height: 70px;
  display: flex;
  align-items: center;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo img {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(245, 197, 24, 0.4));
}

nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

nav a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

nav a:hover,
nav a.active {
  color: var(--text-primary);
  background: rgba(245, 197, 24, 0.1);
}

nav a.active {
  color: var(--accent-gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-login {
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-login:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.btn-register {
  font-size: 14px;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 8px;
  background: var(--gradient-gold);
  color: #000;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(245, 197, 24, 0.35);
}

.btn-register:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 197, 24, 0.5);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: 0.3s;
}

/* ======= MOBILE MENU ======= */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 20px;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: all 0.2s;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--accent-gold);
  background: rgba(245, 197, 24, 0.08);
  border-color: rgba(245, 197, 24, 0.2);
}

.mobile-menu-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.mobile-menu-actions a {
  flex: 1;
  text-align: center;
}

/* ======= HERO SECTION ======= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
  background: var(--gradient-hero);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 20px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 197, 24, 0.1);
  border: 1px solid rgba(245, 197, 24, 0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-gold);
  width: fit-content;
}

.hero-badge::before {
  content: '🎰';
  font-size: 15px;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero-title .highlight {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-bonus-block {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.hero-bonus-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-gold);
}

.bonus-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.bonus-amount {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.bonus-sub {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-secondary);
  margin-top: 6px;
}

.bonus-sub span {
  color: var(--accent-gold);
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 800;
  padding: 16px 32px;
  border-radius: 12px;
  background: var(--gradient-gold);
  color: #000;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 6px 25px rgba(245, 197, 24, 0.4);
  border: none;
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(245, 197, 24, 0.55);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  padding: 15px 28px;
  border-radius: 12px;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-secondary:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(245, 197, 24, 0.05);
}

.hero-features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}

.hero-feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(34, 197, 94, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-image::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.25) 0%, transparent 65%);
  border-radius: 50%;
}

.hero-image img {
  width: 100%;
  max-width: 480px;
  filter: drop-shadow(0 20px 60px rgba(124, 58, 237, 0.4));
  animation: float 6s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* ======= STATS STRIP ======= */
.stats-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 20px;
}

.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
}

.stat-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.stat-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 3px;
}

/* ======= SECTION COMMONS ======= */
section {
  padding: 80px 20px;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
  flex-wrap: wrap;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.2;
}

.section-title span {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
}

.see-all {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
  white-space: nowrap;
}

.see-all:hover {
  gap: 10px;
}

/* ======= GAMES SECTION ======= */
.games-section {
  background: var(--bg-secondary);
}

.games-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.game-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: all 0.2s;
}

.game-tab:hover,
.game-tab.active {
  color: var(--text-primary);
  border-color: var(--accent-gold);
  background: rgba(245, 197, 24, 0.08);
}

.game-tab.active {
  color: var(--accent-gold);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 16px;
}

.game-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  group: true;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 197, 24, 0.3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.game-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  position: relative;
  overflow: hidden;
}

.game-card-img::after {
  content: 'Играть';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-gold);
  opacity: 0;
  transition: opacity 0.2s;
}

.game-card:hover .game-card-img::after {
  opacity: 1;
}

.game-card-info {
  padding: 12px;
}

.game-card-name {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-card-provider {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 3px;
}

.game-card-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  background: var(--gradient-gold);
  color: #000;
}

/* ======= BONUS SECTION ======= */
.bonus-section {
  background: var(--bg-primary);
}

.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.bonus-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.25s ease;
  position: relative;
}

.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(245, 197, 24, 0.3);
}

.bonus-card-header {
  padding: 28px 28px 20px;
  position: relative;
}

.bonus-card-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
}

.bonus-card-icon {
  font-size: 40px;
  margin-bottom: 14px;
  display: block;
}

.bonus-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
}

.bonus-card-amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.bonus-card-body {
  padding: 0 28px 28px;
}

.bonus-card-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.bonus-card-btn {
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  padding: 14px;
  border-radius: 10px;
  background: var(--gradient-gold);
  color: #000;
  transition: all 0.2s;
  box-shadow: 0 4px 15px rgba(245, 197, 24, 0.3);
}

.bonus-card-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(245, 197, 24, 0.45);
}

/* ======= WHY US ======= */
.why-section {
  background: var(--bg-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.25s ease;
}

.feature-card:hover {
  border-color: rgba(245, 197, 24, 0.25);
  transform: translateY(-3px);
}

.feature-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.feature-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ======= LIVE SECTION ======= */
.live-section {
  background: var(--bg-primary);
}

.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.live-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
}

.live-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 26, 0.35);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.live-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a0a2e, #0a1a2e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  position: relative;
}

.live-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ef4444;
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.live-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.live-card-info {
  padding: 14px;
}

.live-card-name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.live-card-meta {
  font-size: 12px;
  color: var(--text-muted);
}

/* ======= SEO TEXT ======= */
.seo-section {
  background: var(--bg-secondary);
  padding: 60px 20px;
}

.seo-inner {
  max-width: 900px;
  margin: 0 auto;
}

.seo-inner h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
  margin-top: 40px;
  color: var(--text-primary);
}

.seo-inner h2:first-child {
  margin-top: 0;
}

.seo-inner h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  margin-top: 28px;
  color: var(--text-secondary);
}

.seo-inner p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.seo-inner ul, .seo-inner ol {
  margin: 12px 0 20px 20px;
}

.seo-inner li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 8px;
}

.seo-inner a {
  color: var(--accent-gold);
  transition: opacity 0.2s;
}

.seo-inner a:hover {
  opacity: 0.8;
}

/* ======= SUPPORT BANNER ======= */
.support-banner {
  background: var(--gradient-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 20px;
}

.support-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
}

.support-inner strong {
  color: var(--green);
}

.support-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* ======= FOOTER ======= */
footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  padding: 50px 20px 30px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-age {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.age-badge {
  background: var(--text-muted);
  color: var(--bg-primary);
  font-weight: 800;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 6px;
}

/* ======= PAGE HERO (inner pages) ======= */
.page-hero {
  padding: 120px 20px 60px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.18) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 900;
  margin-bottom: 14px;
}

.page-hero-title span {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero-desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--accent-gold);
}

.breadcrumb-sep {
  color: var(--text-muted);
}

/* ======= FILTERS ======= */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.filter-chip {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: all 0.2s;
}

.filter-chip:hover,
.filter-chip.active {
  color: var(--accent-gold);
  border-color: rgba(245, 197, 24, 0.4);
  background: rgba(245, 197, 24, 0.08);
}

/* ======= PROVIDERS ======= */
.providers-strip {
  padding: 30px 20px;
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.providers-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.providers-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 20px;
}

.providers-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.provider-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  transition: all 0.2s;
  cursor: pointer;
}

.provider-item:hover {
  border-color: rgba(245, 197, 24, 0.3);
  color: var(--text-primary);
}

/* ======= RESPONSIVE ======= */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  nav { display: none; }
  .burger { display: flex; }
  
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 20px;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    max-width: 280px;
  }

  .hero-image::before {
    width: 280px;
    height: 280px;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-features {
    justify-content: center;
  }

  .hero-badge {
    margin: 0 auto;
  }

  .stats-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .games-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
}

@media (max-width: 480px) {
  .stats-inner {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .hero-title {
    font-size: 30px;
  }

  section {
    padding: 50px 16px;
  }
}

/* ======= ANIMATIONS ======= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.fade-in-up:nth-child(2) { animation-delay: 0.1s; }
.fade-in-up:nth-child(3) { animation-delay: 0.2s; }
.fade-in-up:nth-child(4) { animation-delay: 0.3s; }

/* ======= GLOW EFFECTS ======= */
.glow-gold { box-shadow: var(--shadow-gold); }
.glow-purple { box-shadow: var(--shadow-purple); }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--border-color); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-gold); }

/* ======= WIN TOAST NOTIFICATIONS ======= */
.win-toasts-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.win-toast {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid rgba(245, 197, 24, 0.3);
  border-radius: 14px;
  padding: 13px 36px 13px 14px;
  min-width: 280px;
  max-width: 320px;
  cursor: pointer;
  pointer-events: all;
  text-decoration: none;
  color: var(--text-primary);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55), 0 0 20px rgba(245, 197, 24, 0.07);
  transform: translateX(calc(-100% - 30px));
  opacity: 0;
  transition: transform 0.42s cubic-bezier(0.34, 1.46, 0.64, 1), opacity 0.3s ease, border-color 0.2s;
  position: relative;
}

.win-toast--visible {
  transform: translateX(0);
  opacity: 1;
}

.win-toast--leaving {
  transform: translateX(calc(-100% - 30px));
  opacity: 0;
  transition: transform 0.38s ease-in, opacity 0.3s ease;
}

.win-toast:hover {
  border-color: rgba(245, 197, 24, 0.55);
  background: var(--bg-card-hover);
}

.win-toast__icon {
  font-size: 24px;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(245, 197, 24, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.win-toast__body {
  flex: 1;
  min-width: 0;
}

.win-toast__player {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.win-toast__amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 19px;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.win-toast__meta {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.win-toast__close {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 17px;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  padding: 2px 4px;
  transition: color 0.2s;
}

.win-toast__close:hover {
  color: var(--accent-gold);
}

/* Live pulse dot for win counter */
.stat-live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  margin-right: 6px;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .win-toasts-container {
    left: 12px;
    right: 12px;
    bottom: 14px;
  }

  .win-toast {
    min-width: unset;
    max-width: 100%;
  }
}

/* ======= PAGE FAQ (SEO) ======= */
.page-faq {
  margin-top: 48px;
}

.page-faq__heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.page-faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px 24px;
  transition: border-color 0.2s;
}

.page-faq__item:hover {
  border-color: rgba(245, 197, 24, 0.2);
}

.page-faq__question {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.page-faq__answer {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* ======= INTERNAL LINKS (SEO) ======= */
.internal-links {
  margin-top: 48px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
}

.internal-links__heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.internal-links__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.internal-links__list li a {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 7px 16px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: all 0.2s;
}

.internal-links__list li a:hover {
  color: var(--accent-gold);
  border-color: rgba(245, 197, 24, 0.35);
  background: rgba(245, 197, 24, 0.05);
}

/* ======= SEO DISCLAIMER ======= */
.seo-disclaimer {
  margin-top: 32px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}
