.page-the-thao {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
}

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

.page-the-thao section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-the-thao h1, .page-the-thao h2, .page-the-thao h3 {
  color: #0A2239;
  text-align: center;
  margin-bottom: 30px;
}

.page-the-thao h1 {
  font-size: 3.2em;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.page-the-thao h2 {
  font-size: 2.5em;
  margin-top: 40px;
  border-bottom: 3px solid #FFD700;
  display: inline-block;
  padding-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

.page-the-thao h3 {
  font-size: 1.8em;
  margin-top: 20px;
  margin-bottom: 15px;
  text-align: left;
  color: #0A2239;
}

.page-the-thao p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: center;
}

.page-the-thao .text-center {
  text-align: center;
}

.page-the-thao .cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  margin: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-the-thao .cta-button.primary {
  background-color: #FFD700;
  color: #0A2239;
}

.page-the-thao .cta-button.primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-the-thao .cta-button.secondary {
  background-color: #0A2239;
  color: #FFFFFF;
  border: 2px solid #FFD700;
}

.page-the-thao .cta-button.secondary:hover {
  background-color: #1a3a5a;
  transform: translateY(-3px);
}

.page-the-thao .cta-button.small {
  padding: 10px 20px;
  font-size: 1em;
  margin: 5px;
}

/* Hero Banner */
.page-the-thao .hero-banner {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 0;
}

.page-the-thao .hero-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-the-thao .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.page-the-thao .hero-overlay {
  position: relative;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 60px 30px;
  border-radius: 10px;
  max-width: 900px;
  color: #FFFFFF;
}

.page-the-thao .hero-overlay h1 a {
  color: #FFD700;
  text-decoration: none;
}

.page-the-thao .hero-overlay p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-the-thao .hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

/* Section Why Choose */
.page-the-thao .section-why-choose {
  background-color: #f9f9f9;
  padding: 80px 0;
}

.page-the-thao .section-why-choose h2 {
  color: #0A2239;
}

.page-the-thao .section-why-choose p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  color: #555555;
}

.page-the-thao .grid-3-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

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

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

.page-the-thao .card-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-the-thao .card h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  text-align: center;
}

.page-the-thao .card h3 a {
  color: #0A2239;
  text-decoration: none;
}

.page-the-thao .card h3 a:hover {
  color: #FFD700;
}

.page-the-thao .card p {
  font-size: 1em;
  color: #666666;
  text-align: center;
}

/* Section Guide */
.page-the-thao .section-guide {
  background-color: #FFFFFF;
  padding: 80px 0;
}

.page-the-thao .section-guide h2 a {
  color: #0A2239;
  text-decoration: none;
}

.page-the-thao .section-guide ol {
  list-style: none;
  counter-reset: guide-counter;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.page-the-thao .section-guide ol li {
  counter-increment: guide-counter;
  margin-bottom: 40px;
  position: relative;
  padding-left: 80px;
  text-align: left;
}

.page-the-thao .section-guide ol li::before {
  content: counter(guide-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFD700;
  color: #0A2239;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-the-thao .section-guide ol li h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.6em;
  color: #0A2239;
  text-align: left;
}

.page-the-thao .section-guide ol li h3 a {
  color: #0A2239;
  text-decoration: none;
}

.page-the-thao .section-guide ol li p {
  font-size: 1em;
  color: #555555;
  text-align: left;
  margin-bottom: 15px;
}

/* Section Bet Types */
.page-the-thao .section-bet-types {
  background-color: #f0f4f8;
  padding: 80px 0;
}

.page-the-thao .section-bet-types h2 {
  color: #0A2239;
}

.page-the-thao .section-bet-types p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  color: #555555;
}

.page-the-thao .grid-2-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
}

.page-the-thao .card-type {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-the-thao .card-type .card-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-the-thao .card-type h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  text-align: center;
  color: #0A2239;
}

.page-the-thao .card-type p {
  font-size: 1em;
  color: #666666;
  text-align: center;
}

/* Section Tips */
.page-the-thao .section-tips {
  background-color: #FFFFFF;
  padding: 80px 0;
}

.page-the-thao .section-tips h2 {
  color: #0A2239;
}

.page-the-thao .section-tips p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  color: #555555;
}

