/* style/online-gambling-industry-trends.css */
.page-online-gambling-industry-trends {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for text on dark background */
  background-color: #1A1A1A; /* Dark background */
}

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

.page-online-gambling-industry-trends__hero {
  position: relative;
  background: linear-gradient(135deg, #CC0000 0%, #8A0000 100%); /* Darker red gradient */
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
  color: #FFFFFF;
}

.page-online-gambling-industry-trends__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.page-online-gambling-industry-trends__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for title */
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-online-gambling-industry-trends__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #F0F0F0;
  opacity: 0.9;
}

.page-online-gambling-industry-trends__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 1;
}

.page-online-gambling-industry-trends__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A1A1A; /* Dark text on gold */
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-online-gambling-industry-trends__cta-button:hover {
  background-color: #FFC400;
  transform: translateY(-3px);
}

.page-online-gambling-industry-trends__cta-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-online-gambling-industry-trends__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
}

.page-online-gambling-industry-trends__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-online-gambling-industry-trends__section:last-of-type {
  border-bottom: none;
}

.page-online-gambling-industry-trends__section--intro {
  background-color: #222222;
}

.page-online-gambling-industry-trends__section--trends {
  background-color: #1A1A1A;
}

.page-online-gambling-industry-trends__section--innovation {
  background-color: #222222;
}

.page-online-gambling-industry-trends__section--responsibility {
  background-color: #1A1A1A;
}

.page-online-gambling-industry-trends__section--future {
  background-color: #222222;
}

.page-online-gambling-industry-trends__section--contact {
  background-color: #CC0000;
  text-align: center;
  color: #FFFFFF;
}

.page-online-gambling-industry-trends__section--contact .page-online-gambling-industry-trends__section-title {
  color: #FFD700;
}

.page-online-gambling-industry-trends__section--contact .page-online-gambling-industry-trends__paragraph {
  color: #F0F0F0;
}

.page-online-gambling-industry-trends__section-title {
  font-size: 2.5em;
  color: #CC0000; /* Primary red for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-online-gambling-industry-trends__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold underline */
  border-radius: 2px;
}

.page-online-gambling-industry-trends__paragraph {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.page-online-gambling-industry-trends__paragraph .highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-online-gambling-industry-trends__inline-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-online-gambling-industry-trends__inline-link:hover {
  color: #FFC400;
  text-decoration: underline;
}

.page-online-gambling-industry-trends__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-online-gambling-industry-trends__trend-item {
  background-color: #2A2A2A;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-online-gambling-industry-trends__trend-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-online-gambling-industry-trends__trend-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-online-gambling-industry-trends__trend-title {
  font-size: 1.5em;
  color: #CC0000; /* Primary red for trend titles */
  margin-bottom: 15px;
}

.page-online-gambling-industry-trends__button-group {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-online-gambling-industry-trends__hero-title {
    font-size: 2.8em;
  }

  .page-online-gambling-industry-trends__hero-subtitle {
    font-size: 1.3em;
  }

  .page-online-gambling-industry-trends__section-title {
    font-size: 2em;
  }
}

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

  .page-online-gambling-industry-trends__hero-title {
    font-size: 2.2em;
  }

  .page-online-gambling-industry-trends__hero-subtitle {
    font-size: 1.1em;
  }

  .page-online-gambling-industry-trends__section {
    padding: 40px 0;
  }

  .page-online-gambling-industry-trends__section-title {
    font-size: 1.8em;
  }

  .page-online-gambling-industry-trends__paragraph {
    font-size: 1em;
  }

  .page-online-gambling-industry-trends__grid {
    grid-template-columns: 1fr;
  }

  .page-online-gambling-industry-trends__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

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

  .page-online-gambling-industry-trends__hero-subtitle {
    font-size: 1em;
  }

  .page-online-gambling-industry-trends__section-title {
    font-size: 1.5em;
  }

  .page-online-gambling-industry-trends__button-group {
    flex-direction: column;
    gap: 15px;
  }
}