/* Reset and Base Styles */
:root {
  --primary-gradient: linear-gradient(45deg, #007bff, #0056b3);
  --accent-gradient: linear-gradient(45deg, #f94c10, #e63946);
  --dark-gradient: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
  --hero-gradient: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f172a 100%);
}

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

body {
  font-family: "Inter", "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #e5e7eb;
  background: #1a1a2e;
  overflow-x: hidden;
}

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

/* Typography */
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #007bff, #f94c10);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  margin: 2rem 0 1.5rem;
  color: #ffffff;
  border-bottom: 3px solid #007bff;
  padding-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 1.5rem 0 1rem;
  color: #f1f5f9;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1rem 0 0.5rem;
  color: #f1f5f9;
}

.highlight {
  color: #f94c10;
  font-weight: 700;
}

.intro-text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 75ch;
}

.text-center {
  text-align: center;
}

/* Header */
.header {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 123, 255, 0.3);
}

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

.logo-img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: #e5e7eb;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links a:hover {
  color: #007bff;
}

.cta-nav {
  background: linear-gradient(45deg, #007bff, #0056b3);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  color: white !important;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.cta-nav:hover {
  transform: translateY(-2px);
  color: white !important;
}

.mobile-menu-toggle {
  display: none;
  color: #e5e7eb;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: var(--hero-gradient);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(0, 123, 255, 0.1) 0%, transparent 50%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.bonus-banner {
  background: linear-gradient(45deg, #f94c10, #ff6b35);
  padding: 1.5rem;
  border-radius: 15px;
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 2rem 0;
  text-align: center;
  box-shadow: 0 10px 30px rgba(249, 76, 16, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-image {
  text-align: center;
}

/* Responsive Images */
.responsive-img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  margin: 1.5rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.section-image {
  text-align: center;
  margin: 2rem 0;
}

/* Buttons */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-gradient);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 123, 255, 0.4);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.6);
}

.cta-button.cta-primary {
  background: var(--accent-gradient);
  box-shadow: 0 5px 20px rgba(249, 76, 16, 0.4);
}

.cta-button.cta-primary:hover {
  box-shadow: 0 8px 25px rgba(249, 76, 16, 0.6);
}

.cta-button.large {
  padding: 1.5rem 3rem;
  font-size: 1.2rem;
}

/* Content Sections */
.content-section {
  background: var(--dark-gradient);
  margin: 2rem 0;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 123, 255, 0.1);
}

.content-section p {
  max-width: 75ch;
}

/* Table of Contents */
.toc {
  background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
  border: 2px solid #007bff;
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
  position: sticky;
  top: 100px;
}

.toc h3 {
  margin-top: 0;
  color: #007bff;
  border-bottom: 2px solid #007bff;
  padding-bottom: 0.5rem;
}

.toc ul {
  list-style: none;
  padding: 0;
}

.toc li {
  margin: 0.5rem 0;
}

