/* style/the-thao-football-betting.css */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #1A237E; /* Dark Blue */
  --text-dark: #1A237E; /* For light backgrounds */
  --text-light: #FFFFFF; /* For dark backgrounds */
  --background-light: #F8F9FA;
  --background-dark: #1A237E;
  --accent-color: #FF4500; /* Orange-red for emphasis */
}

.page-the-thao-football-betting {
  font-family: 'Arial', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--background-light);
}

.page-the-thao-football-betting__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-the-thao-football-betting__section {
  padding: 60px 0;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  background-color: #FFFFFF;
}

.page-the-thao-football-betting__section:nth-of-type(even) {
  background-color: var(--background-light);
}

.page-the-thao-football-betting__hero {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--text-light);
  overflow: hidden;
  box-shadow: none;
}

.page-the-thao-football-betting__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-the-thao-football-betting__hero-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-the-thao-football-betting__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-the-thao-football-betting__hero h1 {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-the-thao-football-betting__hero p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: var(--text-light);
}

.page-the-thao-football-betting__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
}

.page-the-thao-football-betting__cta-button:hover {
  background: #FFC107;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-the-thao-football-betting h2 {
  font-size: 2.5em;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-the-thao-football-betting h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.page-the-thao-football-betting h3 {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.page-the-thao-football-betting p {
  margin-bottom: 15px;
  color: #333;
}

.page-the-thao-football-betting__intro p {
  text-align: center;
  font-size: 1.1em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #444;
}

.page-the-thao-football-betting__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-the-thao-football-betting__feature-item {
  background-color: var(--background-light);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-the-thao-football-betting__feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-the-thao-football-betting__feature-item .page-the-thao-football-betting__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: none; /* Ensure no color filters */
}

.page-the-thao-football-betting__feature-item h3 {
  font-size: 1.5em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-the-thao-football-betting__feature-item p {
  font-size: 0.95em;
  color: #555;
}

.page-the-thao-football-betting__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-the-thao-football-betting__card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-the-thao-football-betting__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-the-thao-football-betting__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  filter: none; /* Ensure no color filters */
}

.page-the-thao-football-betting__card-content {
  padding: 25px;
}

.page-the-thao-football-betting__card-content h3 {
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-the-thao-football-betting__card-content h3 a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-the-thao-football-betting__card-content h3 a:hover {
  color: var(--primary-color);
}

.page-the-thao-football-betting__card-content p {
  font-size: 0.95em;
  color: #555;
}

.page-the-thao-football-betting__bet-types ul {
  list-style: disc;
  margin-left: 25px;
  padding-left: 0;
  color: #444;
}

.page-the-thao-football-betting__bet-types ul li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-the-thao-football-betting__bet-types ul li strong {
  color: var(--secondary-color);
}

.page-the-thao-football-betting__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-the-thao-football-betting__step-item {
  background-color: var(--background-light);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-the-thao-football-betting__step-item h3 {
  font-size: 1.6em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-the-thao-football-betting__step-item p {
  font-size: 0.95em;
  color: #555;
  margin-bottom: 25px;
}

.page-the-thao-football-betting__step-image {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 25px;
  filter: none; /* Ensure no color filters */
}

.page-the-thao-football-betting__button {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 30px;
  font-size: 1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-the-thao-football-betting__button:hover {
  background: #FFC107;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-the-thao-football-betting__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-the-thao-football-betting__strategy-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-left: 5px solid var(--primary-color);
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-the-thao-football-betting__strategy-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-the-thao-football-betting__strategy-item h3 {
  font-size: 1.4em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-the-thao-football-betting__strategy-item p {
  font-size: 0.95em;
  color: #555;
}

.page-the-thao-football-betting__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-the-thao-football-betting__promo-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  font-size: 1.05em;
  color: #444;
  background-color: var(--background-light);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-the-thao-football-betting__promo-list li strong {
  color: var(--secondary-color);
  margin-right: 10px;
}

.page-the-thao-football-betting__promo-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-right: 20px;
  flex-shrink: 0;
  filter: none; /* Ensure no color filters */
}

.page-the-thao-football-betting__promo-note {
  text-align: center;
  margin-top: 30px;
  font-style: italic;
  color: #666;
}

.page-the-thao-football-betting__text-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-the-thao-football-betting__text-link:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.page-the-thao-football-betting__info-card {
  background-color: var(--background-light);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-the-thao-football-betting__info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-the-thao-football-betting__info-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: none; /* Ensure no color filters */
}

.page-the-thao-football-betting__info-card h3 {
  font-size: 1.5em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-the-thao-football-betting__info-card p {
  font-size: 0.95em;
  color: #555;
}

/* FAQ Styles */
.page-the-thao-football-betting .faq-list {
  margin-top: 40px;
}

.page-the-thao-football-betting .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-the-thao-football-betting .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.page-the-thao-football-betting .faq-question:hover {
  background: var(--background-light);
  border-color: var(--primary-color);
}

.page-the-thao-football-betting .faq-question h3 {
  margin: 0;
  font-size: 1.15em;
  color: var(--secondary-color);
}

.page-the-thao-football-betting .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
  line-height: 1;
}

.page-the-thao-football-betting .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--accent-color);
}

.page-the-thao-football-betting .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: var(--background-light);
  color: #555;
  border-radius: 0 0 8px 8px;
  font-size: 0.95em;
}

.page-the-thao-football-betting .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 20px 25px;
  border-top: 1px solid #e0e0e0;
}

.page-the-thao-football-betting .faq-answer p {
  margin-bottom: 10px;
}

.page-the-thao-football-betting__button--small {
  display: inline-block;
  padding: 8px 20px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 20px;
  font-size: 0.9em;
  font-weight: bold;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.page-the-thao-football-betting__button--small:hover {
  background: #FFC107;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-the-thao-football-betting__conclusion p {
  text-align: center;
  font-size: 1.1em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #444;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-the-thao-football-betting__hero h1 {
    font-size: 2.5em;
  }
  .page-the-thao-football-betting h2 {
    font-size: 2em;
  }
  .page-the-thao-football-betting h3 {
    font-size: 1.6em;
  }
  .page-the-thao-football-betting__section {
    padding: 40px 0;
  }
  .page-the-thao-football-betting__cta-button {
    padding: 15px 35px;
    font-size: 1em;
  }
  .page-the-thao-football-betting__feature-item,
  .page-the-thao-football-betting__card,
  .page-the-thao-football-betting__step-item,
  .page-the-thao-football-betting__strategy-item,
  .page-the-thao-football-betting__info-card {
    padding: 25px;
  }
  .page-the-thao-football-betting__promo-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-the-thao-football-betting__promo-icon {
    margin: 0 0 15px 0;
  }
}

@media (max-width: 768px) {
  .page-the-thao-football-betting__hero {
    padding: 60px 15px;
  }
  .page-the-thao-football-betting__hero h1 {
    font-size: 2em;
  }
  .page-the-thao-football-betting__hero p {
    font-size: 1em;
  }
  .page-the-thao-football-betting h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-the-thao-football-betting h3 {
    font-size: 1.4em;
  }
  .page-the-thao-football-betting__container {
    padding: 15px;
  }
  .page-the-thao-football-betting__features-grid,
  .page-the-thao-football-betting__grid,
  .page-the-thao-football-betting__steps,
  .page-the-thao-football-betting__strategy-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-the-thao-football-betting__card-image {
    height: 200px;
  }
  .page-the-thao-football-betting .faq-question {
    padding: 15px 20px;
  }
  .page-the-thao-football-betting .faq-question h3 {
    font-size: 1em;
  }
  .page-the-thao-football-betting .faq-answer {
    padding: 0 20px;
  }
  .page-the-thao-football-betting .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-the-thao-football-betting__hero h1 {
    font-size: 1.8em;
  }
  .page-the-thao-football-betting__cta-button {
    padding: 12px 25px;
    font-size: 0.9em;
  }
  .page-the-thao-football-betting__feature-item .page-the-thao-football-betting__feature-icon,
  .page-the-thao-football-betting__info-icon {
    width: 80px;
    height: 80px;
  }
  .page-the-thao-football-betting__promo-icon {
    width: 50px;
    height: 50px;
  }
}