/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* Updated to modern font stack and improved typography */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
  color: #2d3748;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  /* Enhanced typography with better font weights and spacing */
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.025em;
  color: #1a202c;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 15px;
  /* Added modern button styling with shadows and transforms */
  box-shadow: 0 4px 14px 0 rgba(0, 123, 255, 0.3);
  transform: translateY(0);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  /* Updated to gradient background with better colors */
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-color: transparent;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px 0 rgba(102, 126, 234, 0.4);
}

.btn-outline {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px 0 rgba(255, 255, 255, 0.2);
}

.btn-large {
  padding: 18px 36px;
  font-size: 17px;
  border-radius: 14px;
}

/* Header */
.header {
  /* Enhanced header with glassmorphism effect */
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  color: white;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

.flag {
  height: 24px;
  width: auto;
}

.nav {
  display: none;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 24px;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.header-actions {
  display: none;
  gap: 12px;
}

.mobile-menu-toggle {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: block;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background-color: #000;
  z-index: 2000;
  transition: left 0.3s ease;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu-content {
  padding: 80px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu-link {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid #333;
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

/* Hero Section */
.hero {
  /* Updated hero with more vibrant gradient and better spacing */
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #667eea 100%);
  color: white;
  padding: 100px 0;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.hero-title {
  /* Enhanced title typography with better sizing and effects */
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 20px;
  opacity: 0.95;
  margin-bottom: 40px;
  max-width: 700px;
  font-weight: 400;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 300px;
}

.hero-image {
  width: 100%;
  max-width: 400px;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Sections */
.section-title {
  font-size: 28px;
  text-align: center;
  margin-bottom: 48px;
  color: #000;
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.feature-card {
  background: white;
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: #007bff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: white;
  font-size: 24px;
}

.feature-title {
  font-size: 20px;
  margin-bottom: 16px;
  color: #000;
}

.feature-description {
  color: #666;
  line-height: 1.6;
}

/* Games Section */
.games {
  padding: 80px 0;
}

.games-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

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

.games-subtitle {
  font-size: 24px;
  margin-bottom: 16px;
  color: #000;
}

.games-description {
  color: #666;
  margin-bottom: 24px;
  line-height: 1.6;
}

.games-list {
  list-style: none;
  margin-bottom: 32px;
}

.games-list li {
  padding: 8px 0;
  color: #666;
}

.games-list i {
  color: #007bff;
  margin-right: 12px;
}

.games-image {
  width: 100%;
  max-width: 400px;
}

.games-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Sports Section */
.sports {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.sports-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

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

.sports-subtitle {
  font-size: 24px;
  margin-bottom: 16px;
  color: #000;
}

.sports-description {
  color: #666;
  margin-bottom: 32px;
  line-height: 1.6;
}

.sports-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 24px;
  font-weight: 700;
  color: #007bff;
}

.stat-label {
  font-size: 14px;
  color: #666;
  margin-top: 4px;
}

.sports-image {
  width: 100%;
  max-width: 400px;
}

.sports-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Promotions Section */
.promotions {
  padding: 80px 0;
}

.promotions-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.promotion-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.promotion-card:hover {
  transform: translateY(-4px);
}

.promotion-card.featured {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white;
}

.promotion-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

.promotion-content {
  padding: 24px;
}

.promotion-title {
  font-size: 20px;
  margin-bottom: 12px;
}

.promotion-description {
  margin-bottom: 20px;
  opacity: 0.9;
}

.promotions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.promotion-small-title {
  font-size: 16px;
  margin-bottom: 8px;
  color: #000;
}

.promotion-small-desc {
  font-size: 14px;
  color: #666;
}

/* Main Content Section */
.main-content {
  padding: 100px 0;
  /* Added white background with subtle shadow for content area */
  background-color: #ffffff;
  margin: 0;
  position: relative;
  z-index: 1;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  /* Added subtle background and padding for better readability */
  background: rgba(255, 255, 255, 0.95);
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.content-intro {
  margin-bottom: 80px;
  text-align: left;
}

.lead-paragraph {
  /* Enhanced paragraph styling with better typography */
  font-size: 22px;
  line-height: 1.8;
  color: #2d3748;
  margin-bottom: 30px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.content-paragraph {
  font-size: 17px;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 24px;
}

.content-paragraph.highlight {
  /* Enhanced highlight box with gradient and better styling */
  background: linear-gradient(135deg, #e6f3ff 0%, #f0f8ff 100%);
  padding: 30px;
  border-radius: 16px;
  border-left: 5px solid #667eea;
  font-weight: 500;
  color: #1a365d;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1);
}

.content-section {
  margin-bottom: 50px;
  padding: 30px 0;
  border-bottom: 1px solid #e2e8f0;
}

.content-section:last-child {
  border-bottom: none;
}

.section-heading {
  font-size: 28px;
  color: #1a202c;
  margin-bottom: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.subsection-heading {
  font-size: 22px;
  color: #2d3748;
  margin: 32px 0 20px 0;
  font-weight: 600;
}

/* Lists */
.numbered-list {
  margin: 24px 0;
  padding-left: 0;
  counter-reset: list-counter;
}

.numbered-list .list-item {
  list-style: none;
  margin-bottom: 16px;
  padding-left: 40px;
  position: relative;
  line-height: 1.7;
  color: #4a5568;
  counter-increment: list-counter;
}

.numbered-list .list-item::before {
  content: counter(list-counter);
  position: absolute;
  left: 0;
  top: 0;
  background: #007bff;
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}

.bullet-list {
  margin: 24px 0;
  padding-left: 0;
}

.bullet-list .list-item {
  list-style: none;
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
  line-height: 1.7;
  color: #4a5568;
}

.bullet-list .list-item::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #007bff;
  font-weight: bold;
  font-size: 20px;
}

/* Tables */
.table-container {
  margin: 40px 0;
  overflow-x: auto;
  border-radius: 16px;
  /* Enhanced table container with better shadows */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: white;
}

.comparison-table,
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  font-size: 15px;
}

.comparison-table th,
.price-table th {
  /* Updated table headers with modern gradient */
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 20px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.comparison-table td,
.price-table td {
  padding: 18px 16px;
  border-bottom: 1px solid #e2e8f0;
  vertical-align: top;
}

.comparison-table tr:nth-child(even),
.price-table tr:nth-child(even) {
  background-color: #f8fafc;
}

.comparison-table tr:hover,
.price-table tr:hover {
  /* Enhanced hover effect for table rows */
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  transform: scale(1.01);
  transition: all 0.2s ease;
}

/* FAQ Section */
.faq-section {
  /* Enhanced FAQ section with gradient background */
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  padding: 50px 40px;
  border-radius: 20px;
  margin-top: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.faq-item {
  margin-bottom: 32px;
  background: white;
  border-radius: 16px;
  padding: 30px;
  /* Enhanced FAQ items with better shadows and hover effects */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-question {
  font-size: 20px;
  color: #1a202c;
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.faq-answer {
  font-size: 17px;
  color: #4a5568;
  line-height: 1.8;
  margin: 0;
}

/* CTA Section */
.cta {
  padding: 100px 0;
  /* Enhanced CTA with vibrant gradient background */
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #667eea 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

.cta-title {
  font-size: 28px;
  margin-bottom: 16px;
}

.cta-description {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  background-color: #000;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-title {
  font-size: 18px;
  margin-bottom: 16px;
  color: #007bff;
}

.footer-description {
  color: #ccc;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.social-link:hover {
  background-color: #007bff;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  color: #ccc;
}

/* Tablet Styles */
@media (min-width: 768px) {
  .container {
    padding: 0 24px;
  }

  .hero-actions {
    flex-direction: row;
    justify-content: center;
  }

  .hero-content {
    flex-direction: row;
    text-align: left;
  }

  .hero-text {
    flex: 1;
  }

  .hero-title {
    font-size: 40px;
  }

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

  .games-content {
    flex-direction: row;
  }

  .games-text {
    flex: 1;
    text-align: left;
  }

  .sports-content {
    flex-direction: row-reverse;
  }

  .sports-text {
    flex: 1;
    text-align: left;
  }

  .promotions-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

/* Desktop Styles */
@media (min-width: 1024px) {
  .nav {
    display: block;
  }

  .header-actions {
    display: flex;
  }

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

  .hero-title {
    font-size: 48px;
  }

  .section-title {
    font-size: 36px;
  }

  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
  .container {
    padding: 0 32px;
  }
}

/* Ensure no horizontal scroll */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Table responsive handling */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

table {
  min-width: 600px;
}

/* Responsive adjustments for content */
@media (max-width: 768px) {
  .main-content {
    padding: 60px 0;
  }

  .content-wrapper {
    /* Better mobile padding and spacing */
    padding: 40px 24px;
    margin: 20px;
    border-radius: 16px;
  }

  .lead-paragraph {
    font-size: 19px;
  }

  .hero-title {
    font-size: 32px;
  }

  .faq-section {
    padding: 30px 20px;
    margin-left: 0;
    margin-right: 0;
    border-radius: 16px;
  }
}
