/* style/industry-insights.css */
.page-industry-insights {
  font-family: 'Arial', sans-serif;
  color: #F8F8F8; /* Light text for dark backgrounds */
  line-height: 1.6;
  background-color: #0A2463; /* Main background color */
}

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

.page-industry-insights__highlight {
  color: #E3B23C; /* Accent color for highlights */
}

.page-industry-insights__link {
  color: #E3B23C;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-industry-insights__link:hover {
  color: #f5db9c;
}

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

.page-industry-insights__btn--primary {
  background-color: #E3B23C; /* Accent color */
  color: #0A2463; /* Main color for text */
}

.page-industry-insights__btn--primary:hover {
  background-color: #f5db9c;
  color: #0A2463;
}

.page-industry-insights__btn--secondary {
  background-color: transparent;
  color: #E3B23C;
  border: 2px solid #E3B23C;
}

.page-industry-insights__btn--secondary:hover {
  background-color: #E3B23C;
  color: #0A2463;
}

.page-industry-insights__btn--small {
  padding: 8px 15px;
  font-size: 0.9em;
}

.page-industry-insights__btn--cta {
  background-color: #E3B23C;
  color: #0A2463;
  padding: 15px 35px;
  font-size: 1.1em;
  margin-right: 15px;
  margin-bottom: 15px;
}

.page-industry-insights__btn--cta:hover {
  background-color: #f5db9c;
}

.page-industry-insights__btn--cta-secondary {
  background-color: transparent;
  color: #F8F8F8;
  border: 2px solid #F8F8F8;
  padding: 15px 35px;
  font-size: 1.1em;
  margin-bottom: 15px;
}

.page-industry-insights__btn--cta-secondary:hover {
  background-color: #F8F8F8;
  color: #0A2463;
}

/* Hero Section */
.page-industry-insights__hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 40px 0;
}

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

.page-industry-insights__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 36, 99, 0.8), rgba(227, 178, 60, 0.4));
  z-index: 2;
}

.page-industry-insights__hero .page-industry-insights__container {
  position: relative;
  z-index: 3;
}

.page-industry-insights__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #F8F8F8;
  line-height: 1.2;
}

.page-industry-insights__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: #F8F8F8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* General Section Styling */
.page-industry-insights__section {
  padding: 60px 0;
  background-color: #0A2463;
  color: #F8F8F8;
}

.page-industry-insights__section:nth-of-type(even) {
  background-color: #081e52;
}

.page-industry-insights__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #F8F8F8;
}

.page-industry-insights__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
}

/* Trends Section */
.page-industry-insights__trends .page-industry-insights__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-industry-insights__trend-item {
  background-color: #1a3a7a;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-industry-insights__trend-item:hover {
  transform: translateY(-10px);
}

.page-industry-insights__trend-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(227, 178, 60, 0.5));
}

.page-industry-insights__trend-item h3 {
  font-size: 1.5em;
  color: #E3B23C;
  margin-bottom: 15px;
}

.page-industry-insights__trend-item p {
  font-size: 1em;
  color: #F8F8F8;
}

