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

.page-th-thao .highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-th-thao .keyword {
  color: #003366;
  font-weight: bold;
}

.page-th-thao__hero {
  background: linear-gradient(135deg, #003366, #004d99);
  color: #fff;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.page-th-thao__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-th-thao__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-th-thao__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-th-thao__hero-image-container {
  width: 100%;
  max-width: 1200px;
  margin-top: 30px;
  z-index: 0;
}

.page-th-thao__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-th-thao__section {
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.page-th-thao__section-title {
  font-size: 2.5em;
  color: #003366;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.page-th-thao__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-th-thao__section-intro {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 40px;
}

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

.page-th-thao__grid-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-th-thao__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-th-thao__grid-title {
  font-size: 1.6em;
  color: #003366;
  margin-bottom: 15px;
}

.page-th-thao__grid-item p {
  color: #666;
  font-size: 1em;
}

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

.page-th-thao__btn--primary {
  background-color: #FFD700;
  color: #003366;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-th-thao__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-th-thao__btn--secondary {
  background-color: #DC143C;
  color: #fff;
  box-shadow: 0 4px 10px rgba(220, 20, 60, 0.4);
}

.page-th-thao__btn--secondary:hover {
  background-color: #b01030;
  transform: translateY(-2px);
}

.page-th-thao__section-image {
  width: 100%;
  max-width: 800px;
  margin-top: 50px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  height: auto;
}

.page-th-thao__section-image--right {
  float: right;
  margin-left: 30px;
  margin-bottom: 30px;
}

.page-th-thao__section-image--left {
  float: left;
  margin-right: 30px;
  margin-bottom: 30px;
}

.page-th-thao__grid--bet-types {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-th-thao__bet-type-card {
  background-color: #e0f2f7; /* Light blue */
  padding: 25px;
  border-radius: 8px;
  text-align: left;
  border-left: 5px solid #003366;
  transition: background-color 0.3s ease;
}

.page-th-thao__bet-type-card:hover {
  background-color: #d0e8ed;
}

.page-th-thao__bet-type-title {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 10px;
}

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

.page-th-thao__step-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
  position: relative;
  padding-top: 70px;
}

.page-th-thao__step-number {
  position: absolute;
  top: 20px;
  left: 30px;
  background-color: #FFD700;
  color: #003366;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.page-th-thao__step-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 15px;
}

.page-th-thao__list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
}

.page-th-thao__list-item {
  background-color: #fff;
  padding: 25px 30px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  border-left: 6px solid #003366;
}

.page-th-thao__list-title {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 10px;
}

.page-th-thao__list-item p {
  color: #666;
}

.page-th-thao__section--cta {
  background-color: #003366;
  color: #fff;
  padding: 80px 40px;
  border-radius: 15px;
  margin-top: 60px;
}

.page-th-thao__section--cta .page-th-thao__section-title {
  color: #FFD700;
}

.page-th-thao__section--cta .page-th-thao__section-title::after {
  background-color: #fff;
}

.page-th-thao__section--cta .page-th-thao__section-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-th-thao__contact-info {
  margin-top: 30px;
  font-size: 1.1em;
  opacity: 0.9;
}

.page-th-thao__contact-info a {
  color: #FFD700;
  text-decoration: underline;
  font-weight: bold;
}

.page-th-thao__contact-info a:hover {
  color: #fff;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .page-th-thao__hero {
    flex-direction: row;
    text-align: left;
    padding: 100px 60px;
  }

  .page-th-thao__hero-content {
    flex: 1;
    padding-right: 40px;
  }

  .page-th-thao__hero-image-container {
    flex: 1;
    margin-top: 0;
  }

  .page-th-thao__hero-title {
    font-size: 4em;
  }

  .page-th-thao__section-image--right {
    width: 45%;
    float: right;
    margin-left: 50px;
  }

  .page-th-thao__section-image--left {
    width: 45%;
    float: left;
    margin-right: 50px;
  }

  .page-th-thao__section:nth-of-type(2) .page-th-thao__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-th-thao__section:nth-of-type(4) .page-th-thao__steps-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-th-thao__section:nth-of-type(5) .page-th-thao__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .page-th-thao__hero {
    padding: 60px 20px;
  }

  .page-th-thao__hero-title {
    font-size: 2.5em;
  }

  .page-th-thao__hero-description {
    font-size: 1em;
  }

  .page-th-thao__section {
    padding: 40px 20px;
  }

  .page-th-thao__section-title {
    font-size: 2em;
  }

  .page-th-thao__section-image--right, .page-th-thao__section-image--left {
    float: none;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    margin-bottom: 0;
  }

  .page-th-thao__section--cta {
    padding: 50px 20px;
  }

  .page-th-thao__section--cta .page-th-thao__section-description {
    font-size: 1em;
  }
}