@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg-primary: #0a0e1a;
  --bg-secondary: #111827;
  --bg-card: #1a2035;
  --bg-card-hover: #1f2a45;
  --bg-sidebar: #0d1220;
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --accent: #f59e0b;
  --accent-hover: #fbbf24;
  --accent-glow: rgba(245, 158, 11, 0.3);
  --cta: #3b82f6;
  --cta-hover: #60a5fa;
  --cta-glow: rgba(59, 130, 246, 0.3);
  --gradient-gold: linear-gradient(135deg, #f59e0b, #f97316);
  --gradient-blue: linear-gradient(135deg, #3b82f6, #6366f1);
  --gradient-hero: linear-gradient(135deg, #1a1040 0%, #0f172a 50%, #0c1a2e 100%);
  --border: rgba(255,255,255,0.06);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Unbounded', sans-serif;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Particle Background */
#particles-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Layout */
.page-wrapper {
  position: relative;
  z-index: 1;
}

/* Header */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 60px;
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo svg { width: 36px; height: 36px; }

.logo-text {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 1px;
}
.logo-text span:first-child { color: #f59e0b; }
.logo-text span:last-child { color: #3b82f6; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-nav a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s;
}
.header-nav a:hover, .header-nav a.active {
  color: var(--text-primary);
  background: var(--bg-card);
}

.btn-register {
  background: var(--gradient-blue);
  color: #fff !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 0 20px var(--cta-glow);
}
.btn-register:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 30px var(--cta-glow);
}

/* Main Content */
.main-content {
  padding-top: 80px;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 40px;
}

/* Hero Section */
.hero {
  background: var(--gradient-hero);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(245,158,11,0.08) 0%, transparent 60%);
  animation: heroGlow 8s ease-in-out infinite;
}
@keyframes heroGlow {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
}

.hero-content { position: relative; z-index: 1; }

.hero .promo-badge {
  display: inline-block;
  background: var(--gradient-gold);
  color: #000;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 30px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero-stat {
  text-align: center;
}
.hero-stat .value {
  font-family: 'Unbounded', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
}
.hero-stat .label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-gold);
  color: #000;
  padding: 14px 40px;
  border-radius: 50px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  box-shadow: 0 0 30px var(--accent-glow);
}
.btn-play:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px var(--accent-glow);
}

.online-counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-secondary);
}
.online-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Banner Carousel */
.banner-carousel {
  position: relative;
  margin-bottom: 40px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.banner-track {
  display: flex;
  transition: transform 0.5s ease;
}

.banner-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  padding: 0;
}

.banner-card {
  border-radius: var(--radius);
  padding: 24px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
  border: 1px solid var(--border);
}
.banner-card:hover { transform: translateY(-2px); }

.banner-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.banner-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  position: relative;
  z-index: 1;
}

.banner-card .banner-btn {
  display: inline-block;
  margin-top: 12px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  position: relative;
  z-index: 1;
  transition: 0.2s;
}
.banner-card .banner-btn:hover {
  background: rgba(255,255,255,0.3);
}

.banner-card .banner-big {
  font-family: 'Unbounded', sans-serif;
  font-size: 42px;
  font-weight: 900;
  position: relative;
  z-index: 1;
}

.banner-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.banner-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  cursor: pointer;
  transition: 0.2s;
}
.banner-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .banner-slide { grid-template-columns: 1fr; }
  .banner-card { min-height: 140px; }
  .banner-card .banner-big { font-size: 32px; }
}

/* Top Action Buttons */
.top-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.top-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: 0.2s;
}
.top-action-btn:hover {
  border-color: var(--accent);
  background: var(--bg-card-hover);
}

/* Referral Block */
.referral-block {
  background: linear-gradient(135deg, #1a1040 0%, #2d1b69 50%, #1e3a5f 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}

.referral-icon {
  font-size: 64px;
  flex-shrink: 0;
}

.referral-content { flex: 1; }

.referral-content h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.referral-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.referral-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
}

.referral-stat {
  text-align: center;
}
.referral-stat .ref-val {
  font-family: 'Unbounded', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
}
.referral-stat .ref-label {
  font-size: 12px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .referral-block { flex-direction: column; text-align: center; }
  .referral-stats { justify-content: center; }
}

/* Winners Block */
.winners-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 10px;
}

