/* style/today-matches-predictions-esports.css */
.page-today-matches-predictions-esports {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

.page-today-matches-predictions-esports__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-today-matches-predictions-esports__hero {
  background: linear-gradient(135deg, #003366, #1a4d80);
  color: #fff;
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-today-matches-predictions-esports__hero-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  margin-top: 40px;
  filter: brightness(0.7);
}

.page-today-matches-predictions-esports__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFCC00; /* Good contrast with dark blue */
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-today-matches-predictions-esports__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  color: #e0e0e0; /* Good contrast with dark blue */
}

.page-today-matches-predictions-esports__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-today-matches-predictions-esports__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
}

.page-today-matches-predictions-esports__btn--primary {
  background-color: #FFCC00; /* Auxiliary color */
  color: #003366; /* Main color for text, good contrast */
}

.page-today-matches-predictions-esports__btn--primary:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

.page-today-matches-predictions-esports__btn--secondary {
  background-color: transparent;
  color: #FFCC00; /* Auxiliary color for text, good contrast with dark blue */
  border: 2px solid #FFCC00;
}

.page-today-matches-predictions-esports__btn--secondary:hover {
  background-color: #FFCC00;
  color: #003366;
  transform: translateY(-2px);
}

.page-today-matches-predictions-esports__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-today-matches-predictions-esports__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-today-matches-predictions-esports__section {
  padding: 60px 0;
  background-color: #f9f9f9;
  color: #333;
}

.page-today-matches-predictions-esports__section--dark {
  background-color: #003366;
  color: #fff;
}

.page-today-matches-predictions-esports__section-title {
  font-size: 2.5em;
  color: #003366; /* Main color */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-today-matches-predictions-esports__section--dark .page-today-matches-predictions-esports__section-title {
  color: #FFCC00; /* Auxiliary color for contrast */
}

.page-today-matches-predictions-esports__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFCC00;
  border-radius: 2px;
}

.page-today-matches-predictions-esports__section--dark .page-today-matches-predictions-esports__section-title::after {
  background-color: #FFCC00;
}

.page-today-matches-predictions-esports__subsection-title {
  font-size: 1.8em;
  color: #003366;
  margin-top: 30px;
  margin-bottom: 20px;
  border-left: 5px solid #FFCC00;
  padding-left: 15px;
}

.page-today-matches-predictions-esports__section--dark .page-today-matches-predictions-esports__subsection-title {
  color: #FFCC00;
  border-left-color: #FFCC00;
}

.page-today-matches-predictions-esports__list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-today-matches-predictions-esports__list li {
  background-color: #e6f0f7; /* Lighter shade of main color */
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  color: #003366;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.page-today-matches-predictions-esports__section--dark .page-today-matches-predictions-esports__list li {
  background-color: #1a4d80; /* Darker shade for contrast */
  color: #fff;
}

.page-today-matches-predictions-esports__list li strong {
  color: #FFCC00;
  margin-right: 10px;
}

.page-today-matches-predictions-esports__image-wrapper {
  margin: 40px 0;
  text-align: center;
}

.page-today-matches-predictions-esports__image-full-width {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.page-today-matches-predictions-esports__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-today-matches-predictions-esports__grid-item {
  background-color: #1a4d80; /* Darker main color */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  text-align: center;
  color: #fff;
}

.page-today-matches-predictions-esports__grid-item h4 {
  color: #FFCC00; /* Auxiliary color */
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-today-matches-predictions-esports__grid-item p {
  font-size: 1em;
  color: #e0e0e0;
}

.page-today-matches-predictions-esports__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-today-matches-predictions-esports__step-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  border-top: 5px solid #003366;
}

.page-today-matches-predictions-esports__step-icon {
  font-size: 2.5em;
  font-weight: bold;
  color: #003366;
  background-color: #FFCC00;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 5px rgba(255, 204, 0, 0.3);
}

.page-today-matches-predictions-esports__step-item h3 {
  color: #003366;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-today-matches-predictions-esports__step-item p {
  color: #555;
}

.page-today-matches-predictions-esports__cta-small {
  text-align: center;
  margin-top: 40px;
}

.page-today-matches-predictions-esports__section--promo {
  background-color: #e6f0f7; /* Light background for promo */
  padding: 80px 0;
}

.page-today-matches-predictions-esports__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-today-matches-predictions-esports__promo-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 25px;
  text-align: center;
  border: 1px solid #ddd;
}