.page-the-thao .section-tips ul {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.page-the-thao .section-tips ul li {
  background-color: #F8F8F8;
  border-left: 5px solid #FFD700;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-the-thao .section-tips ul li h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.6em;
  color: #0A2239;
  text-align: left;
}

.page-the-thao .section-tips ul li p {
  font-size: 1em;
  color: #555555;
  text-align: left;
  margin-bottom: 0;
}

/* Section FAQ */
.page-the-thao .section-faq {
  background-color: #f0f4f8;
  padding: 80px 0;
}

.page-the-thao .section-faq h2 {
  color: #0A2239;
}

.page-the-thao .section-faq h2 a {
  color: #0A2239;
  text-decoration: none;
}

.page-the-thao .faq-list {
  max-width: 900px;
  margin: 0 auto;
}

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

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

.page-the-thao .faq-question:hover {
  background: #f5f5f5;
}

.page-the-thao .faq-question h3 {
  margin: 0;
  font-size: 1.3em;
  color: #0A2239;
  text-align: left;
}

.page-the-thao .faq-question h3 a {
  color: #0A2239;
  text-decoration: none;
}

.page-the-thao .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-the-thao .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #0A2239;
}

.page-the-thao .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #fefefe;
  border-radius: 0 0 8px 8px;
  color: #555555;
  font-size: 1em;
}

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

.page-the-thao .faq-answer p {
  margin: 0;
  text-align: left;
}

.page-the-thao .faq-answer p a {
  color: #0A2239;
  text-decoration: underline;
}

.page-the-thao .faq-answer p a:hover {
  color: #FFD700;
}

/* Section Blog */
.page-the-thao .section-blog {
  background-color: #FFFFFF;
  padding: 80px 0;
}

.page-the-thao .section-blog h2 {
  color: #0A2239;
}

.page-the-thao .section-blog p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  color: #555555;
}

.page-the-thao .blog-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 .blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-the-thao .blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-the-thao .blog-card h3 {
  font-size: 1.4em;
  padding: 15px 20px 5px;
  margin: 0;
  text-align: left;
}

.page-the-thao .blog-card h3 a {
  color: #0A2239;
  text-decoration: none;
}

.page-the-thao .blog-card h3 a:hover {
  color: #FFD700;
}

.page-the-thao .blog-card p {
  font-size: 0.95em;
  color: #666666;
  padding: 0 20px 10px;
  margin: 0;
  text-align: left;
}

.page-the-thao .blog-card .post-date {
  display: block;
  font-size: 0.85em;
  color: #999999;
  padding: 0 20px 20px;
  text-align: left;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-the-thao h1 {
    font-size: 2.8em;
  }
  .page-the-thao h2 {
    font-size: 2em;
  }
  .page-the-thao h3 {
    font-size: 1.6em;
  }
  .page-the-thao .grid-2-cols {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
  .page-the-thao .grid-3-cols {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-the-thao section {
    padding: 40px 0;
  }
  .page-the-thao h1 {
    font-size: 2.2em;
  }
  .page-the-thao h2 {
    font-size: 1.8em;
  }
  .page-the-thao h3 {
    font-size: 1.4em;
  }
  .page-the-thao p {
    font-size: 1em;
  }
  .page-the-thao .hero-overlay {
    padding: 40px 20px;
  }
  .page-the-thao .cta-button {
    padding: 12px 25px;
    font-size: 1em;
    margin: 8px;
  }
  .page-the-thao .section-guide ol li {
    padding-left: 60px;
  }
  .page-the-thao .section-guide ol li::before {
    width: 40px;
    height: 40px;
    font-size: 1.5em;
  }
  .page-the-thao .grid-2-cols {
    grid-template-columns: 1fr;
  }
  .page-the-thao .grid-3-cols {
    grid-template-columns: 1fr;
  }
  .page-the-thao .faq-question {
    padding: 15px 20px;
  }
  .page-the-thao .faq-question h3 {
    font-size: 1.1em;
  }
  .page-the-thao .faq-answer {
    padding: 0 20px;
  }
  .page-the-thao .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-the-thao h1 {
    font-size: 1.8em;
  }
  .page-the-thao h2 {
    font-size: 1.5em;
  }
  .page-the-thao .hero-overlay {
    padding: 30px 15px;
  }
  .page-the-thao .hero-actions {
    flex-direction: column;
  }
  .page-the-thao .cta-button {
    width: 80%;
    margin: 8px auto;
  }
  .page-the-thao .faq-question h3 {
    font-size: 1em;
  }
  .page-the-thao .faq-toggle {
    font-size: 20px;
  }
}