.page-th-thao-betting-guide {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #8B0000; /* Dark Red */
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f9f9f9;
  --bg-dark: #222222;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

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

.page-th-thao-betting-guide a:hover {
  color: var(--primary-color);
}

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

.page-th-thao-betting-guide .text-center {
  text-align: center;
}

.page-th-thao-betting-guide h1, .page-th-thao-betting-guide h2, .page-th-thao-betting-guide h3 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-th-thao-betting-guide h1 {
  font-size: 3.2em;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-th-thao-betting-guide h2 {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

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

.page-th-thao-betting-guide h3 {
  font-size: 1.8em;
  color: var(--secondary-color);
}

.page-th-thao-betting-guide p {
  margin-bottom: 15px;
}

.page-th-thao-betting-guide .btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.page-th-thao-betting-guide .cta-button {
  background: var(--primary-color);
  color: var(--text-dark);
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-th-thao-betting-guide .cta-button:hover {
  background: var(--secondary-color);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-th-thao-betting-guide .btn-secondary {
  background: var(--secondary-color);
  color: var(--text-light);
  border: 1px solid var(--secondary-color);
}

.page-th-thao-betting-guide .btn-secondary:hover {
  background: var(--primary-color);
  color: var(--text-dark);
  border-color: var(--primary-color);
}

/* Hero Section */
.page-th-thao-betting-guide .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: var(--bg-dark); /* Fallback background */
}

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

.page-th-thao-betting-guide .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.5);
}

.page-th-thao-betting-guide .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: var(--text-light);
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 8px;
  margin-top: -80px; /* Overlap with image slightly */
}

.page-th-thao-betting-guide .hero-content h1 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 3.5em;
}

.page-th-thao-betting-guide .hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-th-thao-betting-guide .hero-content .cta-button {
  font-size: 1.2em;
  padding: 15px 40px;
}

/* General Section Styling */
.page-th-thao-betting-guide section {
  padding: 60px 0;
}

.page-th-thao-betting-guide .section-intro {
  background-color: var(--bg-light);
}

.page-th-thao-betting-guide .section-steps, .page-th-thao-betting-guide .section-tips, .page-th-thao-betting-guide .section-promo {
  background-color: #ffffff;
}

.page-th-thao-betting-guide .section-bet-types, .page-th-thao-betting-guide .section-sports-available, .page-th-thao-betting-guide .section-support, .page-th-thao-betting-guide .section-faq {
  background-color: var(--bg-light);
}

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

