:root {
  --page-gambling-news-platform-updates-features-primary-color: #1A202C;
  --page-gambling-news-platform-updates-features-secondary-color: #FFD700;
  --page-gambling-news-platform-updates-features-text-light: #F0F2F5; /* For dark backgrounds */
  --page-gambling-news-platform-updates-features-text-dark: #1A202C; /* For light backgrounds */
  --page-gambling-news-platform-updates-features-accent-color: #0028ff; /* Complementary to secondary */
  --page-gambling-news-platform-updates-features-dark-bg-text-color: #e5dfd3; /* Complementary to primary, for text on dark bg */
  --page-gambling-news-platform-updates-features-button-hover-bg: #e0c200;
  --page-gambling-news-platform-updates-features-button-hover-text: #0d0f14;
}

.page-gambling-news-platform-updates-features {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-gambling-news-platform-updates-features-text-light);
  background-color: var(--page-gambling-news-platform-updates-features-primary-color);
}

.page-gambling-news-platform-updates-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-gambling-news-platform-updates-features__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-gambling-news-platform-updates-features__section:last-of-type {
  border-bottom: none;
}

.page-gambling-news-platform-updates-features__section-title {
  font-size: 2.5em;
  color: var(--page-gambling-news-platform-updates-features-secondary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-gambling-news-platform-updates-features__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--page-gambling-news-platform-updates-features-dark-bg-text-color);
  text-align: justify;
}

/* Hero Section */
.page-gambling-news-platform-updates-features__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--page-gambling-news-platform-updates-features-primary-color) 0%, #303b4e 100%);
  padding: 80px 20px;
  min-height: 500px;
  position: relative;
  overflow: hidden;
}

.page-gambling-news-platform-updates-features__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.15;
}

.page-gambling-news-platform-updates-features__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-gambling-news-platform-updates-features__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-gambling-news-platform-updates-features__hero-title {
  font-size: 3.5em;
  color: var(--page-gambling-news-platform-updates-features-secondary-color);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.page-gambling-news-platform-updates-features__hero-description {
  font-size: 1.3em;
  color: var(--page-gambling-news-platform-updates-features-dark-bg-text-color);
  margin-bottom: 30px;
}

.page-gambling-news-platform-updates-features__hero-button,
.page-gambling-news-platform-updates-features__button {
  display: inline-block;
  padding: 15px 30px;
  background-color: var(--page-gambling-news-platform-updates-features-secondary-color);
  color: var(--page-gambling-news-platform-updates-features-text-dark);
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-gambling-news-platform-updates-features__hero-button:hover,
.page-gambling-news-platform-updates-features__button:hover {
  background-color: var(--page-gambling-news-platform-updates-features-button-hover-bg);
  color: var(--page-gambling-news-platform-updates-features-button-hover-text);
  transform: translateY(-3px);
}

.page-gambling-news-platform-updates-features__button--primary {
  background-color: var(--page-gambling-news-platform-updates-features-secondary-color);
  color: var(--page-gambling-news-platform-updates-features-text-dark);
}

.page-gambling-news-platform-updates-features__button--secondary {
  background-color: transparent;
  border: 2px solid var(--page-gambling-news-platform-updates-features-secondary-color);
  color: var(--page-gambling-news-platform-updates-features-secondary-color);
}

.page-gambling-news-platform-updates-features__button--secondary:hover {
  background-color: var(--page-gambling-news-platform-updates-features-secondary-color);
  color: var(--page-gambling-news-platform-updates-features-text-dark);
}

/* Featured Updates Section */
.page-gambling-news-platform-updates-features__update-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gambling-news-platform-updates-features__update-card {
  background-color: #2a3345; /* Slightly lighter than primary for contrast */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 20px;
}

.page-gambling-news-platform-updates-features__update-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}

.page-gambling-news-platform-updates-features__update-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-gambling-news-platform-updates-features__update-card-title {
  font-size: 1.8em;
  color: var(--page-gambling-news-platform-updates-features-secondary-color);
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-gambling-news-platform-updates-features__update-card-description {
  font-size: 1em;
  color: var(--page-gambling-news-platform-updates-features-dark-bg-text-color);
  margin-bottom: 25px;
  padding: 0 20px;
  flex-grow: 1;
}

.page-gambling-news-platform-updates-features__update-card-button {
  display: inline-block;
  padding: 10px 25px;
  background-color: var(--page-gambling-news-platform-updates-features-secondary-color);
  color: var(--page-gambling-news-platform-updates-features-text-dark);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-gambling-news-platform-updates-features__update-card-button:hover {
  background-color: var(--page-gambling-news-platform-updates-features-button-hover-bg);
}

/* Exclusive Offers */
.page-gambling-news-platform-updates-features__offer-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.page-gambling-news-platform-updates-features__offer-list li {
  background-color: #2a3345;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  font-size: 1.1em;
  color: var(--page-gambling-news-platform-updates-features-dark-bg-text-color);
  display: flex;
  align-items: center;
}

.page-gambling-news-platform-updates-features__offer-list li::before {
  content: '⚡'; /* Unicode lightning bolt */
  margin-right: 15px;
  font-size: 1.5em;
  color: var(--page-gambling-news-platform-updates-features-secondary-color);
}

.page-gambling-news-platform-updates-features__highlight {
  color: var(--page-gambling-news-platform-updates-features-secondary-color);
  font-weight: bold;
}

/* CTA Section */
.page-gambling-news-platform-updates-features__cta {
  text-align: center;
  background-color: #2a3345;
  padding: 80px 20px;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.page-gambling-news-platform-updates-features__cta .page-gambling-news-platform-updates-features__section-title {
  color: var(--page-gambling-news-platform-updates-features-secondary-color);
}

.page-gambling-news-platform-updates-features__cta-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsible Gambling */
.page-gambling-news-platform-updates-features__responsible-gambling {
  text-align: center;
  background-color: #1A202C;
  padding: 60px 20px;
}

.page-gambling-news-platform-updates-features__responsible-gambling .page-gambling-news-platform-updates-features__section-title {
  color: var(--page-gambling-news-platform-updates-features-secondary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gambling-news-platform-updates-features__hero-title {
    font-size: 2.8em;
  }
  .page-gambling-news-platform-updates-features__hero-description {
    font-size: 1.1em;
  }
  .page-gambling-news-platform-updates-features__section-title {
    font-size: 2em;
  }
  .page-gambling-news-platform-updates-features__update-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-gambling-news-platform-updates-features__hero {
    padding: 60px 15px;
  }
  .page-gambling-news-platform-updates-features__hero-title {
    font-size: 2.2em;
  }
  .page-gambling-news-platform-updates-features__hero-description {
    font-size: 1em;
  }
  .page-gambling-news-platform-updates-features__section {
    padding: 40px 0;
  }
  .page-gambling-news-platform-updates-features__section-title {
    font-size: 1.8em;
  }
  .page-gambling-news-platform-updates-features__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-gambling-news-platform-updates-features__hero-button,
  .page-gambling-news-platform-updates-features__button {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-gambling-news-platform-updates-features__hero-title {
    font-size: 1.8em;
  }
  .page-gambling-news-platform-updates-features__section-title {
    font-size: 1.5em;
  }
  .page-gambling-news-platform-updates-features__paragraph,
  .page-gambling-news-platform-updates-features__update-card-description,
  .page-gambling-news-platform-updates-features__offer-list li {
    font-size: 0.95em;
  }
}