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

:root {
  --primary-color: #ffd700;
  --secondary-color: #ff6b35;
  --accent-color: #9b59b6;
  --dark-bg: #0a0a0f;
  --card-bg: #1a1a2e;
  --text-primary: #ffffff;
  --text-secondary: #b8b8c8;
  --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-3: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  background: var(--gradient-3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}

.nav a:hover {
  color: var(--primary-color);
}

/* Buttons */
.btn-primary,
.btn-hero,
.btn-casino,
.btn-demo,
.btn-cta {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gradient-3);
  color: var(--dark-bg);
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.btn-primary:hover,
.btn-hero:hover,
.btn-casino:hover,
.btn-demo:hover,
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  padding: 18px 40px;
  margin-top: 20px;
}

.btn-arrow {
  font-size: 24px;
  transition: transform 0.3s;
}

.btn-hero:hover .btn-arrow {
  transform: translateX(5px);
}

/* Hero Section */
.hero {
  padding: 150px 0 100px;
  background: radial-gradient(circle at 50% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
  position: relative;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-text {
  flex: 1;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 20px;
  background: var(--gradient-3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 24px;
  color: var(--text-secondary);
  margin-bottom: 15px;
}

.hero-description {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.8;
}

.hero-features {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card-bg);
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.feature-icon {
  font-size: 24px;
}

.hero-image {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.game-logo {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.glow-effect {
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--gradient-1);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  z-index: 1;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.5;
  }
}

/* Table of Contents */
.toc {
  padding: 60px 0;
  background: var(--card-bg);
}

.toc h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
}

.toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.toc-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: var(--dark-bg);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-primary);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.toc-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
  border-color: var(--primary-color);
}

.toc-number {
  font-size: 32px;
  font-weight: bold;
  background: var(--gradient-3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.toc-title {
  font-size: 18px;
  font-weight: 600;
}

/* Casinos Section */
.casinos {
  padding: 100px 0;
}

.casinos h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 15px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 18px;
  margin-bottom: 50px;
}

.casino-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.casino-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 30px;
  position: relative;
  border: 1px solid rgba(255, 215, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.casino-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
  border-color: var(--primary-color);
}

.casino-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: var(--gradient-3);
  color: var(--dark-bg);
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
}

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

.casino-logo {
  width: 120px;
  height: 40px;
  object-fit: contain;
  background: white;
  padding: 5px 10px;
  border-radius: 8px;
}

.casino-rating {
  text-align: right;
}

.stars {
  color: var(--primary-color);
  font-size: 16px;
  margin-bottom: 5px;
}

.casino-rating span {
  font-size: 18px;
  font-weight: bold;
}

.casino-bonus {
  background: var(--gradient-1);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 20px;
}

.bonus-amount {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 5px;
}

.bonus-text {
  font-size: 14px;
  opacity: 0.9;
}

.casino-features {
  list-style: none;
  margin-bottom: 25px;
}

.casino-features li {
  padding: 10px 0;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.casino-features li:last-child {
  border-bottom: none;
}

.btn-casino {
  width: 100%;
  text-align: center;
}

/* About Section */
.about {
  padding: 100px 0;
  background: var(--card-bg);
}

.about-content {
  display: flex;
  gap: 60px;
  align-items: center;
}

.about-text {
  flex: 2;
}

.about h2 {
  font-size: 42px;
  margin-bottom: 25px;
}

.about h3 {
  font-size: 28px;
  margin: 30px 0 20px;
  color: var(--primary-color);
}

.about p {
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.game-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.spec-item {
  background: var(--dark-bg);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.spec-label {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 8px;
}

.spec-value {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color);
}

.features-list {
  list-style: none;
  margin-bottom: 30px;
}

.features-list li {
  padding: 15px 0;
  color: var(--text-secondary);
  font-size: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.features-list li:last-child {
  border-bottom: none;
}

.features-list strong {
  color: var(--primary-color);
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.game-icon {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
}

/* Demo Section */
.demo {
  padding: 100px 0;
}

.demo h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 15px;
}

.demo-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-top: 50px;
}

.demo-preview {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.demo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.demo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.demo-preview:hover .demo-overlay {
  opacity: 1;
}

.btn-demo {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 20px;
}

.play-icon {
  font-size: 32px;
}

.demo-info h3 {
  font-size: 28px;
  margin-bottom: 25px;
}

.demo-features {
  list-style: none;
}

.demo-features li {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.check-icon {
  width: 30px;
  height: 30px;
  background: var(--gradient-3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--dark-bg);
  font-weight: bold;
}

.demo-features strong {
  display: block;
  font-size: 18px;
  margin-bottom: 5px;
}

.demo-features p {
  color: var(--text-secondary);
  font-size: 14px;
}

/* Gallery Section */
.gallery {
  padding: 100px 0;
  background: var(--card-bg);
}

.gallery h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 15px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FAQ Section */
.faq {
  padding: 100px 0;
}

.faq h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 50px;
}

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

.faq-item {
  background: var(--card-bg);
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question:hover {
  background: rgba(255, 215, 0, 0.05);
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
}

.faq-icon {
  font-size: 24px;
  color: var(--primary-color);
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 30px 25px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* CTA Section */
.cta {
  padding: 100px 0;
  background: var(--gradient-1);
  text-align: center;
}

.cta-content h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  padding: 20px 50px;
}

/* Footer */
.footer {
  background: var(--card-bg);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.footer-section p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.disclaimer {
  font-size: 14px;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 968px) {
  .nav {
    display: none;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-features {
    flex-direction: column;
  }

  .about-content {
    flex-direction: column;
  }

  .demo-container {
    grid-template-columns: 1fr;
  }

  .game-specs {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .casino-list {
    grid-template-columns: 1fr;
  }

  .game-specs {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