.winner-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
}

.winner-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gradient-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.winner-info { flex: 1; }
.winner-info .w-name {
  font-size: 13px;
  font-weight: 600;
}
.winner-info .w-game {
  font-size: 11px;
  color: var(--text-muted);
}

.winner-amount {
  text-align: right;
}
.winner-amount .w-mult {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
}
.winner-amount .w-sum {
  font-size: 14px;
  font-weight: 700;
  color: #22c55e;
}

/* Share Buttons */
.share-block {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.share-block span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  transition: 0.2s;
  cursor: pointer;
  text-decoration: none;
}
.share-btn:hover { transform: translateY(-1px); opacity: 0.9; }
.share-btn.tg { background: #0088cc; }
.share-btn.vk { background: #4a76a8; }
.share-btn.wa { background: #25d366; }
.share-btn.tw { background: #1da1f2; }
.share-btn.ok { background: #ee8208; }

/* Sections */
.section {
  margin-bottom: 40px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.section-title {
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Game Cards */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

.game-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
  border: 1px solid var(--border);
  position: relative;
}
.game-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.game-card-img {
  aspect-ratio: 1;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}

.game-card-img .play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
}
.game-card:hover .play-overlay { opacity: 1; }

.play-overlay span {
  background: var(--gradient-gold);
  color: #000;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
}

.game-card-info {
  padding: 10px 12px;
}
.game-card-info h4 {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game-card-info .provider {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Bonus Cards */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.3s;
}
.bonus-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.bonus-card.featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(245,158,11,0.08) 100%);
}

.bonus-card .bonus-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.bonus-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.bonus-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.bonus-card .bonus-value {
  font-family: 'Unbounded', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  margin: 12px 0;
}

.btn-bonus {
  display: inline-block;
  margin-top: 16px;
  background: var(--gradient-gold);
  color: #000;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s;
}
.btn-bonus:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 20px var(--accent-glow);
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 20px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.review-name {
  font-weight: 600;
  font-size: 15px;
}

.review-country {
  font-size: 12px;
  color: var(--text-muted);
}

.review-stars {
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 8px;
}

.review-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Rating Summary */
.rating-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  margin-bottom: 30px;
}

.rating-big {
  font-family: 'Unbounded', sans-serif;
  font-size: 64px;
  font-weight: 900;
  color: var(--accent);
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.rating-bar-row span:first-child {
  width: 24px;
  text-align: right;
  font-size: 13px;
  color: var(--text-muted);
}

.rating-bar {
  flex: 1;
  height: 6px;
  background: var(--bg-secondary);
  border-radius: 3px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: var(--gradient-gold);
  border-radius: 3px;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
}

.faq-q {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.2s;
}
.faq-q:hover { background: var(--bg-card-hover); }
.faq-q::after {
  content: '+';
  font-size: 20px;
  color: var(--accent);
  transition: 0.3s;
}
.faq-item.open .faq-q::after {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
}
.faq-item.open .faq-a {
  max-height: 500px;
}
.faq-a-inner {
  padding: 0 20px 16px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* SEO Tags */
.seo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.seo-tag {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  color: var(--text-muted);
  transition: 0.2s;
}
.seo-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* SEO Text Block */
.seo-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  margin-top: 40px;
}

.seo-block h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--accent);
}

.seo-block p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}

.step-number {
  font-family: 'Unbounded', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 12px;
}

.step-card h4 {
  font-size: 15px;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 13px;
  color: var(--text-secondary);
}

/* Payment Methods */
.payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 20px 0;
}

.payment-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

/* Footer */
.footer {
  background: var(--bg-sidebar);
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.footer-social a {
  width: 40px; height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: 0.2s;
}
.footer-social a:hover {
  border-color: var(--accent);
  background: var(--bg-card-hover);
}

.footer-desc {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-secondary);
  transition: 0.2s;
}
.footer-links a:hover { color: var(--accent); }

.footer-license {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 20px;
  line-height: 1.6;
}

