:root {
  --primary: #ff6b35;
  --primary-dark: #e55a28;
  --secondary: #1a1a2e;
  --accent: #ffd700;
  --text: #ffffff;
  --text-muted: #b0b0b0;
  --bg: #0f0f1e;
  --bg-card: #1a1a2e;
  --border: #2a2a3e;
  --success: #00ff88;
  --gradient: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-narrow {
  max-width: 800px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 15, 30, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 50px;
  height: 50px;
  border-radius: 8px;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main-nav {
  display: flex;
  gap: 30px;
}

.main-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: var(--primary);
}

.actions {
  display: flex;
  gap: 15px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--gradient);
  color: var(--text);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--text);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text);
  transition: all 0.3s;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 0;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.bonus-label {
  padding: 8px 16px;
  background: var(--bg-card);
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 600;
}

.trust-badges {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.badge svg {
  color: var(--accent);
}

/* Live Wins */
.live-wins {
  padding: 60px 0;
  background: var(--bg-card);
}

.section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.pulse-dot {
  width: 12px;
  height: 12px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.wins-slider {
  overflow: hidden;
  position: relative;
}

.wins-track {
  display: flex;
  gap: 20px;
  animation: scroll-wins 30s linear infinite;
}

@keyframes scroll-wins {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.win-card {
  flex-shrink: 0;
  width: 250px;
  background: var(--bg);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s;
}

.win-card:hover {
  transform: translateY(-5px);
}

.win-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.win-info {
  padding: 15px;
}

.win-game {
  font-weight: 600;
  margin-bottom: 8px;
}

.win-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.win-amount {
  color: var(--success);
  font-weight: 700;
}

/* Features */
.features {
  padding: 80px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  margin-bottom: 15px;
  color: var(--text);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Games Section */
.games {
  padding: 80px 0;
  background: var(--bg-card);
}

.section-header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.section-header-main h2 {
  font-size: 2.5rem;
}

.link-all {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: gap 0.3s;
  display: flex;
  align-items: center;
  gap: 5px;
}

.link-all:hover {
  gap: 10px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 25px;
}

.game-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s;
  cursor: pointer;
}

.game-card:hover {
  transform: scale(1.05);
}

.game-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}

.game-card:hover .game-overlay {
  opacity: 1;
}

.game-name {
  font-weight: 600;
  margin-bottom: 10px;
}

/* Bonuses */
.bonuses {
  padding: 80px 0;
}

.bonuses h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.bonus-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}

.bonus-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.bonus-card.featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, var(--bg-card) 100%);
}

.bonus-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.bonus-amount {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  margin: 20px 0 10px;
}

.bonus-title {
  font-size: 1.3rem;
  margin-bottom: 25px;
}

.bonus-features {
  list-style: none;
  margin-bottom: 30px;
}

.bonus-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

.bonus-features li:last-child {
  border-bottom: none;
}

/* Content SEO */
.content-seo {
  padding: 80px 0;
  background: var(--bg);
}

.content-seo article {
  line-height: 1.8;
}

.content-seo h1 {
  font-size: 2.5rem;
  margin-bottom: 25px;
}

.content-seo h2 {
  font-size: 2rem;
  margin: 40px 0 20px;
}

.content-seo h3 {
  font-size: 1.5rem;
  margin: 30px 0 15px;
}

.content-seo p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.check-list {
  list-style: none;
  margin: 25px 0;
}

.check-list li {
  padding: 12px 0 12px 35px;
  position: relative;
  color: var(--text-muted);
}

.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
  font-size: 1.2rem;
}

.faq-section {
  margin-top: 60px;
}

.faq-item {
  background: var(--bg-card);
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 20px;
  border-left: 4px solid var(--primary);
}

.faq-item h3 {
  color: var(--text);
  margin-bottom: 10px;
}

.age-warning {
  margin-top: 50px;
  padding: 20px;
  background: rgba(255, 107, 53, 0.1);
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  font-weight: 600;
  color: var(--text);
}

/* Footer */
.site-footer {
  background: var(--secondary);
  padding: 50px 0 30px;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  margin-bottom: 20px;
  color: var(--text);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--primary);
}

.payment-icons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.payment-icons img {
  background: white;
  padding: 8px;
  border-radius: 6px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .actions {
    flex-direction: column;
    gap: 10px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .bonuses-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
}
