.page-index-online-gambling-insights {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light text for dark background */
  background-color: #0A192F;
}

.page-index-online-gambling-insights__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-online-gambling-insights__hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #1a3a60 100%);
  padding: 100px 0;
  text-align: center;
  color: #FFD700;
  position: relative;
  overflow: hidden;
}

.page-index-online-gambling-insights__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-online-gambling-insights__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-index-online-gambling-insights__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index-online-gambling-insights__btn--primary {
  background-color: #FFD700;
  color: #0A192F;
}

.page-index-online-gambling-insights__btn--primary:hover {
  background-color: #e6c200;
  color: #000;
}

.page-index-online-gambling-insights__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 15px;
}

.page-index-online-gambling-insights__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
}

.page-index-online-gambling-insights__section {
  padding: 80px 0;
  background-color: #0A192F;
  color: #E0E0E0;
}

.page-index-online-gambling-insights__section:nth-of-type(odd) {
  background-color: #1a2b40;
}

.page-index-online-gambling-insights__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-index-online-gambling-insights__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #B0B0B0;
}

.page-index-online-gambling-insights__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.page-index-online-gambling-insights__content-wrapper--reversed {
  flex-direction: row-reverse;
}

.page-index-online-gambling-insights__text-content {
  flex: 1;
}

.page-index-online-gambling-insights__text-content p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #E0E0E0;
}

.page-index-online-gambling-insights__image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-index-online-gambling-insights__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index-online-gambling-insights__image--small {
  max-width: 80%;
  margin-top: 20px;
}

.page-index-online-gambling-insights__image--icon {
  max-width: 100px;
  margin: 20px auto 0;
  display: block;
  box-shadow: none;
}

.page-index-online-gambling-insights__sub-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-index-online-gambling-insights__text-content ul {
  list-style: none;
  padding-left: 0;
}

.page-index-online-gambling-insights__text-content ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  color: #E0E0E0;
}

.page-index-online-gambling-insights__text-content ul li::before {
  content: '✔';
  color: #FFD700;
  position: absolute;
  left: 0;
  top: 0;
}

.page-index-online-gambling-insights__trend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-online-gambling-insights__trend-item {
  background-color: #0A192F;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-index-online-gambling-insights__trend-item p {
  color: #E0E0E0;
  font-size: 1em;
}

.page-index-online-gambling-insights__grid-2-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.page-index-online-gambling-insights__card {
  background-color: #0A192F;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-online-gambling-insights__card-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-online-gambling-insights__card p {
  color: #E0E0E0;
  font-size: 1em;
}

.page-index-online-gambling-insights__cta-buttons {
  text-align: center;
  margin-top: 60px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index-online-gambling-insights__content-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .page-index-online-gambling-insights__content-wrapper--reversed {
    flex-direction: column;
  }

  .page-index-online-gambling-insights__image-wrapper {
    margin-top: 40px;
  }

  .page-index-online-gambling-insights__hero-title {
    font-size: 2.8em;
  }

  .page-index-online-gambling-insights__hero-subtitle {
    font-size: 1.3em;
  }

  .page-index-online-gambling-insights__section-title {
    font-size: 2em;
  }

  .page-index-online-gambling-insights__grid-2-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-index-online-gambling-insights__hero-section {
    padding: 80px 0;
  }

  .page-index-online-gambling-insights__hero-title {
    font-size: 2.2em;
  }

  .page-index-online-gambling-insights__hero-subtitle {
    font-size: 1.1em;
  }

  .page-index-online-gambling-insights__section {
    padding: 60px 0;
  }

  .page-index-online-gambling-insights__section-title {
    font-size: 1.8em;
  }

  .page-index-online-gambling-insights__trend-grid {
    grid-template-columns: 1fr;
  }

  .page-index-online-gambling-insights__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }

  .page-index-online-gambling-insights__cta-buttons .page-index-online-gambling-insights__btn {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .page-index-online-gambling-insights__hero-title {
    font-size: 1.8em;
  }

  .page-index-online-gambling-insights__hero-subtitle {
    font-size: 1em;
  }

  .page-index-online-gambling-insights__section-title {
    font-size: 1.5em;
  }

  .page-index-online-gambling-insights__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}