:root {
  --primary-color: #1A1A1A;
  --secondary-color: #FFD700;
  --text-light: #F0F0F0;
  --text-dark: #333;
  --bg-light: #F9F9F9;
  --bg-dark: #222222;
  --border-color: #e0e0e0;
}

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

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

.page-the-thao-football-betting-guide .content-block {
  padding: 60px 0;
}

.page-the-thao-football-betting-guide h1,
.page-the-thao-football-betting-guide h2 {
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-the-thao-football-betting-guide h1 {
  font-size: 3.2em;
}

.page-the-thao-football-betting-guide h2 {
  font-size: 2.5em;
}

.page-the-thao-football-betting-guide h3 {
  color: var(--text-light);
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-the-thao-football-betting-guide p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--text-light);
}

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

.page-the-thao-football-betting-guide a:hover {
  color: #fff;
}

/* Hero Section */
.page-the-thao-football-betting-guide .hero-section {
  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%, #333333 100%);
}

.page-the-thao-football-betting-guide .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-guide .hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-the-thao-football-betting-guide .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.page-the-thao-football-betting-guide .hero-content h1 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.page-the-thao-football-betting-guide .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-the-thao-football-betting-guide .cta-button:hover {
  background: #fff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Introduction Section */
.page-the-thao-football-betting-guide .introduction-section {
  background-color: var(--bg-dark);
}

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

.page-the-thao-football-betting-guide .feature-item {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-the-thao-football-betting-guide .feature-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: brightness(1.2);
}

.page-the-thao-football-betting-guide .feature-item h3 {
  color: var(--secondary-color);
  font-size: 1.5em;
  margin-top: 0;
}

.page-the-thao-football-betting-guide .feature-item p {
  color: var(--text-light);
  font-size: 0.95em;
}

/* Bet Types Section */
.page-the-thao-football-betting-guide .bet-types-section {
  background-color: var(--primary-color);
}

.page-the-thao-football-betting-guide .image-with-text-right {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-top: 40px;
}

.page-the-thao-football-betting-guide .image-with-text-right .text-content {
  flex: 2;
}

.page-the-thao-football-betting-guide .image-with-text-right .image-content {
  flex: 1;
  min-width: 300px;
}

.page-the-thao-football-betting-guide .image-with-text-right .image-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Beginner Guide Section */
.page-the-thao-football-betting-guide .beginner-guide-section {
  background-color: var(--bg-dark);
}

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

.page-the-thao-football-betting-guide .step-item {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-the-thao-football-betting-guide .step-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: brightness(1.2);
}

.page-the-thao-football-betting-guide .step-item h3 {
  color: var(--secondary-color);
  font-size: 1.4em;
  margin-top: 0;
}

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

.page-the-thao-football-betting-guide .btn-small:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Strategy Section */
.page-the-thao-football-betting-guide .strategy-section {
  background-color: var(--primary-color);
}

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

.page-the-thao-football-betting-guide .strategy-item {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-the-thao-football-betting-guide .strategy-item img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: brightness(1.2);
}

.page-the-thao-football-betting-guide .strategy-item h3 {
  color: var(--secondary-color);
  font-size: 1.6em;
  margin-top: 0;
}

/* Promotions Section */
.page-the-thao-football-betting-guide .promotions-section {
  background-color: var(--bg-dark);
}

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

.page-the-thao-football-betting-guide .promo-card {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-the-thao-football-betting-guide .promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-the-thao-football-betting-guide .promo-card img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: brightness(1.2);
}

.page-the-thao-football-betting-guide .promo-card h3 {
  color: var(--secondary-color);
  font-size: 1.6em;
  margin-top: 0;
}

.page-the-thao-football-betting-guide .btn-promo {
  display: inline-block;
  padding: 12px 25px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.page-the-thao-football-betting-guide .btn-promo:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-the-thao-football-betting-guide .faq-section {
  background-color: var(--primary-color);
}

.page-the-thao-football-betting-guide .faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-the-thao-football-betting-guide .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #2a2a2a;
  color: var(--text-light);
  border: 1px solid #3a3a3a;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-the-thao-football-betting-guide .faq-question:hover {
  background: #3a3a3a;
}

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

.page-the-thao-football-betting-guide .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

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

.page-the-thao-football-betting-guide .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 20px;
  background: #1f1f1f;
  color: var(--text-light);
  border-radius: 0 0 8px 8px;
}

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

.page-the-thao-football-betting-guide .faq-answer p {
  margin: 0;
  color: var(--text-light);
}

/* Contact Section */
.page-the-thao-football-betting-guide .contact-section {
  background-color: var(--bg-dark);
  text-align: center;
}

.page-the-thao-football-betting-guide .contact-info {
  margin-top: 30px;
  font-size: 1.1em;
  color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-the-thao-football-betting-guide .hero-content h1 {
    font-size: 2.5em;
  }

  .page-the-thao-football-betting-guide h2 {
    font-size: 2em;
  }

  .page-the-thao-football-betting-guide h3 {
    font-size: 1.6em;
  }

  .page-the-thao-football-betting-guide .image-with-text-right {
    flex-direction: column;
  }

  .page-the-thao-football-betting-guide .image-with-text-right .image-content {
    min-width: unset;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-the-thao-football-betting-guide .hero-section {
    padding: 60px 15px;
  }

  .page-the-thao-football-betting-guide .hero-content h1 {
    font-size: 2em;
  }

  .page-the-thao-football-betting-guide .hero-content p {
    font-size: 1em;
  }

  .page-the-thao-football-betting-guide .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }

  .page-the-thao-football-betting-guide .content-block {
    padding: 40px 0;
  }

  .page-the-thao-football-betting-guide h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-the-thao-football-betting-guide h3 {
    font-size: 1.4em;
  }

  .page-the-thao-football-betting-guide p {
    font-size: 0.95em;
  }

  .page-the-thao-football-betting-guide .features-grid,
  .page-the-thao-football-betting-guide .steps-grid,
  .page-the-thao-football-betting-guide .strategy-items,
  .page-the-thao-football-betting-guide .promotion-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-the-thao-football-betting-guide .faq-question {
    padding: 15px;
  }

  .page-the-thao-football-betting-guide .faq-question h3 {
    font-size: 1.1em;
  }

  .page-the-thao-football-betting-guide .faq-toggle {
    font-size: 1.5em;
  }
}