.page-today-matches-predictions-esports__promo-image {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-today-matches-predictions-esports__promo-item h3 {
  color: #003366;
  font-size: 1.6em;
  margin-bottom: 10px;
}

.page-today-matches-predictions-esports__promo-item p {
  color: #555;
  margin-bottom: 20px;
}

.page-today-matches-predictions-esports__faq {
  margin-top: 40px;
}

.page-today-matches-predictions-esports__faq-item {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.page-today-matches-predictions-esports__faq-question {
  font-size: 1.4em;
  color: #003366;
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  background-color: #f0f7ff; /* Lighter main color */
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-today-matches-predictions-esports__faq-question:hover {
  background-color: #e6f0f7;
}

.page-today-matches-predictions-esports__faq-question::after {
  content: '+';
  font-size: 1.2em;
  color: #FFCC00;
  font-weight: bold;
}

.page-today-matches-predictions-esports__faq-question.active::after {
  content: '-';
}

.page-today-matches-predictions-esports__faq-answer {
  padding: 0 25px;
  background-color: #fff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-today-matches-predictions-esports__faq-answer.open {
  max-height: 300px; /* Adjust as needed */
  padding: 20px 25px;
}

.page-today-matches-predictions-esports__faq-answer p {
  margin: 0;
  color: #555;
}

.page-today-matches-predictions-esports__cta-final {
  background: linear-gradient(135deg, #003366, #FFCC00);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-today-matches-predictions-esports__cta-title {
  font-size: 3em;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-today-matches-predictions-esports__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-today-matches-predictions-esports__hero-title {
    font-size: 2.8em;
  }
  .page-today-matches-predictions-esports__section-title {
    font-size: 2em;
  }
  .page-today-matches-predictions-esports__grid,
  .page-today-matches-predictions-esports__steps,
  .page-today-matches-predictions-esports__promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-today-matches-predictions-esports__hero {
    padding: 60px 0 30px;
  }
  .page-today-matches-predictions-esports__hero-title {
    font-size: 2.2em;
  }
  .page-today-matches-predictions-esports__hero-subtitle {
    font-size: 1.1em;
  }
  .page-today-matches-predictions-esports__hero-actions {
    flex-direction: column;
  }
  .page-today-matches-predictions-esports__btn {
    width: 80%;
    max-width: 300px;
  }
  .page-today-matches-predictions-esports__section {
    padding: 40px 0;
  }
  .page-today-matches-predictions-esports__section-title {
    font-size: 1.8em;
  }
  .page-today-matches-predictions-esports__subsection-title {
    font-size: 1.5em;
  }
  .page-today-matches-predictions-esports__list li {
    padding: 10px 15px;
  }
  .page-today-matches-predictions-esports__grid-item {
    padding: 20px;
  }
  .page-today-matches-predictions-esports__step-item {
    padding: 20px;
  }
  .page-today-matches-predictions-esports__promo-item {
    padding: 20px;
  }
  .page-today-matches-predictions-esports__faq-question {
    font-size: 1.2em;
    padding: 15px 20px;
  }
  .page-today-matches-predictions-esports__faq-answer.open {
    padding: 15px 20px;
  }
  .page-today-matches-predictions-esports__cta-title {
    font-size: 2.2em;
  }
  .page-today-matches-predictions-esports__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-today-matches-predictions-esports__hero-title {
    font-size: 1.8em;
  }
  .page-today-matches-predictions-esports__hero-subtitle {
    font-size: 0.9em;
  }
  .page-today-matches-predictions-esports__btn {
    width: 90%;
  }
  .page-today-matches-predictions-esports__section-title {
    font-size: 1.5em;
  }
  .page-today-matches-predictions-esports__subsection-title {
    font-size: 1.3em;
  }
  .page-today-matches-predictions-esports__grid,
  .page-today-matches-predictions-esports__steps,
  .page-today-matches-predictions-esports__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-today-matches-predictions-esports__cta-title {
    font-size: 1.8em;
  }
}