/* style/th-thao.css */
.page-th-thao {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f4f7f6;
}

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

.page-th-thao h1, .page-th-thao h2, .page-th-thao h3 {
  color: #007bff;
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-th-thao h1 {
  font-size: 2.8em;
  color: #ffffff;
  margin-bottom: 20px;
}

.page-th-thao h2 {
  font-size: 2.2em;
  margin-top: 40px;
  color: #007bff;
}

.page-th-thao h3 {
  font-size: 1.8em;
  color: #333333;
  margin-top: 20px;
}

.page-th-thao p {
  margin-bottom: 15px;
  text-align: justify;
}

.page-th-thao .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, #007bff, #0056b3);
  color: #ffffff;
  overflow: hidden;
}

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

.page-th-thao .hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-th-thao .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

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

.page-th-thao .hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
  text-align: center;
}

.page-th-thao .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #ffc107;
  color: #333333;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-th-thao .cta-button:hover {
  background: #e0a800;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-th-thao .intro-section, .page-th-thao .sport-lobbies, .page-th-thao .sports-types, .page-th-thao .guide-section, .page-th-thao .promotions-section, .page-th-thao .security-section, .page-th-thao .faq-section, .page-th-thao .call-to-action-bottom {
  padding: 60px 0;
}

.page-th-thao .intro-section p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-th-thao .sport-lobbies {
  background-color: #e9ecef;
}

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

.page-th-thao .lobby-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px 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-th-thao .lobby-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-th-thao .lobby-logo {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
  border-radius: 8px;
}

.page-th-thao .lobby-card h3 {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #007bff;
}

.page-th-thao .lobby-card p {
  font-size: 1em;
  color: #555555;
  flex-grow: 1;
  text-align: center;
}

.page-th-thao .btn-small {
  display: inline-block;
  padding: 10px 25px;
  background: #007bff;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-th-thao .btn-small:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

.page-th-thao .sports-types {
  background-color: #ffffff;
}

.page-th-thao .sport-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-th-thao .sport-list li {
  background: #fdfdfd;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.page-th-thao .sport-list li:hover {
  transform: translateY(-5px);
}

.page-th-thao .sport-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  background-color: #e0eaff;
  padding: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-th-thao .sport-list h3 {
  color: #007bff;
  font-size: 1.7em;
  margin-bottom: 10px;
}

.page-th-thao .sport-list p {
  color: #555555;
  font-size: 1em;
  text-align: center;
}

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

.page-th-thao .step-item {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-th-thao .step-number {
  width: 60px;
  height: 60px;
  background: #ffc107;
  color: #333333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-th-thao .step-item h3 {
  color: #007bff;
  font-size: 1.6em;
  margin-bottom: 10px;
}

.page-th-thao .step-item p {
  color: #555555;
  font-size: 1em;
  flex-grow: 1;
  text-align: center;
}

.page-th-thao .promotions-section {
  background-color: #e9ecef;
}

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

.page-th-thao .promo-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px 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-th-thao .promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-th-thao .promo-img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-th-thao .promo-card h3 {
  color: #007bff;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-th-thao .promo-card p {
  color: #555555;
  font-size: 1em;
  flex-grow: 1;
  text-align: center;
}

.page-th-thao .btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: #ffc107;
  color: #333333;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-th-thao .btn-primary:hover {
  background: #e0a800;
  transform: translateY(-2px);
}

.page-th-thao .security-section {
  background-color: #ffffff;
}

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

.page-th-thao .feature-item {
  background: #fdfdfd;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-th-thao .feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  background-color: #e0eaff;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-th-thao .feature-item h3 {
  color: #007bff;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-th-thao .feature-item p {
  color: #555555;
  font-size: 1em;
  flex-grow: 1;
  text-align: center;
}

.page-th-thao .faq-section {
  background-color: #f4f7f6;
}

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

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #ffffff;
}

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

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

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #333333;
  text-align: left;
  flex-grow: 1;
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #007bff;
  transition: transform 0.3s ease;
  margin-left: 15px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
  border-radius: 0 0 8px 8px;
}

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

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #ffc107;
}

.faq-answer p {
  margin: 0;
  color: #555555;
  font-size: 1em;
  text-align: justify;
}

.page-th-thao .call-to-action-bottom {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  border-radius: 12px;
  margin: 60px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.page-th-thao .call-to-action-bottom h2 {
  color: #ffffff;
  font-size: 2.5em;
  margin-bottom: 20px;
}

.page-th-thao .call-to-action-bottom p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-th-thao h1 {
    font-size: 2.2em;
  }
  .page-th-thao h2 {
    font-size: 1.8em;
  }
  .page-th-thao h3 {
    font-size: 1.5em;
  }
  .page-th-thao .hero-section {
    padding: 60px 15px;
  }
  .page-th-thao .hero-content p {
    font-size: 1.1em;
  }
  .page-th-thao .cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-th-thao .intro-section, .page-th-thao .sport-lobbies, .page-th-thao .sports-types, .page-th-thao .guide-section, .page-th-thao .promotions-section, .page-th-thao .security-section, .page-th-thao .faq-section, .page-th-thao .call-to-action-bottom {
    padding: 40px 0;
  }
}

@media (max-width: 768px) {
  .page-th-thao h1 {
    font-size: 1.8em;
  }
  .page-th-thao h2 {
    font-size: 1.6em;
  }
  .page-th-thao h3 {
    font-size: 1.3em;
  }
  .page-th-thao .hero-image {
    margin-bottom: 20px;
  }
  .page-th-thao .hero-content p {
    font-size: 1em;
  }
  .page-th-thao .cta-button {
    padding: 10px 25px;
    font-size: 1em;
  }
  .page-th-thao .lobby-grid, .page-th-thao .sport-list, .page-th-thao .guide-steps, .page-th-thao .promo-grid, .page-th-thao .security-features {
    grid-template-columns: 1fr;
  }
  .page-th-thao .lobby-card, .page-th-thao .sport-list li, .page-th-thao .step-item, .page-th-thao .promo-card, .page-th-thao .feature-item {
    padding: 20px;
  }
  .page-th-thao .sport-icon {
    width: 100px;
    height: 100px;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 20px;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-th-thao .call-to-action-bottom {
    padding: 50px 15px;
    margin: 40px auto;
  }
  .page-th-thao .call-to-action-bottom h2 {
    font-size: 2em;
  }
  .page-th-thao .call-to-action-bottom p {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-th-thao h1 {
    font-size: 1.5em;
  }
  .page-th-thao h2 {
    font-size: 1.4em;
  }
  .page-th-thao h3 {
    font-size: 1.2em;
  }
  .page-th-thao .hero-section {
    padding: 40px 10px;
  }
  .page-th-thao .cta-button {
    font-size: 0.9em;
    padding: 10px 20px;
  }
  .page-th-thao .lobby-logo {
    width: 120px;
  }
  .page-th-thao .sport-icon {
    width: 80px;
    height: 80px;
  }
  .page-th-thao .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
  }
  .page-th-thao .promo-img {
    max-width: 250px;
  }
  .page-th-thao .feature-icon {
    width: 80px;
    height: 80px;
  }
  .faq-question h3 {
    font-size: 1em;
  }
  .faq-toggle {
    font-size: 18px;
  }
  .page-th-thao .call-to-action-bottom h2 {
    font-size: 1.8em;
  }
}