/* style/index.css */
.page-index {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Text color for dark body background */
}

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

/* Hero Section */
.page-index__hero-section {
  background: linear-gradient(135deg, #0A1931, #0D1F3F);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index__hero-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  filter: blur(80px);
}

.page-index__hero-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background-color: rgba(255, 215, 0, 0.15);
  border-radius: 50%;
  filter: blur(90px);
}

.page-index__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index__hero-subtitle {
  font-size: 1.5em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-index__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.page-index__btn--primary {
  background-color: #FFD700;
  color: #0A1931;
  border: 2px solid #FFD700;
}

.page-index__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-index__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-index__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A1931;
  transform: translateY(-2px);
}

.page-index__btn--large {
  padding: 18px 35px;
  font-size: 1.1em;
}

.page-index__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

/* General Section Styling */
.page-index__intro-section, .page-index__criteria-section, .page-index__featured-bookmakers, .page-index__promotions-section, .page-index__news-section, .page-index__responsible-section, .page-index__why-us-section, .page-index__faq-section, .page-index__cta-section {
  padding: 60px 0;
  background-color: #0A1931;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-index__intro-heading, .page-index__criteria-heading, .page-index__featured-heading, .page-index__promotions-heading, .page-index__news-heading, .page-index__responsible-heading, .page-index__why-us-heading, .page-index__faq-heading, .page-index__cta-heading {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.page-index__intro-text, .page-index__promotions-description, .page-index__news-description, .page-index__responsible-text, .page-index__why-us-description, .page-index__cta-text {
  font-size: 1.1em;
  color: #e0e0e0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.page-index__highlight {
  color: #FFD700;
  font-weight: bold;
}

/* Criteria Section */
.page-index__criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index__criteria-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.05);
}

.page-index__criteria-item:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-index__criteria-icon {
  width: 250px;
  height: 250px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index__criteria-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index__criteria-description {
  color: #cccccc;
  font-size: 1em;
}

.page-index__criteria-conclusion {
  font-size: 1.1em;
  color: #e0e0e0;
  text-align: center;
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Featured Bookmakers */
.page-index__bookmaker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index__bookmaker-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.05);
}

.page-index__bookmaker-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-index__bookmaker-logo {
  width: 300px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index__bookmaker-name {
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-index__bookmaker-link {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index__bookmaker-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-index__bookmaker-summary {
  color: #cccccc;
  font-size: 0.95em;
  margin-bottom: 20px;
}

.page-index__view-all-button {
  text-align: center;
  margin-top: 50px;
}

/* Promotions & News Sections (similar card structure) */
.page-index__promotion-grid, .page-index__news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index__promotion-card, .page-index__news-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 10px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.05);
}

.page-index__promotion-card:hover, .page-index__news-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-index__promotion-image, .page-index__news-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index__promotion-title, .page-index__news-title {
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-index__promotion-link, .page-index__news-link {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index__promotion-link:hover, .page-index__news-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-index__promotion-summary, .page-index__news-summary {
  color: #cccccc;
  font-size: 0.95em;
  margin-bottom: 20px;
}

/* Responsible Gambling Section */
.page-index__responsible-section {
  text-align: center;
}

/* Why Us Section */
.page-index__why-us-list {
  list-style: none;
  padding: 0;
  margin: 40px auto 0 auto;
  max-width: 800px;
  text-align: left;
}

.page-index__why-us-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 20px 30px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #e0e0e0;
  border-left: 5px solid #FFD700;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-index__why-us-item strong {
  color: #FFD700;
}

/* FAQ Section */
.page-index__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 20px 30px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid rgba(255, 215, 0, 0.05);
  transition: background-color 0.3s ease;
}

.page-index__faq-item:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

.page-index__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-index__faq-answer {
  color: #cccccc;
  font-size: 1em;
}

/* CTA Section */
.page-index__cta-section {
  text-align: center;
  padding-bottom: 100px;
}

.page-index__cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index__hero-title {
    font-size: 2.8em;
  }

  .page-index__hero-subtitle {
    font-size: 1.3em;
  }

  .page-index__intro-heading, .page-index__criteria-heading, .page-index__featured-heading, .page-index__promotions-heading, .page-index__news-heading, .page-index__responsible-heading, .page-index__why-us-heading, .page-index__faq-heading, .page-index__cta-heading {
    font-size: 2em;
  }

  .page-index__criteria-grid, .page-index__bookmaker-grid, .page-index__promotion-grid, .page-index__news-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-index__hero-section {
    padding: 80px 0;
  }

  .page-index__hero-title {
    font-size: 2.2em;
  }

  .page-index__hero-subtitle {
    font-size: 1.1em;
  }

  .page-index__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-index__btn {
    width: 80%;
    margin: 0 auto;
  }

  .page-index__intro-heading, .page-index__criteria-heading, .page-index__featured-heading, .page-index__promotions-heading, .page-index__news-heading, .page-index__responsible-heading, .page-index__why-us-heading, .page-index__faq-heading, .page-index__cta-heading {
    font-size: 1.8em;
  }

  .page-index__intro-text, .page-index__promotions-description, .page-index__news-description, .page-index__responsible-text, .page-index__why-us-description, .page-index__cta-text {
    font-size: 1em;
  }

  .page-index__criteria-icon, .page-index__bookmaker-logo {
    width: 200px;
    height: auto;
  }

  .page-index__promotion-image, .page-index__news-image {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .page-index__hero-section {
    padding: 60px 0;
  }

  .page-index__hero-title {
    font-size: 1.8em;
  }

  .page-index__hero-subtitle {
    font-size: 0.9em;
  }

  .page-index__btn {
    width: 90%;
    padding: 12px 25px;
  }

  .page-index__intro-heading, .page-index__criteria-heading, .page-index__featured-heading, .page-index__promotions-heading, .page-index__news-heading, .page-index__responsible-heading, .page-index__why-us-heading, .page-index__faq-heading, .page-index__cta-heading {
    font-size: 1.5em;
  }

  .page-index__criteria-grid, .page-index__bookmaker-grid, .page-index__promotion-grid, .page-index__news-grid {
    grid-template-columns: 1fr;
  }

  .page-index__criteria-item, .page-index__bookmaker-card, .page-index__promotion-card, .page-index__news-card, .page-index__why-us-item, .page-index__faq-item {
    padding: 20px;
  }
}