/* style/index-game-diversity.css */
.page-index-game-diversity {
  font-family: 'Arial', sans-serif;
  color: #F8F8F8; /* Light gray for general text on dark background */
  background-color: #0A192F; /* Midnight Blue */
}

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

.page-index-game-diversity__section {
  padding: 60px 0;
  text-align: center;
}

.page-index-game-diversity__section:nth-of-type(even) {
  background-color: #1A2B40; /* Slightly lighter dark blue for contrast */
}

.page-index-game-diversity__hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #3a4d6e 100%); /* Gradient background */
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-index-game-diversity__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-index-game-diversity__hero-subtitle {
  font-size: 1.3em;
  color: #E0E0E0;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.page-index-game-diversity__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px; /* Adjust as needed */
  height: auto;
  opacity: 0.3;
  z-index: 0;
}

.page-index-game-diversity__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-index-game-diversity__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold for CTA */
  color: #0A192F; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  z-index: 1; /* Bring button to front */
  position: relative;
}

.page-index-game-diversity__cta-button:hover {
  background-color: #e6c200; /* Darker gold on hover */
  transform: translateY(-3px);
}

.page-index-game-diversity__secondary-button {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-index-game-diversity__secondary-button:hover {
  background-color: #FFD700;
  color: #0A192F;
}

.page-index-game-diversity__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-game-diversity__section-description {
  font-size: 1.1em;
  color: #B0B0B0;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
}

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

.page-index-game-diversity__feature-item {
  background-color: #1A2B40;
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border-top: 3px solid #FFD700;
}

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

.page-index-game-diversity__feature-item p {
  color: #C0C0C0;
  line-height: 1.6;
}

.page-index-game-diversity__game-categories .page-index-game-diversity__section-description {
  margin-bottom: 60px;
}

.page-index-game-diversity__category-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
  text-align: left;
}

.page-index-game-diversity__category-item.page-index-game-diversity__reverse {
  flex-direction: row-reverse;
}

.page-index-game-diversity__category-content {
  flex: 1;
}

.page-index-game-diversity__category-image-wrapper {
  flex: 1;
  min-width: 400px;
  max-width: 50%;
}

.page-index-game-diversity__category-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-index-game-diversity__category-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-index-game-diversity__category-content p {
  color: #E0E0E0;
  line-height: 1.7;
  margin-bottom: 20px;
}

.page-index-game-diversity__category-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-index-game-diversity__category-content ul li {
  color: #C0C0C0;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-index-game-diversity__category-content ul li strong {
  color: #FFD700;
}

.page-index-game-diversity__category-content ul li::before {
  content: '⚡'; /* Lightning bolt icon */
  position: absolute;
  left: 0;
  color: #FFD700;
}

.page-index-game-diversity__small-button {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-index-game-diversity__getting-started .page-index-game-diversity__section-description {
  margin-bottom: 60px;
}

.page-index-game-diversity__steps-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto 60px auto;
  text-align: left;
}

.page-index-game-diversity__steps-list li {
  background-color: #1A2B40;
  margin-bottom: 20px;
  padding: 25px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #E0E0E0;
  line-height: 1.6;
  border-left: 5px solid #FFD700;
}

.page-index-game-diversity__steps-list li strong {
  color: #FFD700;
  font-size: 1.2em;
  display: block;
  margin-bottom: 10px;
}

.page-index-game-diversity__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-index-game-diversity__promotions {
  background-color: #0A192F;
}

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

.page-index-game-diversity__promo-item {
  background-color: #1A2B40;
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid #FFD700;
}

.page-index-game-diversity__promo-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-game-diversity__promo-item p {
  color: #C0C0C0;
  line-height: 1.6;
}

.page-index-game-diversity__full-width-button {
  width: fit-content;
  margin-top: 50px;
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-index-game-diversity__mobile-app {
  background-color: #1A2B40;
}

.page-index-game-diversity__app-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 50px;
  text-align: left;
}

.page-index-game-diversity__app-text {
  flex: 1;
}

.page-index-game-diversity__app-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-index-game-diversity__app-text ul li {
  color: #E0E0E0;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
  font-size: 1.1em;
}

.page-index-game-diversity__app-text ul li::before {
  content: '✅';
  position: absolute;
  left: 0;
  color: #FFD700;
}

.page-index-game-diversity__app-image-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 450px;
}

.page-index-game-diversity__app-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-index-game-diversity__responsible-gambling ul {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-index-game-diversity__responsible-gambling ul li {
  background-color: #0A192F;
  margin-bottom: 15px;
  padding: 15px 25px;
  border-radius: 8px;
  color: #E0E0E0;
  line-height: 1.6;
  border-left: 4px solid #FFD700;
}

.page-index-game-diversity__contact-list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-index-game-diversity__contact-list li {
  background-color: #1A2B40;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  color: #E0E0E0;
  font-size: 1.1em;
  border-right: 4px solid #FFD700;
}

.page-index-game-diversity__contact-list li strong {
  color: #FFD700;
  display: block;
  margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-game-diversity__hero-title {
    font-size: 2.8em;
  }
  .page-index-game-diversity__section-title {
    font-size: 2em;
  }
  .page-index-game-diversity__category-item {
    flex-direction: column;
    text-align: center;
  }
  .page-index-game-diversity__category-item.page-index-game-diversity__reverse {
    flex-direction: column;
  }
  .page-index-game-diversity__category-image-wrapper {
    max-width: 100%;
    min-width: unset;
    margin-top: 30px;
  }
  .page-index-game-diversity__app-content {
    flex-direction: column;
    text-align: center;
  }
  .page-index-game-diversity__app-image-wrapper {
    margin-top: 30px;
  }
  .page-index-game-diversity__app-text ul {
    text-align: left;
    max-width: 400px;
    margin: 0 auto 30px auto;
  }
  .page-index-game-diversity__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-game-diversity__secondary-button {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .page-index-game-diversity__hero-title {
    font-size: 2.2em;
  }
  .page-index-game-diversity__hero-subtitle {
    font-size: 1.1em;
  }
  .page-index-game-diversity__section-title {
    font-size: 1.8em;
  }
  .page-index-game-diversity__section-description,
  .page-index-game-diversity__feature-item p,
  .page-index-game-diversity__category-content p,
  .page-index-game-diversity__steps-list li,
  .page-index-game-diversity__promo-item p,
  .page-index-game-diversity__app-text ul li,
  .page-index-game-diversity__responsible-gambling ul li,
  .page-index-game-diversity__contact-list li {
    font-size: 1em;
  }
  .page-index-game-diversity__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-game-diversity__full-width-button {
    width: 100%;
  }
  .page-index-game-diversity__hero-section {
    padding: 80px 0 50px 0;
  }
  .page-index-game-diversity__hero-image-wrapper {
    display: none; /* Hide hero image on smaller screens if it obstructs content */
  }
}

@media (max-width: 480px) {
  .page-index-game-diversity__hero-title {
    font-size: 1.8em;
  }
  .page-index-game-diversity__section-title {
    font-size: 1.5em;
  }
  .page-index-game-diversity__cta-button {
    width: 100%;
    margin-left: 0 !important;
    margin-bottom: 10px;
  }
  .page-index-game-diversity__secondary-button {
    margin-top: 10px;
  }
  .page-index-game-diversity__full-width-button {
    margin-top: 30px;
  }
  .page-index-game-diversity__feature-item,
  .page-index-game-diversity__promo-item,
  .page-index-game-diversity__steps-list li,
  .page-index-game-diversity__responsible-gambling ul li,
  .page-index-game-diversity__contact-list li {
    padding: 20px;
  }
}