/* TK88 Leadership Section */
.page-industry-insights__tk88-leadership .page-industry-insights__grid--alt {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-industry-insights__content-block {
  background-color: #1a3a7a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #F8F8F8;
}

.page-industry-insights__content-block h3 {
  font-size: 1.8em;
  color: #E3B23C;
  margin-bottom: 15px;
}

.page-industry-insights__content-block p {
  margin-bottom: 15px;
}

.page-industry-insights__content-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

/* Market Analysis Section */
.page-industry-insights__market-insights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-industry-insights__insight-card {
  background-color: #1a3a7a;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-industry-insights__insight-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(227, 178, 60, 0.6));
}

.page-industry-insights__insight-card h3 {
  font-size: 1.6em;
  color: #E3B23C;
  margin-bottom: 15px;
}

.page-industry-insights__insight-card p {
  font-size: 1em;
  color: #F8F8F8;
}

/* Future Section */
.page-industry-insights__future-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-industry-insights__future-list li {
  background-color: #1a3a7a;
  margin-bottom: 20px;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-industry-insights__future-list h4 {
  font-size: 1.7em;
  color: #E3B23C;
  margin-bottom: 10px;
}

.page-industry-insights__future-list p {
  color: #F8F8F8;
}

/* Responsible Gambling Section */
.page-industry-insights__responsible-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-industry-insights__feature-card {
  background-color: #1a3a7a;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-industry-insights__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(227, 178, 60, 0.5));
}

.page-industry-insights__feature-card h4 {
  font-size: 1.4em;
  color: #E3B23C;
  margin-bottom: 10px;
}

.page-industry-insights__feature-card p {
  font-size: 0.95em;
  color: #F8F8F8;
}

/* Benefits Section */
.page-industry-insights__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-industry-insights__benefits-list li {
  background-color: #1a3a7a;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: flex-start;
  text-align: left;
}

.page-industry-insights__benefit-icon {
  width: 50px;
  height: 50px;
  margin-right: 15px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 0 5px rgba(227, 178, 60, 0.5));
}

.page-industry-insights__benefits-list li p {
  margin: 0;
  color: #F8F8F8;
}

.page-industry-insights__benefits-list li p strong {
  color: #E3B23C;
  font-size: 1.1em;
}

/* Related Pages Section */
.page-industry-insights__related-pages {
  background-color: #081e52;
}

.page-industry-insights__detail-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-industry-insights__detail-item {
  background-color: #1a3a7a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #F8F8F8;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-industry-insights__detail-item h3 {
  font-size: 1.6em;
  color: #E3B23C;
  margin-bottom: 15px;
}

.page-industry-insights__detail-item h3 a {
  color: #E3B23C;
  text-decoration: none;
}

.page-industry-insights__detail-item h3 a:hover {
  text-decoration: underline;
}

.page-industry-insights__detail-item p {
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Call to Action Banner */
.page-industry-insights__cta-banner {
  background: linear-gradient(90deg, #0A2463, #081e52);
  padding: 80px 0;
  text-align: center;
  color: #F8F8F8;
}

.page-industry-insights__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-industry-insights__cta-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-industry-insights__hero-title {
    font-size: 2.8em;
  }
  .page-industry-insights__hero-subtitle {
    font-size: 1.2em;
  }
  .page-industry-insights__section-title {
    font-size: 2em;
  }
  .page-industry-insights__cta-title {
    font-size: 2.5em;
  }
  .page-industry-insights__cta-subtitle {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-industry-insights__hero {
    height: 400px;
  }
  .page-industry-insights__hero-title {
    font-size: 2.2em;
  }
  .page-industry-insights__hero-subtitle {
    font-size: 1em;
  }
  .page-industry-insights__section {
    padding: 40px 0;
  }
  .page-industry-insights__section-title {
    font-size: 1.8em;
  }
  .page-industry-insights__grid, .page-industry-insights__grid--alt, .page-industry-insights__market-insights, .page-industry-insights__responsible-features, .page-industry-insights__benefits-list, .page-industry-insights__detail-list {
    grid-template-columns: 1fr;
  }
  .page-industry-insights__cta-title {
    font-size: 2em;
  }
  .page-industry-insights__cta-subtitle {
    font-size: 1em;
  }
  .page-industry-insights__btn--cta {
    margin-right: 0;
    display: block;
    width: 100%;
  }
  .page-industry-insights__btn--cta-secondary {
    display: block;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .page-industry-insights__hero {
    height: 300px;
  }
  .page-industry-insights__hero-title {
    font-size: 1.8em;
  }
  .page-industry-insights__hero-subtitle {
    font-size: 0.9em;
  }
  .page-industry-insights__section-title {
    font-size: 1.5em;
  }
  .page-industry-insights__content-block h3, .page-industry-insights__insight-card h3, .page-industry-insights__future-list h4, .page-industry-insights__feature-card h4, .page-industry-insights__detail-item h3 {
    font-size: 1.3em;
  }
  .page-industry-insights__cta-title {
    font-size: 1.8em;
  }
}