/* style/index-hero-section.css */
.page-index-hero-section {
  font-family: 'Arial', sans-serif;
  color: #E2E8F0; /* Light text for dark backgrounds */
  background-color: #1A202C; /* Main dark background */
}

.page-index-hero-section__hero {
  position: relative;
  height: 600px; /* Adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 0 20px;
}

.page-index-hero-section__hero-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-index-hero-section__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 32, 44, 0.8), rgba(255, 215, 0, 0.3));
  z-index: 1;
}

.page-index-hero-section__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.page-index-hero-section__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Accent color for title */
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-hero-section__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #E2E8F0;
  line-height: 1.6;
}

.page-index-hero-section__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-index-hero-section__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1em;
  cursor: pointer;
  border: none;
}

.page-index-hero-section__btn--primary {
  background-color: #FFD700;
  color: #1A202C;
}

.page-index-hero-section__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-index-hero-section__btn--secondary {
  background-color: #313a4b; /* Darker variant of main color */
  color: #FFD700;
  border: 1px solid #FFD700;
}

.page-index-hero-section__btn--secondary:hover {
  background-color: #4a5468;
  transform: translateY(-2px);
}

.page-index-hero-section__btn--tertiary {
  background-color: transparent;
  color: #E2E8F0;
  border: 2px solid #E2E8F0;
}

.page-index-hero-section__btn--tertiary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

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

.page-index-hero-section__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-index-hero-section__section {
  padding: 80px 0;
  text-align: center;
}

.page-index-hero-section__section--benefits {
  background-color: #2D3748;
}

.page-index-hero-section__section--featured-games {
  background-color: #1A202C;
}

.page-index-hero-section__section--promotions {
  background-color: #2D3748;
}

.page-index-hero-section__section--about {
  background-color: #1A202C;
}

.page-index-hero-section__section--faq {
  background-color: #2D3748;
}

.page-index-hero-section__section--cta-final {
  background: linear-gradient(90deg, #1A202C, #FFD700);
  padding: 100px 0;
}

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

.page-index-hero-section__section-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-index-hero-section__section-description {
  font-size: 1.1em;
  color: #CBD5E0;
  max-width: 800px;
  margin: 0 auto 60px auto;
  line-height: 1.7;
}

.page-index-hero-section__benefit-grid,
.page-index-hero-section__game-grid,
.page-index-hero-section__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-hero-section__benefit-item,
.page-index-hero-section__game-card,
.page-index-hero-section__promo-card {
  background-color: #1A202C;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-index-hero-section__benefit-item:hover,
.page-index-hero-section__game-card:hover,
.page-index-hero-section__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}

.page-index-hero-section__benefit-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-index-hero-section__benefit-title,
.page-index-hero-section__game-title,
.page-index-hero-section__promo-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-hero-section__benefit-text,
.page-index-hero-section__game-text,
.page-index-hero-section__promo-text {
  font-size: 1em;
  color: #CBD5E0;
  line-height: 1.6;
  flex-grow: 1;
}

.page-index-hero-section__game-image,
.page-index-hero-section__promo-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index-hero-section__game-card .page-index-hero-section__btn,
.page-index-hero-section__promo-card .page-index-hero-section__btn {
  margin-top: 20px;
}

.page-index-hero-section__about-text {
  font-size: 1.1em;
  color: #CBD5E0;
  line-height: 1.7;
  text-align: left;
  margin-bottom: 40px;
}

.page-index-hero-section__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-index-hero-section__faq-item {
  background-color: #2D3748;
  border-radius: 8px;
  padding: 25px 30px;
  margin-bottom: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #FFD700;
}

.page-index-hero-section__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.page-index-hero-section__faq-question::after {
  content: '+';
  margin-left: auto;
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-index-hero-section__faq-question.active::after {
  transform: rotate(45deg);
}

.page-index-hero-section__faq-answer {
  font-size: 1em;
  color: #CBD5E0;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
  opacity: 0;
}

.page-index-hero-section__faq-answer.active {
  max-height: 200px; /* Adjust based on expected content height */
  opacity: 1;
}

.page-index-hero-section__cta-final-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-hero-section__hero-title {
    font-size: 2.8em;
  }
  .page-index-hero-section__section-title {
    font-size: 2em;
  }
  .page-index-hero-section__hero-description {
    font-size: 1.1em;
  }
  .page-index-hero-section__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-hero-section__btn {
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .page-index-hero-section__hero {
    height: 500px;
  }
  .page-index-hero-section__hero-title {
    font-size: 2.2em;
  }
  .page-index-hero-section__hero-description {
    font-size: 1em;
  }
  .page-index-hero-section__section {
    padding: 60px 0;
  }
  .page-index-hero-section__benefit-grid,
  .page-index-hero-section__game-grid,
  .page-index-hero-section__promo-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-index-hero-section__hero {
    height: 400px;
  }
  .page-index-hero-section__hero-title {
    font-size: 1.8em;
  }
  .page-index-hero-section__hero-description {
    font-size: 0.9em;
  }
  .page-index-hero-section__hero-actions {
    gap: 10px;
  }
  .page-index-hero-section__btn {
    padding: 12px 25px;
    font-size: 0.9em;
  }
  .page-index-hero-section__section-title {
    font-size: 1.8em;
  }
  .page-index-hero-section__section-description {
    font-size: 0.9em;
  }
  .page-index-hero-section__benefit-icon {
    width: 60px;
    height: 60px;
  }
  .page-index-hero-section__benefit-title,
  .page-index-hero-section__game-title,
  .page-index-hero-section__promo-title {
    font-size: 1.4em;
  }
  .page-index-hero-section__faq-question {
    font-size: 1.1em;
  }
}