.page-blog-news-center-major-event-predictions {
  --primary-color: #FFD700;
  --secondary-color: #DC143C;
  --background-dark: #1A1A2E;
  --text-light: #FFFFFF;
  --text-dark: #1A1A2E;
  --accent-light: #FFEB3B;
  --button-hover-primary: #e6c200;
  --button-hover-secondary: #c21235;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light);
  background-color: var(--background-dark);
}

.page-blog-news-center-major-event-predictions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-news-center-major-event-predictions__container--reverse {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 40px;
}

.page-blog-news-center-major-event-predictions__container--flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-blog-news-center-major-event-predictions__container--center {
  text-align: center;
}

.page-blog-news-center-major-event-predictions__section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-blog-news-center-major-event-predictions__section--about {
  background-color: var(--background-dark);
}

.page-blog-news-center-major-event-predictions__section--methodology {
  background-color: var(--background-dark);
}

.page-blog-news-center-major-event-predictions__section--coverage {
  background-color: var(--background-dark);
}

.page-blog-news-center-major-event-predictions__section--optimize {
  background-color: var(--background-dark);
}

.page-blog-news-center-major-event-predictions__section--responsible-gambling {
  background-color: var(--background-dark);
}

.page-blog-news-center-major-event-predictions__section--cta {
  background-color: var(--background-dark);
  padding-bottom: 0;
}

.page-blog-news-center-major-event-predictions__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px 0;
  text-align: center;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--background-dark) 0%, #3a0d1d 100%);
}

.page-blog-news-center-major-event-predictions__hero-content {
  z-index: 2;
  max-width: 800px;
  margin-bottom: 40px;
}

.page-blog-news-center-major-event-predictions__hero-title {
  font-size: 3.5em;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-news-center-major-event-predictions__hero-subtitle {
  font-size: 1.3em;
  color: var(--text-light);
  margin-bottom: 30px;
}

.page-blog-news-center-major-event-predictions__hero-image-wrapper {
  width: 100%;
  max-width: 1000px;
  position: relative;
  z-index: 1;
  margin-top: -50px; /* Overlap with content above */
}

.page-blog-news-center-major-event-predictions__hero-image {
  width: 100%;
  height: auto;
  border-radius: 15px 15px 0 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-blog-news-center-major-event-predictions__section-title {
  font-size: 2.8em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-blog-news-center-major-event-predictions__sub-title {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: left;
}

.page-blog-news-center-major-event-predictions__text {
  font-size: 1.1em;
  color: var(--text-light);
  margin-bottom: 20px;
  text-align: left;
}

.page-blog-news-center-major-event-predictions__link {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-news-center-major-event-predictions__link:hover {
  color: var(--accent-light);
  text-decoration: underline;
}

.page-blog-news-center-major-event-predictions__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-blog-news-center-major-event-predictions__button--primary {
  background-color: var(--primary-color);
  color: var(--text-dark);
}

.page-blog-news-center-major-event-predictions__button--primary:hover {
  background-color: var(--button-hover-primary);
  transform: translateY(-2px);
}

.page-blog-news-center-major-event-predictions__button--secondary {
  background-color: var(--secondary-color);
  color: var(--text-light);
  border: 2px solid var(--secondary-color);
}

.page-blog-news-center-major-event-predictions__button--secondary:hover {
  background-color: var(--button-hover-secondary);
  transform: translateY(-2px);
}

.page-blog-news-center-major-event-predictions__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-news-center-major-event-predictions__feature-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-left: 5px solid var(--primary-color);
}

.page-blog-news-center-major-event-predictions__feature-title {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-blog-news-center-major-event-predictions__feature-text {
  font-size: 1em;
  color: var(--text-light);
}

.page-blog-news-center-major-event-predictions__image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-blog-news-center-major-event-predictions__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-news-center-major-event-predictions__content-block {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.page-blog-news-center-major-event-predictions__coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-blog-news-center-major-event-predictions__coverage-item {
  background-color: rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-news-center-major-event-predictions__coverage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.page-blog-news-center-major-event-predictions__coverage-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-blog-news-center-major-event-predictions__coverage-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin: 25px 20px 15px;
}

.page-blog-news-center-major-event-predictions__coverage-text {
  font-size: 1em;
  color: var(--text-light);
  padding: 0 20px 25px;
}

.page-blog-news-center-major-event-predictions__cta-buttons {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-news-center-major-event-predictions__cta-image {
  width: 100%;
  height: auto;
  margin-top: 60px;
  border-radius: 15px 15px 0 0;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (min-width: 768px) {
  .page-blog-news-center-major-event-predictions__hero {
    padding-top: 100px;
    text-align: left;
    min-height: 700px;
  }

  .page-blog-news-center-major-event-predictions__hero-content {
    max-width: 60%;
    margin-left: 20px; /* Adjust as needed */
    margin-right: auto;
  }

  .page-blog-news-center-major-event-predictions__hero-image-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    max-width: none;
    margin-top: 0;
  }

  .page-blog-news-center-major-event-predictions__hero-image {
    border-radius: 15px 0 0 0;
  }

  .page-blog-news-center-major-event-predictions__container--reverse {
    flex-direction: row;
  }

  .page-blog-news-center-major-event-predictions__container--flex {
    flex-direction: row;
  }

  .page-blog-news-center-major-event-predictions__content-block {
    padding-right: 30px;
  }

  .page-blog-news-center-major-event-predictions__container--reverse .page-blog-news-center-major-event-predictions__content-block {
    padding-left: 30px;
    padding-right: 0;
  }

  .page-blog-news-center-major-event-predictions__section-title {
    font-size: 3.5em;
  }

  .page-blog-news-center-major-event-predictions__sub-title {
    font-size: 2em;
  }

  .page-blog-news-center-major-event-predictions__text {
    font-size: 1.15em;
  }
}

@media (max-width: 767px) {
  .page-blog-news-center-major-event-predictions__hero-title {
    font-size: 2.5em;
  }

  .page-blog-news-center-major-event-predictions__hero-subtitle {
    font-size: 1.1em;
  }

  .page-blog-news-center-major-event-predictions__section-title {
    font-size: 2em;
  }

  .page-blog-news-center-major-event-predictions__sub-title {
    font-size: 1.5em;
  }

  .page-blog-news-center-major-event-predictions__text {
    font-size: 1em;
  }

  .page-blog-news-center-major-event-predictions__section {
    padding: 60px 0;
  }

  .page-blog-news-center-major-event-predictions__button {
    width: 100%;
    max-width: 300px;
  }

  .page-blog-news-center-major-event-predictions__cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-blog-news-center-major-event-predictions__hero-image-wrapper {
    margin-top: 20px;
  }

  .page-blog-news-center-major-event-predictions__container--reverse,
  .page-blog-news-center-major-event-predictions__container--flex {
    flex-direction: column;
  }
  .page-blog-news-center-major-event-predictions__content-block {
    text-align: center;
  }
}