/* style/th-thao-hot-matches.css */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #DC143C; /* Deep Red */
  --dark-background: #1a1a1a; /* Almost black */
  --light-text-color: #ffffff;
  --dark-text-color: #333333;
  --card-bg: #2a2a2a;
  --border-color: #444444;
  --hover-color: #ffeb3b;
}

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

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

.page-th-thao-hot-matches h1,
.page-th-thao-hot-matches h2,
.page-th-thao-hot-matches h3 {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.2;
}

.page-th-thao-hot-matches h1 {
  font-size: 3.2em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-th-thao-hot-matches h2 {
  font-size: 2.5em;
  padding-top: 40px;
  border-bottom: 2px solid var(--secondary-color);
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.page-th-thao-hot-matches h3 {
  font-size: 1.8em;
  color: var(--light-text-color);
  margin-bottom: 15px;
  text-align: left;
}

.page-th-thao-hot-matches p {
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.1em;
  color: #cccccc;
}

.page-th-thao-hot-matches section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

.page-th-thao-hot-matches section:last-of-type {
  border-bottom: none;
}

/* Hero Section */
.page-th-thao-hot-matches .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(--dark-background) 0%, #330000 100%);
}

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

.page-th-thao-hot-matches .hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-th-thao-hot-matches .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-th-thao-hot-matches .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-th-thao-hot-matches .hero-content p {
  max-width: 800px;
  margin: 20px auto 30px auto;
  font-size: 1.2em;
}

.page-th-thao-hot-matches .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--dark-text-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.3em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-th-thao-hot-matches .cta-button:hover {
  background: var(--hover-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-th-thao-hot-matches .btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: var(--secondary-color);
  color: var(--light-text-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 15px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 2px 10px rgba(220, 20, 60, 0.3);
}

.page-th-thao-hot-matches .btn-primary:hover {
  background: #ff3366;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(220, 20, 60, 0.5);
}

.page-th-thao-hot-matches .btn-small {
  display: inline-block;
  padding: 10px 20px;
  background: var(--secondary-color);
  color: var(--light-text-color);
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.95em;
  font-weight: bold;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.page-th-thao-hot-matches .btn-small:hover {
  background: #ff3366;
}

.page-th-thao-hot-matches .btn-text {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-th-thao-hot-matches .btn-text:hover {
  color: var(--hover-color);
  text-decoration: underline;
}

.page-th-thao-hot-matches .large-btn {
  font-size: 1.4em;
  padding: 18px 45px;
  margin-top: 30px;
}

/* Featured Matches Section */
.page-th-thao-hot-matches .section-featured-matches p {
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-th-thao-hot-matches .match-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-th-thao-hot-matches .match-card {
  background: var(--card-bg);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-th-thao-hot-matches .match-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.page-th-thao-hot-matches .match-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-th-thao-hot-matches .match-card h3 {
  font-size: 1.4em;
  margin: 20px 20px 10px;
  text-align: left;
  color: var(--primary-color);
}

.page-th-thao-hot-matches .match-card .match-link {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-th-thao-hot-matches .match-card .match-link:hover {
  color: var(--hover-color);
  text-decoration: underline;
}

.page-th-thao-hot-matches .match-card p {
  font-size: 0.95em;
  color: #b0b0b0;
  margin: 0 20px 10px;
  text-align: left;
}

.page-th-thao-hot-matches .match-card .btn-small {
  align-self: flex-start;
  margin: 15px 20px 20px;
}

/* Analysis Section */
.page-th-thao-hot-matches .section-analysis h2 + p {
  margin-bottom: 40px;
}

.page-th-thao-hot-matches .analysis-content {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.page-th-thao-hot-matches .analysis-content img {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  height: auto;
  object-fit: cover;
}

.page-th-thao-hot-matches .analysis-content .text-content {
  flex: 2;
  min-width: 300px;
}

.page-th-thao-hot-matches .analysis-content .text-content h3 {
  color: var(--primary-color);
  text-align: left;
}

.page-th-thao-hot-matches .analysis-content .text-content p {
  text-align: left;
  color: #cccccc;
  font-size: 1em;
}

/* Live Experience Section */
.page-th-thao-hot-matches .section-live-experience h2 + p {
  margin-bottom: 40px;
}

.page-th-thao-hot-matches .live-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-th-thao-hot-matches .feature-item {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-th-thao-hot-matches .feature-item:hover {
  transform: translateY(-5px);
}

.page-th-thao-hot-matches .feature-item img {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 4px;
}

.page-th-thao-hot-matches .feature-item h3 {
  color: var(--primary-color);
  text-align: center;
}

.page-th-thao-hot-matches .feature-item p {
  color: #b0b0b0;
  font-size: 0.95em;
}

/* Promotions Section */
.page-th-thao-hot-matches .section-promotions h2 + p {
  margin-bottom: 40px;
}

.page-th-thao-hot-matches .promotion-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-th-thao-hot-matches .promo-card {
  background: var(--card-bg);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-th-thao-hot-matches .promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.page-th-thao-hot-matches .promo-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-th-thao-hot-matches .promo-card h3 {
  font-size: 1.5em;
  margin: 0 15px 10px;
  color: var(--primary-color);
}

.page-th-thao-hot-matches .promo-card p {
  font-size: 0.95em;
  color: #b0b0b0;
  margin: 0 15px 20px;
}

.page-th-thao-hot-matches .promo-card .btn-small {
  margin-bottom: 20px;
}

/* FAQ Section */
.page-th-thao-hot-matches .section-faq {
  background-color: #111111;
}

.page-th-thao-hot-matches .section-faq p {
  margin-bottom: 40px;
}

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

.page-th-thao-hot-matches .faq-item {
  margin-bottom: 15px;
}

.page-th-thao-hot-matches .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.page-th-thao-hot-matches .faq-question:hover {
  background: #333333;
  border-color: var(--primary-color);
}

.page-th-thao-hot-matches .faq-question h3 {
  margin: 0;
  color: var(--light-text-color);
  font-size: 1.25em;
  text-align: left;
  flex-grow: 1;
}

.page-th-thao-hot-matches .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
  margin-left: 15px;
}

.page-th-thao-hot-matches .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--secondary-color);
}

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

.page-th-thao-hot-matches .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 20px 25px;
  border: 1px solid var(--border-color);
  border-top: none;
}

.page-th-thao-hot-matches .faq-answer p {
  text-align: left;
  margin-bottom: 15px;
}

/* Bottom CTA Section */
.page-th-thao-hot-matches .section-cta-bottom {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(45deg, #330000 0%, var(--dark-background) 100%);
}

.page-th-thao-hot-matches .section-cta-bottom p {
  max-width: 800px;
  margin: 20px auto 30px auto;
  font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-th-thao-hot-matches h1 {
    font-size: 2.8em;
  }
  .page-th-thao-hot-matches h2 {
    font-size: 2.2em;
  }
  .page-th-thao-hot-matches h3 {
    font-size: 1.6em;
  }
  .page-th-thao-hot-matches .analysis-content {
    flex-direction: column;
  }
  .page-th-thao-hot-matches .analysis-content img {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-th-thao-hot-matches h1 {
    font-size: 2.2em;
  }
  .page-th-thao-hot-matches h2 {
    font-size: 1.8em;
    padding-top: 30px;
    margin-bottom: 30px;
  }
  .page-th-thao-hot-matches h3 {
    font-size: 1.4em;
  }
  .page-th-thao-hot-matches p {
    font-size: 1em;
  }
  .page-th-thao-hot-matches section {
    padding: 40px 0;
  }
  .page-th-thao-hot-matches .cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-th-thao-hot-matches .match-card img {
    height: 200px;
  }
  .page-th-thao-hot-matches .live-features {
    grid-template-columns: 1fr;
  }
  .page-th-thao-hot-matches .promotion-cards {
    grid-template-columns: 1fr;
  }
  .page-th-thao-hot-matches .faq-question {
    padding: 15px 20px;
  }
  .page-th-thao-hot-matches .faq-question h3 {
    font-size: 1.1em;
  }
  .page-th-thao-hot-matches .faq-toggle {
    font-size: 20px;
  }
  .page-th-thao-hot-matches .faq-answer {
    padding: 0 20px;
  }
  .page-th-thao-hot-matches .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-th-thao-hot-matches h1 {
    font-size: 1.8em;
  }
  .page-th-thao-hot-matches h2 {
    font-size: 1.6em;
  }
  .page-th-thao-hot-matches .hero-content p {
    font-size: 1em;
  }
  .page-th-thao-hot-matches .cta-button {
    font-size: 1em;
    padding: 10px 25px;
  }
  .page-th-thao-hot-matches .match-card h3 {
    font-size: 1.2em;
  }
}