/* style/betting-news-center-football-prediction.css */
.page-betting-news-center-football-prediction {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f7f6;
}

.page-betting-news-center-football-prediction .highlight {
  color: #FFD700; /* Auxiliary color for highlight */
}

.page-betting-news-center-football-prediction__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-betting-news-center-football-prediction__hero {
  background: linear-gradient(135deg, #0047AB 0%, #00287a 100%); /* Darker blue gradient */
  color: #fff;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.page-betting-news-center-football-prediction__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,football,pattern,dark_blue]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-betting-news-center-football-prediction__hero-content {
  flex: 1;
  padding-left: 20px;
  z-index: 1;
}

.page-betting-news-center-football-prediction__hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.page-betting-news-center-football-prediction__hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-betting-news-center-football-prediction__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  color: #fff;
}

.page-betting-news-center-football-prediction__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-betting-news-center-football-prediction__btn-primary {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary color */
  color: #0047AB; /* Primary color for text on auxiliary background */
  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;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-betting-news-center-football-prediction__btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

/* General Section Styling */
.page-betting-news-center-football-prediction__section {
  padding: 80px 0;
  text-align: center;
}

.page-betting-news-center-football-prediction__section:nth-of-type(even) {
  background-color: #e9ecef;
}

.page-betting-news-center-football-prediction__section-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #0047AB; /* Primary color */
  font-weight: bold;
}

.page-betting-news-center-football-prediction__section-description {
  font-size: 1.2em;
  color: #555;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

/* Features Grid */
.page-betting-news-center-football-prediction__features-grid,
.page-betting-news-center-football-prediction__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-betting-news-center-football-prediction__feature-item,
.page-betting-news-center-football-prediction__step-item,
.page-betting-news-center-football-prediction__bet-type-item,
.page-betting-news-center-football-prediction__vip-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.page-betting-news-center-football-prediction__feature-item:hover,
.page-betting-news-center-football-prediction__step-item:hover,
.page-betting-news-center-football-prediction__bet-type-item:hover,
.page-betting-news-center-football-prediction__vip-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.page-betting-news-center-football-prediction__feature-item img,
.page-betting-news-center-football-prediction__bet-type-item img,
.page-betting-news-center-football-prediction__vip-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 5px rgba(0, 71, 171, 0.3)); /* Shadow with primary color */
}

.page-betting-news-center-football-prediction__feature-item h3,
.page-betting-news-center-football-prediction__bet-type-item h3,
.page-betting-news-center-football-prediction__vip-item h3 {
  font-size: 1.6em;
  color: #0047AB; /* Primary color */
  margin-bottom: 15px;
}

.page-betting-news-center-football-prediction__feature-item p,
.page-betting-news-center-football-prediction__bet-type-item p,
.page-betting-news-center-football-prediction__vip-item p {
  font-size: 1em;
  color: #666;
}

/* Steps Grid */
.page-betting-news-center-football-prediction__step-item {
  position: relative;
  padding-top: 60px;
}

.page-betting-news-center-football-prediction__step-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background-color: #0047AB; /* Primary color */
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(0, 71, 171, 0.4);
}

