/* style/index-diverse-game-products.css */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --background-dark: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
}

.page-index-diverse-game-products {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--background-dark); /* Ensure text is light on dark background */
}

.page-index-diverse-game-products__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-index-diverse-game-products__hero-section {
  position: relative;
  width: 100%;
  padding-top: 10px; /* Small top padding, header offset handled by body */
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.page-index-diverse-game-products__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
}

.page-index-diverse-game-products__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-index-diverse-game-products__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin-top: 40px;
  padding: 0 20px;
}

.page-index-diverse-game-products__hero-title {
  color: var(--text-main);
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.page-index-diverse-game-products__hero-description {
  color: var(--text-secondary);
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-index-diverse-game-products__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-index-diverse-game-products__btn-primary,
.page-index-diverse-game-products__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-index-diverse-game-products__btn-primary {
  background: var(--button-gradient);
  color: var(--text-main);
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index-diverse-game-products__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-index-diverse-game-products__btn-secondary {
  background: none;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-index-diverse-game-products__btn-secondary:hover {
  background: rgba(var(--primary-color), 0.1);
  color: var(--primary-color);
}

.page-index-diverse-game-products__section-title {
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 20px;
  font-size: 2.5em;
  font-weight: bold;
}

.page-index-diverse-game-products__section-description {
  color: var(--text-secondary);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 1.1em;
}

.page-index-diverse-game-products__dark-section {
  background-color: var(--card-bg);
  padding: 60px 0;
}

.page-index-diverse-game-products__products-overview,
.page-index-diverse-game-products__advantages-section,
.page-index-diverse-game-products__promotions-section,
.page-index-diverse-game-products__blog-section,
.page-index-diverse-game-products__faq-section,
.page-index-diverse-game-products__final-cta-section {
  padding: 60px 0;
}

.page-index-diverse-game-products__product-grid,
.page-index-diverse-game-products__promo-grid,
.page-index-diverse-game-products__blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-diverse-game-products__product-card,
.page-index-diverse-game-products__promo-card,
.page-index-diverse-game-products__blog-card {
  background-color: var(--background-dark);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.page-index-diverse-game-products__product-card:hover,
.page-index-diverse-game-products__promo-card:hover,
.page-index-diverse-game-products__blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-index-diverse-game-products__product-image,
.page-index-diverse-game-products__promo-image,
.page-index-diverse-game-products__blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-index-diverse-game-products__product-card .page-index-diverse-game-products__product-image {
  height: 250px;
}

.page-index-diverse-game-products__product-title,
.page-index-diverse-game-products__promo-title,
.page-index-diverse-game-products__blog-title {
  font-size: 1.4em;
  font-weight: bold;
  margin: 15px 15px 10px 15px;
  color: var(--gold-color);
}

.page-index-diverse-game-products__product-title a,
.page-index-diverse-game-products__blog-title a {
  color: var(--gold-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-diverse-game-products__product-title a:hover,
.page-index-diverse-game-products__blog-title a:hover {
  color: var(--secondary-color);
}

.page-index-diverse-game-products__product-description,
.page-index-diverse-game-products__promo-text,
.page-index-diverse-game-products__blog-excerpt {
  color: var(--text-secondary);
  font-size: 0.95em;
  padding: 0 15px;
  flex-grow: 1;
}

.page-index-diverse-game-products__btn-text {
  display: inline-block;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
  margin: 15px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-bottom-color 0.3s ease, color 0.3s ease;
}

.page-index-diverse-game-products__btn-text:hover {
  border-bottom-color: var(--secondary-color);
  color: var(--gold-color);
}

.page-index-diverse-game-products__blog-meta {
  font-size: 0.85em;
  color: var(--text-secondary);
  margin: 0 15px 10px 15px;
}

.page-index-diverse-game-products__advantage-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-index-diverse-game-products__advantage-item {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
}

.page-index-diverse-game-products__advantage-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px var(--glow-color));
}

.page-index-diverse-game-products__advantage-title {
  color: var(--gold-color);
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-index-diverse-game-products__advantage-text {
  color: var(--text-secondary);
  font-size: 0.95em;
}

.page-index-diverse-game-products__cta-center {
  text-align: center;
  margin-top: 50px;
}

.page-index-diverse-game-products__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-diverse-game-products__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-index-diverse-game-products__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-weight: bold;
  color: var(--text-main);
  cursor: pointer;
  background-color: var(--deep-green-color);
  transition: background-color 0.3s ease;
  list-style: none; /* For <details> */
}

.page-index-diverse-game-products__faq-question::-webkit-details-marker {
  display: none; /* For <details> */
}

.page-index-diverse-game-products__faq-question:hover {
  background-color: var(--primary-color);
}

.page-index-diverse-game-products__faq-qtext {
  flex-grow: 1;
  color: var(--gold-color);
}

.page-index-diverse-game-products__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--text-main);
}

.page-index-diverse-game-products__faq-answer {
  padding: 15px 20px;
  color: var(--text-secondary);
  border-top: 1px solid var(--divider-color);
}

.page-index-diverse-game-products__faq-answer p {
  margin: 0;
  color: var(--text-secondary);
}

.page-index-diverse-game-products__final-cta-section {
  text-align: center;
  padding: 80px 0;
  background-color: var(--deep-green-color);
}

.page-index-diverse-game-products__final-cta-section .page-index-diverse-game-products__section-title {
  color: var(--gold-color);
}

.page-index-diverse-game-products__final-cta-section .page-index-diverse-game-products__section-description {
  color: var(--text-main);
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-index-diverse-game-products__hero-title {
    font-size: 2.8em;
  }
  .page-index-diverse-game-products__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-index-diverse-game-products {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-index-diverse-game-products__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-index-diverse-game-products__hero-section {
    padding-bottom: 40px;
  }

  .page-index-diverse-game-products__hero-title {
    font-size: 2em;
  }

  .page-index-diverse-game-products__hero-description {
    font-size: 1em;
  }

  .page-index-diverse-game-products__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-index-diverse-game-products__btn-primary,
  .page-index-diverse-game-products__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
  }

  .page-index-diverse-game-products__section-title {
    font-size: 1.8em;
  }

  .page-index-diverse-game-products__section-description {
    font-size: 0.95em;
  }

  .page-index-diverse-game-products__products-overview,
  .page-index-diverse-game-products__advantages-section,
  .page-index-diverse-game-products__promotions-section,
  .page-index-diverse-game-products__blog-section,
  .page-index-diverse-game-products__faq-section,
  .page-index-diverse-game-products__final-cta-section {
    padding: 40px 0;
  }

  /* Mobile image responsiveness */
  .page-index-diverse-game-products img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-index-diverse-game-products__hero-image-wrapper,
  .page-index-diverse-game-products__product-card,
  .page-index-diverse-game-products__promo-card,
  .page-index-diverse-game-products__blog-card,
  .page-index-diverse-game-products__advantage-item,
  .page-index-diverse-game-products__faq-item,
  .page-index-diverse-game-products__cta-buttons,
  .page-index-diverse-game-products__product-grid,
  .page-index-diverse-game-products__promo-grid,
  .page-index-diverse-game-products__blog-grid,
  .page-index-diverse-game-products__advantage-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }

  .page-index-diverse-game-products__product-card .page-index-diverse-game-products__product-image,
  .page-index-diverse-game-products__promo-card .page-index-diverse-game-products__promo-image,
  .page-index-diverse-game-products__blog-card .page-index-diverse-game-products__blog-image {
    height: 180px;
  }

  .page-index-diverse-game-products__faq-question {
    padding: 15px;
  }

  .page-index-diverse-game-products__faq-answer {
    padding: 10px 15px;
  }
}

@media (max-width: 480px) {
  .page-index-diverse-game-products__hero-title {
    font-size: 1.8em;
  }
  .page-index-diverse-game-products__section-title {
    font-size: 1.5em;
  }
  .page-index-diverse-game-products__product-title,
  .page-index-diverse-game-products__promo-title,
  .page-index-diverse-game-products__blog-title {
    font-size: 1.2em;
  }
}