.toc a {
  color: #e5e7eb;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.toc a:hover {
  background: rgba(0, 123, 255, 0.1);
  color: #007bff;
  transform: translateX(5px);
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.stat-card {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card i {
  font-size: 2rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.feature-card {
  background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-left: 4px solid #007bff;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 123, 255, 0.2);
}

.feature-card i {
  font-size: 2rem;
  color: #007bff;
  margin-bottom: 1rem;
}

.feature-card h4 {
  color: #f1f5f9;
  margin-bottom: 1rem;
}

.feature-card ul {
  list-style: none;
  padding: 0;
}

.feature-card li {
  padding: 0.3rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-card li i {
  font-size: 0.8rem;
  color: #f94c10;
  margin: 0;
}

/* Games Grid */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.game-card {
  background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  border: 1px solid rgba(0, 123, 255, 0.1);
}

.game-card:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 123, 255, 0.2);
}

.game-header {
  background: linear-gradient(45deg, #007bff, #0056b3);
  color: white;
  padding: 1.5rem;
  text-align: center;
}

.game-header i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.game-header h4 {
  margin: 0.5rem 0;
  color: white;
}

.game-content {
  padding: 1.5rem;
}

.game-content ul {
  list-style: none;
  padding: 0;
}

.game-content li {
  padding: 0.3rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.game-content li i {
  color: #f94c10;
  font-size: 0.8rem;
}

/* FAQ Section */
.faq-container {
  margin: 2rem 0;
}

.faq-item {
  background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
  margin: 1rem 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 123, 255, 0.1);
}

.faq-question {
  background: var(--primary-gradient);
  color: white;
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: linear-gradient(45deg, #0056b3, #004085);
}

.faq-question i:first-child {
  margin-right: 0.5rem;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 1.5rem;
  background: rgba(22, 33, 62, 0.5);
  display: none;
  line-height: 1.7;
}

.faq-answer.active {
  display: block;
}

.faq-answer ul,
.faq-answer ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.faq-answer li {
  margin: 0.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.faq-answer li i {
  color: #f94c10;
  margin-top: 0.2rem;
  font-size: 0.8rem;
}

/* CTA Sections */
.cta-section {
  text-align: center;
  margin: 3rem 0;
}

.conclusion-banner {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white;
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  margin: 3rem 0;
  box-shadow: 0 15px 40px rgba(0, 123, 255, 0.3);
}

.conclusion-banner h3 {
  color: white;
  margin-bottom: 1rem;
  justify-content: center;
}

.final-cta {
  margin: 2rem 0;
}

.benefits-list {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-top: 1rem;
}

.benefits-list i {
  color: #28a745;
  margin: 0 0.3rem;
}

.support-info {
  background: rgba(22, 33, 62, 0.5);
  padding: 2rem;
  border-radius: 15px;
  margin: 2rem 0;
  text-align: center;
}

.support-info h4 {
  color: #007bff;
  margin-bottom: 1rem;
  justify-content: center;
}

.support-channels {
  margin-top: 1rem;
  font-weight: 500;
}

.support-channels span {
  margin: 0 0.5rem;
}

/* Bonus Section Styles */
.bonus-highlight {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(249, 76, 16, 0.1) 100%);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 123, 255, 0.2);
}

.bonus-main h3 {
  color: #f94c10;
  margin-bottom: 1rem;
}

.bonus-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bonus-card {
  background: var(--accent-gradient);
  color: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(249, 76, 16, 0.3);
  transform: rotate(-5deg);
  transition: transform 0.3s ease;
}

.bonus-card:hover {
  transform: rotate(0deg) scale(1.05);
}

.bonus-amount {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.bonus-text {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.bonus-limit {
  font-size: 0.9rem;
  opacity: 0.9;
}

.bonus-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(22, 33, 62, 0.3);
  padding: 1.5rem;
  border-radius: 15px;
  border-left: 4px solid #007bff;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(22, 33, 62, 0.5);
  transform: translateY(-2px);
}

.feature-icon {
  background: var(--primary-gradient);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-content h4 {
  margin: 0 0 0.5rem 0;
  color: #f1f5f9;
}

.feature-content p {
  margin: 0;
  line-height: 1.5;
}

.promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.promotion-card {
  background: var(--dark-gradient);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 123, 255, 0.1);
  transition: all 0.3s ease;
}

.promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 123, 255, 0.2);
}

.promotion-header {
  background: var(--primary-gradient);
  color: white;
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.promotion-header i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.promotion-header h4 {
  margin: 0;
  color: white;
  font-size: 1.1rem;
}

.promotion-content {
  padding: 1.5rem;
}

.promotion-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.promotion-benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #f94c10;
  font-weight: 600;
  font-size: 0.9rem;
}

.promotion-benefit i {
  color: #28a745;
}

.bonus-cta {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white;
  padding: 2.5rem;
  border-radius: 20px;
  margin: 3rem 0;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 123, 255, 0.3);
}

.bonus-cta h4 {
  color: white;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.bonus-cta p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* Mobile Responsiveness */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .content-section {
    padding: 2rem 1.5rem;
    margin: 1rem 0;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .features-grid,
  .games-grid {
    grid-template-columns: 1fr;
  }

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

  .toc {
    position: static;
    margin: 1rem 0;
  }

  .faq-question {
    padding: 1rem;
    font-size: 0.9rem;
  }

  .faq-answer {
    padding: 1rem;
  }

  .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .cta-button.large {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .bonus-banner {
    font-size: 1rem;
    padding: 1rem;
  }

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

  .stat-card {
    padding: 1.5rem;
  }

  .conclusion-banner {
    padding: 2rem 1rem;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}



/* Accessibility */
.cta-button:focus,
.faq-question:focus,
.nav-links a:focus {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .header,
  .cta-button,
  .faq-question {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .content-section {
    background: white;
    box-shadow: none;
    border: 1px solid #ccc;
  }
}

/* Mobile Responsiveness for Bonus Section */
@media (max-width: 768px) {
  .bonus-highlight {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bonus-card {
    transform: none;
    margin: 1rem 0;
  }

  .bonus-card:hover {
    transform: scale(1.02);
  }

  .bonus-features {
    grid-template-columns: 1fr;
  }

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

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
  }

  .feature-icon {
    align-self: center;
  }
}

@media (max-width: 480px) {
  .bonus-amount {
    font-size: 2.5rem;
  }

  .bonus-cta {
    padding: 2rem 1rem;
  }

  .bonus-highlight {
    padding: 1.5rem;
  }
}
.image {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.image img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: contain;
}