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

.page-th-thao__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-th-thao__hero {
  background: linear-gradient(135deg, #FF4500, #1E90FF);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-th-thao__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:sports_stadium_blur,dynamic_lines]') no-repeat center center/cover;
  opacity: 0.2;
  z-index: 0;
}

.page-th-thao__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
  position: relative;
  z-index: 1;
}

.page-th-thao__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-th-thao__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.page-th-thao__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
}

.page-th-thao__btn--primary {
  background-color: #FF4500;
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
}

.page-th-thao__btn--primary:hover {
  background-color: #e03c00;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 69, 0, 0.6);
}

.page-th-thao__btn--secondary {
  background-color: #1E90FF;
  color: #fff;
  box-shadow: 0 4px 15px rgba(30, 144, 255, 0.4);
}

.page-th-thao__btn--secondary:hover {
  background-color: #1a7ae0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 144, 255, 0.6);
}

.page-th-thao__btn--outline {
  background-color: transparent;
  color: #FF4500;
  border: 2px solid #FF4500;
  padding: 13px 28px;
}

.page-th-thao__btn--outline:hover {
  background-color: #FF4500;
  color: #fff;
}

.page-th-thao__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
}

.page-th-thao__section {
  padding: 80px 0;
  text-align: center;
}

.page-th-thao__section:nth-of-type(even) {
  background-color: #f0f0f0;
}

.page-th-thao__section-title {
  font-size: 2.8em;
  margin-bottom: 25px;
  color: #333;
  font-weight: bold;
}

.page-th-thao__section-intro {
  font-size: 1.15em;
  color: #555;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

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

.page-th-thao__feature-item, .page-th-thao__bet-type-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.page-th-thao__feature-item:hover, .page-th-thao__bet-type-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-th-thao__feature-icon, .page-th-thao__bet-type-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-th-thao__feature-title, .page-th-thao__bet-type-title {
  font-size: 1.6em;
  color: #FF4500;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-th-thao__feature-text, .page-th-thao__bet-type-text {
  font-size: 1em;
  color: #666;
}

.page-th-thao__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.page-th-thao__guide-item {
  background-color: #fff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
  border-left: 5px solid #1E90FF;
}

.page-th-thao__guide-step-title {
  font-size: 1.8em;
  color: #1E90FF;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-th-thao__guide-text {
  font-size: 1.1em;
  color: #444;
  margin-bottom: 20px;
}

.page-th-thao__link {
  color: #FF4500;
  text-decoration: none;
  font-weight: bold;
}

.page-th-thao__link:hover {
  text-decoration: underline;
}

.page-th-thao__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-th-thao__tips-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-top: 5px solid #FF4500;
}

.page-th-thao__tips-title {
  font-size: 1.6em;
  color: #FF4500;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-th-thao__tips-text {
  font-size: 1em;
  color: #666;
}

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

.page-th-thao__promotion-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.page-th-thao__promotion-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-th-thao__promotion-card h3, .page-th-thao__promotion-card p, .page-th-thao__promotion-card a {
  padding: 0 25px;
}

.page-th-thao__promotion-title {
  font-size: 1.5em;
  color: #1E90FF;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-th-thao__promotion-text {
  font-size: 1em;
  color: #666;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-th-thao__promotion-card .page-th-thao__btn {
  margin: 0 25px 25px 25px;
  text-align: center;
}

.page-th-thao__cta-text {
  font-size: 1.2em;
  color: #333;
  margin-top: 60px;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-th-thao__app-flex {
  display: flex;
  align-items: center;
  gap: 50px;
  text-align: left;
}

.page-th-thao__app-content {
  flex: 1;
}

.page-th-thao__app-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-th-thao__app-mockup {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.page-th-thao__app-benefits {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-th-thao__app-benefits li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #444;
}

.page-th-thao__benefit-icon {
  width: 24px;
  height: 24px;
  margin-right: 15px;
  object-fit: contain;
}

.page-th-thao__conclusion {
  background-color: #1E90FF;
  color: #fff;
  padding: 80px 0;
}

.page-th-thao__conclusion .page-th-thao__section-title {
  color: #fff;
}

.page-th-thao__conclusion .page-th-thao__section-intro {
  color: #e0f0ff;
  margin-bottom: 40px;
}

.page-th-thao__conclusion .page-th-thao__link {
  color: #FF4500;
}

.page-th-thao__conclusion .page-th-thao__btn--primary {
  background-color: #FF4500;
  color: #fff;
}

.page-th-thao__conclusion .page-th-thao__btn--primary:hover {
  background-color: #e03c00;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-th-thao__hero-title {
    font-size: 2.8em;
  }
  .page-th-thao__section-title {
    font-size: 2.2em;
  }
  .page-th-thao__app-flex {
    flex-direction: column;
    gap: 30px;
  }
  .page-th-thao__app-content, .page-th-thao__app-image-wrapper {
    flex: none;
    width: 100%;
  }
  .page-th-thao__tips-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-th-thao__hero {
    padding: 80px 0;
  }
  .page-th-thao__hero-title {
    font-size: 2.2em;
  }
  .page-th-thao__hero-description {
    font-size: 1.1em;
  }
  .page-th-thao__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-th-thao__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-th-thao__section {
    padding: 60px 0;
  }
  .page-th-thao__section-title {
    font-size: 1.8em;
  }
  .page-th-thao__feature-grid, .page-th-thao__bet-type-grid, .page-th-thao__promotion-cards {
    grid-template-columns: 1fr;
  }
  .page-th-thao__guide-item {
    padding: 25px;
  }
  .page-th-thao__guide-step-title {
    font-size: 1.5em;
  }
  .page-th-thao__tips-item {
    padding: 25px;
  }
  .page-th-thao__tips-title {
    font-size: 1.4em;
  }
}

@media (max-width: 480px) {
  .page-th-thao__hero-title {
    font-size: 1.8em;
  }
  .page-th-thao__section-title {
    font-size: 1.6em;
  }
  .page-th-thao__btn {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-th-thao__hero-actions {
    gap: 10px;
  }
  .page-th-thao__btn--small {
    padding: 8px 15px;
  }
}