/* Chat Widget */
.chat-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: var(--gradient-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(59,130,246,0.4);
  transition: 0.3s;
  border: none;
  color: #fff;
}
.chat-toggle:hover { transform: scale(1.05); }

.chat-badge {
  position: absolute;
  top: -4px; right: -4px;
  background: #ef4444;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.chat-widget {
  position: fixed;
  bottom: 86px;
  right: 20px;
  width: 340px;
  max-height: 450px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  z-index: 999;
  display: none;
  flex-direction: column;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.chat-widget.open { display: flex; }

.chat-header {
  padding: 14px 16px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat-header h4 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
}
.chat-online {
  font-size: 12px;
  color: #22c55e;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
  max-height: 300px;
}

.chat-msg {
  margin-bottom: 10px;
  animation: fadeIn 0.3s;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-msg .msg-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 2px;
}
.chat-msg .msg-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}
.chat-msg.user .msg-name { color: #22c55e; }

.chat-input-area {
  padding: 10px 12px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 8px;
}

.chat-input-area input {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  color: var(--text-primary);
  font-size: 13px;
  outline: none;
}
.chat-input-area input::placeholder {
  color: var(--text-muted);
}

.chat-input-area button {
  background: var(--gradient-blue);
  border: none;
  border-radius: 8px;
  padding: 8px 14px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

/* TG Notification */
.tg-notify-btn {
  position: fixed;
  top: 80px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #000;
  cursor: pointer;
  z-index: 998;
  animation: wobble 3s ease-in-out infinite;
  border: none;
  box-shadow: 0 2px 12px var(--accent-glow);
}
@keyframes wobble {
  0%, 100% { transform: rotate(0deg); }
  15% { transform: rotate(12deg); }
  30% { transform: rotate(-8deg); }
  45% { transform: rotate(6deg); }
  60% { transform: rotate(0deg); }
}

.tg-panel {
  position: fixed;
  top: 80px;
  right: 68px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  z-index: 998;
  display: none;
  box-shadow: var(--shadow);
  max-width: 260px;
}
.tg-panel.open { display: block; }

.tg-panel p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 10px;
  line-height: 1.5;
}

.tg-panel a {
  display: inline-block;
  background: #0088cc;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
}

/* Popup */
.promo-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}
.promo-popup-overlay.open { display: flex; }

.promo-popup {
  background: var(--bg-secondary);
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  max-width: 400px;
  position: relative;
  box-shadow: 0 0 60px var(--accent-glow);
}

.promo-popup-close {
  position: absolute;
  top: 12px; right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 24px;
  cursor: pointer;
}

.promo-popup h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.promo-popup .popup-bonus {
  font-family: 'Unbounded', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--accent);
  margin: 16px 0;
}

.promo-popup p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 20px;
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.filter-tab {
  padding: 8px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: 0.2s;
}
.filter-tab:hover, .filter-tab.active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(245,158,11,0.08);
}

/* Tables */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.info-table th, .info-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.info-table th {
  background: var(--bg-card);
  color: var(--accent);
  font-weight: 600;
}
.info-table td {
  color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
  .header { padding: 0 12px; }
  .header-nav { display: none; }
  .mobile-nav { display: block; }
  .main-content { padding: 70px 12px 30px; }
  .hero { padding: 40px 20px; }
  .hero-stats { gap: 20px; }
  .hero-stat .value { font-size: 24px; }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 10px; }
  .bonus-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .chat-widget { width: calc(100% - 24px); right: 12px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 24px; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 24px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .mobile-menu-btn { display: block; }
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 1100;
  display: none;
}
.mobile-nav-overlay.open { display: block; }

.mobile-nav-panel {
  position: fixed;
  top: 0; left: 0;
  width: 280px;
  height: 100%;
  background: var(--bg-sidebar);
  z-index: 1101;
  padding: 20px;
  transform: translateX(-100%);
  transition: 0.3s;
}
.mobile-nav-overlay.open .mobile-nav-panel { transform: translateX(0); }

.mobile-nav-panel a {
  display: block;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--text-secondary);
  border-radius: 8px;
  margin-bottom: 4px;
}
.mobile-nav-panel a:hover, .mobile-nav-panel a.active {
  color: var(--text-primary);
  background: var(--bg-card);
}
