/* style/expert-predictions-football.css */
.page-expert-predictions-football {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Light text for dark background */
  background-color: #0A192F; /* Main background color */
  line-height: 1.6;
}

.page-expert-predictions-football__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-expert-predictions-football__hero {
  position: relative;
  background: linear-gradient(135deg, #0A192F 0%, #1a3a6b 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.page-expert-predictions-football__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 0;
}

.page-expert-predictions-football__hero .page-expert-predictions-football__container {
  position: relative;
  z-index: 1;
}

.page-expert-predictions-football__hero-title {
  font-size: 3.5em;
  color: #E0B92B; /* Accent color for title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-expert-predictions-football__hero-description {
  font-size: 1.3em;
  color: #ffffff;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-expert-predictions-football__hero-button {
  display: inline-block;
  background-color: #E0B92B; /* Accent button */
  color: #0A192F; /* Dark text on accent button */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-expert-predictions-football__hero-button:hover {
  background-color: #f0c945; /* Lighter accent on hover */
  transform: translateY(-3px);
}

/* General Section Styling */
.page-expert-predictions-football__section {
  padding: 80px 0;
  text-align: center;
}

.page-expert-predictions-football__section:nth-of-type(even) {
  background-color: #1a2f4d; /* Slightly lighter dark blue for contrast */
}

.page-expert-predictions-football__section-title {
  font-size: 2.5em;
  color: #E0B92B; /* Accent color for section titles */
  margin-bottom: 30px;
}

.page-expert-predictions-football__section-intro {
  font-size: 1.15em;
  color: #e0e0e0;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.page-expert-predictions-football__section-text {
  font-size: 1em;
  color: #cccccc;
  max-width: 900px;
  margin: 20px auto;
}

/* Features Grid */
.page-expert-predictions-football__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-expert-predictions-football__feature-item {
  background-color: #0A192F; /* Dark blue background for feature items */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
}

.page-expert-predictions-football__feature-title {
  font-size: 1.5em;
  color: #E0B92B; /* Accent color for feature titles */
  margin-bottom: 15px;
}

.page-expert-predictions-football__feature-text {
  color: #c0c0c0;
  font-size: 0.95em;
}

.page-expert-predictions-football__image-full-width {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 10px;
  margin-top: 60px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Checklist */
.page-expert-predictions-football__checklist {
  list-style: none;
  padding: 0;
  text-align: left;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.page-expert-predictions-football__checklist li {
  background-color: #0A192F; /* Dark blue background for list items */
  padding: 25px;
  border-left: 5px solid #E0B92B; /* Accent border */
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.page-expert-predictions-football__checklist-title {
  color: #E0B92B; /* Accent color for checklist titles */
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-expert-predictions-football__checklist p {
  color: #c0c0c0;
  font-size: 0.9em;
}

/* Content Columns */
.page-expert-predictions-football__content-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-expert-predictions-football__column {
  background-color: #0A192F; /* Dark blue background for columns */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
}

.page-expert-predictions-football__column-title {
  font-size: 1.6em;
  color: #E0B92B; /* Accent color for column titles */
  margin-bottom: 15px;
}

.page-expert-predictions-football__column-text {
  color: #c0c0c0;
  font-size: 0.95em;
  margin-bottom: 15px;
}

/* League List */
.page-expert-predictions-football__league-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 40px;
  text-align: left;
}

.page-expert-predictions-football__league-list li {
  background-color: #1a2f4d; /* Slightly lighter dark blue */
  color: #ffffff;
  padding: 15px 20px;
  border-radius: 5px;
  font-size: 1.1em;
  border-left: 3px solid #E0B92B;
}

/* CTA Section */
.page-expert-predictions-football__cta-section {
  background: linear-gradient(90deg, #0A192F 0%, #3e5a87 100%); /* Gradient background */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-expert-predictions-football__cta-content {
  position: relative;
  z-index: 1;
}

.page-expert-predictions-football__cta-title {
  font-size: 2.8em;
  color: #E0B92B; /* Accent color */
  margin-bottom: 25px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-expert-predictions-football__cta-description {
  font-size: 1.2em;
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-expert-predictions-football__cta-button {
  display: inline-block;
  background-color: #E0B92B; /* Accent button */
  color: #0A192F; /* Dark text on accent button */
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-expert-predictions-football__cta-button:hover {
  background-color: #f0c945;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-expert-predictions-football__cta-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin-top: 50px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Responsible Gambling Section */
.page-expert-predictions-football__responsible-gambling {
  background-color: #0A192F;
  padding-bottom: 100px;
}

.page-expert-predictions-football__link {
  color: #E0B92B;
  text-decoration: none;
  font-weight: bold;
  margin-top: 30px;
  display: inline-block;
  transition: color 0.3s ease;
}

.page-expert-predictions-football__link:hover {
  color: #f0c945;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-expert-predictions-football__hero-title {
    font-size: 2.8em;
  }
  .page-expert-predictions-football__section-title {
    font-size: 2em;
  }
  .page-expert-predictions-football__checklist {
    grid-template-columns: 1fr;
  }
  .page-expert-predictions-football__content-columns {
    grid-template-columns: 1fr;
  }
  .page-expert-predictions-football__league-list {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-expert-predictions-football__hero {
    padding: 80px 0;
  }
  .page-expert-predictions-football__hero-title {
    font-size: 2.2em;
  }
  .page-expert-predictions-football__hero-description {
    font-size: 1.1em;
  }
  .page-expert-predictions-football__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-expert-predictions-football__section {
    padding: 60px 0;
  }
  .page-expert-predictions-football__section-title {
    font-size: 1.8em;
  }
  .page-expert-predictions-football__section-intro {
    font-size: 1em;
  }
  .page-expert-predictions-football__features-grid {
    grid-template-columns: 1fr;
  }
  .page-expert-predictions-football__cta-title {
    font-size: 2.2em;
  }
  .page-expert-predictions-football__cta-description {
    font-size: 1em;
  }
  .page-expert-predictions-football__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-expert-predictions-football__hero-title {
    font-size: 1.8em;
  }
  .page-expert-predictions-football__hero-description {
    font-size: 0.9em;
  }
  .page-expert-predictions-football__section-title {
    font-size: 1.6em;
  }
  .page-expert-predictions-football__feature-title, .page-expert-predictions-football__checklist-title, .page-expert-predictions-football__column-title {
    font-size: 1.2em;
  }
  .page-expert-predictions-football__cta-title {
    font-size: 1.8em;
  }
}