.page-th-thao-betting-guide .step-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-th-thao-betting-guide .step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-th-thao-betting-guide .step-item .step-icon {
  width: 150px; /* Increased size */
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-th-thao-betting-guide .step-item h3 {
  color: var(--secondary-color);
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-th-thao-betting-guide .step-item p {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

/* Bet Type List */
.page-th-thao-betting-guide .bet-type-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page-th-thao-betting-guide .bet-type-list li {
  background: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-th-thao-betting-guide .bet-type-list li:hover {
  transform: translateY(-3px);
}

.page-th-thao-betting-guide .bet-type-list li h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.page-th-thao-betting-guide .bet-type-list li p {
  color: #666666;
}

/* Tip Grid */
.page-th-thao-betting-guide .tip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-th-thao-betting-guide .tip-item {
  background: var(--bg-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-th-thao-betting-guide .tip-item:hover {
  transform: translateY(-5px);
  background-color: #f0f0f0;
}

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

.page-th-thao-betting-guide .tip-item p {
  color: #555555;
}

/* Sports List */
.page-th-thao-betting-guide .sports-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  text-align: center;
}

.page-th-thao-betting-guide .sports-list li {
  background: #ffffff;
  padding: 25px 15px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-th-thao-betting-guide .sports-list li:hover {
  transform: translateY(-3px);
}

.page-th-thao-betting-guide .sports-list li img {
  width: 150px; /* Increased size */
  height: auto;
  margin-bottom: 15px;
  object-fit: contain;
}

.page-th-thao-betting-guide .sports-list li span {
  display: block;
  font-size: 1.4em;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.page-th-thao-betting-guide .sports-list li p {
  font-size: 0.95em;
  color: #666666;
}

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

.page-th-thao-betting-guide .promo-item {
  background: var(--primary-color);
  color: var(--text-dark);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-th-thao-betting-guide .promo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.page-th-thao-betting-guide .promo-item p {
  color: var(--text-dark);
}

.page-th-thao-betting-guide .section-promo .cta-button {
  margin-top: 30px;
}

/* Support Section */
.page-th-thao-betting-guide .support-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-th-thao-betting-guide .support-text {
  flex: 1;
  min-width: 300px;
}

.page-th-thao-betting-guide .support-text ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-th-thao-betting-guide .support-text ul li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #555555;
}

.page-th-thao-betting-guide .support-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.page-th-thao-betting-guide .support-text .cta-button {
  margin-top: 20px;
}

.page-th-thao-betting-guide .support-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-th-thao-betting-guide .support-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* FAQ Section */
.page-th-thao-betting-guide .faq-list {
  margin-top: 40px;
}

.page-th-thao-betting-guide .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.page-th-thao-betting-guide .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-th-thao-betting-guide .faq-question:hover {
  background: #f5f5f5;
}

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

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

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

.page-th-thao-betting-guide .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
  color: #555555;
}

.page-th-thao-betting-guide .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px 25px;
  border-top: 1px solid #e0e0e0;
}

.page-th-thao-betting-guide .faq-answer p {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-th-thao-betting-guide .hero-content h1 {
    font-size: 2.8em;
  }
  .page-th-thao-betting-guide .hero-content p {
    font-size: 1.1em;
  }
  .page-th-thao-betting-guide h2 {
    font-size: 2em;
  }
  .page-th-thao-betting-guide .support-content {
    flex-direction: column;
    text-align: center;
  }
  .page-th-thao-betting-guide .support-text, .page-th-thao-betting-guide .support-image {
    min-width: unset;
    width: 100%;
  }
  .page-th-thao-betting-guide .support-text ul {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-th-thao-betting-guide .hero-section {
    padding: 40px 15px;
  }
  .page-th-thao-betting-guide .hero-image img {
    border-radius: 4px;
  }
  .page-th-thao-betting-guide .hero-content {
    margin-top: -50px;
    padding: 15px;
  }
  .page-th-thao-betting-guide .hero-content h1 {
    font-size: 2.2em;
  }
  .page-th-thao-betting-guide .hero-content p {
    font-size: 1em;
  }
  .page-th-thao-betting-guide .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-th-thao-betting-guide h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-th-thao-betting-guide section {
    padding: 40px 0;
  }
  .page-th-thao-betting-guide .step-item, .page-th-thao-betting-guide .tip-item, .page-th-thao-betting-guide .promo-item {
    padding: 20px;
  }
  .page-th-thao-betting-guide .step-item .step-icon, .page-th-thao-betting-guide .sports-list li img {
    width: 100px;
  }
  .page-th-thao-betting-guide .faq-question {
    padding: 15px 20px;
  }
  .page-th-thao-betting-guide .faq-question h3 {
    font-size: 1.1em;
  }
  .page-th-thao-betting-guide .faq-toggle {
    font-size: 1.5em;
  }
  .page-th-thao-betting-guide .faq-answer {
    padding: 0 20px;
  }
  .page-th-thao-betting-guide .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-th-thao-betting-guide .sports-list li span {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-th-thao-betting-guide .hero-content h1 {
    font-size: 1.8em;
  }
  .page-th-thao-betting-guide .hero-content p {
    font-size: 0.9em;
  }
  .page-th-thao-betting-guide .cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }
  .page-th-thao-betting-guide h2 {
    font-size: 1.5em;
  }
  .page-th-thao-betting-guide h3 {
    font-size: 1.4em;
  }
}