/* CTA Banner */
.page-betting-news-center-football-prediction__cta-banner {
  background: linear-gradient(90deg, #0047AB, #00287a);
  color: #fff;
  padding: 40px;
  border-radius: 15px;
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 30px;
  text-align: left;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.page-betting-news-center-football-prediction__cta-banner img {
  width: 150px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-betting-news-center-football-prediction__cta-banner-content h3 {
  font-size: 2.2em;
  margin-bottom: 15px;
  color: #FFD700; /* Auxiliary color */
}

.page-betting-news-center-football-prediction__cta-banner-content p {
  font-size: 1.2em;
  margin-bottom: 25px;
  color: #e0e0e0;
}

.page-betting-news-center-football-prediction__btn-secondary {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary color */
  color: #0047AB; /* Primary color for text on auxiliary background */
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

.page-betting-news-center-football-prediction__btn-secondary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

/* Betting Types */
.page-betting-news-center-football-prediction__grid-cols-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Tips List */
.page-betting-news-center-football-prediction__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
}

.page-betting-news-center-football-prediction__tips-list li {
  background-color: #fff;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #0047AB;
}

.page-betting-news-center-football-prediction__tips-list li h4 {
  font-size: 1.8em;
  color: #0047AB;
  margin-bottom: 10px;
}

.page-betting-news-center-football-prediction__tips-list li p {
  font-size: 1.1em;
  color: #555;
}

/* VIP Benefits */
.page-betting-news-center-football-prediction__cta-bottom {
  margin-top: 60px;
  padding: 40px;
  background-color: #0047AB;
  color: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.page-betting-news-center-football-prediction__cta-bottom p {
  font-size: 1.3em;
  margin-bottom: 25px;
  color: #e0e0e0;
}

/* FAQ Accordion */
.page-betting-news-center-football-prediction__accordion {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-betting-news-center-football-prediction__accordion-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-betting-news-center-football-prediction__accordion-header {
  background-color: #0047AB;
  color: #fff;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-betting-news-center-football-prediction__accordion-header:hover {
  background-color: #003a8c;
}

.page-betting-news-center-football-prediction__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-betting-news-center-football-prediction__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-betting-news-center-football-prediction__accordion-content {
  padding: 0 25px;
  background-color: #f9f9f9;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-betting-news-center-football-prediction__accordion-content.active {
  max-height: 200px; /* Adjust as needed */
  padding: 15px 25px;
}

.page-betting-news-center-football-prediction__accordion-content p {
  font-size: 1em;
  color: #444;
  margin: 0;
}

/* Final CTA */
.page-betting-news-center-football-prediction__final-cta {
  background-color: #00287a;
  color: #fff;
  padding: 80px 0;
}

.page-betting-news-center-football-prediction__final-cta .page-betting-news-center-football-prediction__section-title {
  color: #FFD700;
}

.page-betting-news-center-football-prediction__final-cta .page-betting-news-center-football-prediction__section-description {
  color: #e0e0e0;
  margin-bottom: 40px;
}

.page-betting-news-center-football-prediction__btn-text {
  display: inline-block;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  margin-left: 20px;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-betting-news-center-football-prediction__btn-text:hover {
  color: #fff;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-betting-news-center-football-prediction__hero {
    flex-direction: column;
    text-align: center;
    padding: 80px 20px;
  }

  .page-betting-news-center-football-prediction__hero-content {
    padding-left: 0;
  }

  .page-betting-news-center-football-prediction__hero-title {
    font-size: 2.8em;
  }

  .page-betting-news-center-football-prediction__hero-subtitle {
    font-size: 1.3em;
  }

  .page-betting-news-center-football-prediction__hero-image {
    margin-top: 40px;
  }

  .page-betting-news-center-football-prediction__section-title {
    font-size: 2.2em;
  }

  .page-betting-news-center-football-prediction__cta-banner {
    flex-direction: column;
    text-align: center;
  }

  .page-betting-news-center-football-prediction__cta-banner img {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .page-betting-news-center-football-prediction__hero-title {
    font-size: 2.2em;
  }

  .page-betting-news-center-football-prediction__hero-subtitle {
    font-size: 1.1em;
  }

  .page-betting-news-center-football-prediction__features-grid,
  .page-betting-news-center-football-prediction__steps-grid,
  .page-betting-news-center-football-prediction__grid-cols-2 {
    grid-template-columns: 1fr;
  }

  .page-betting-news-center-football-prediction__feature-item,
  .page-betting-news-center-football-prediction__step-item,
  .page-betting-news-center-football-prediction__bet-type-item,
  .page-betting-news-center-football-prediction__vip-item {
    padding: 25px;
  }

  .page-betting-news-center-football-prediction__tips-list li {
    padding: 25px;
  }

  .page-betting-news-center-football-prediction__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-betting-news-center-football-prediction__accordion-content {
    padding: 10px 20px;
  }

  .page-betting-news-center-football-prediction__btn-primary,
  .page-betting-news-center-football-prediction__btn-secondary {
    width: 100%;
    margin-bottom: 15px;
  }

  .page-betting-news-center-football-prediction__btn-text {
    margin-left: 0;
  }

  .page-betting-news-center-football-prediction__final-cta a {
    display: block;
    margin: 15px auto;
  }
}

@media (max-width: 480px) {
  .page-betting-news-center-football-prediction__hero {
    padding: 60px 15px;
  }

  .page-betting-news-center-football-prediction__hero-title {
    font-size: 1.8em;
  }

  .page-betting-news-center-football-prediction__hero-subtitle {
    font-size: 1em;
  }

  .page-betting-news-center-football-prediction__section-title {
    font-size: 1.8em;
  }

  .page-betting-news-center-football-prediction__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-betting-news-center-football-prediction__btn-primary,
  .page-betting-news-center-football-prediction__btn-secondary {
    font-size: 0.95em;
    padding: 12px 20px;
  }

  .page-betting-news-center-football-prediction__cta-banner-content h3 {
    font-size: 1.8em;
  }

  .page-betting-news-center-football-prediction__cta-banner-content p {
    font-size: 1em;
  }
}