/* style/the-thao.css */
:root {
  --mu88-primary: #2F6BFF;
  --mu88-secondary: #6FA3FF;
  --mu88-button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  --mu88-card-bg: #FFFFFF;
  --mu88-bg: #F4F7FB;
  --mu88-text-main: #1F2D3D;
  --mu88-text-dark: #000000;
  --mu88-border: #D6E2FF;
  --mu88-glow: #A5C4FF;
}

.page-the-thao {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--mu88-text-main);
  background-color: var(--mu88-bg); /* Assuming --page-bg from shared.css is light */
}

.page-the-thao__dark-bg {
  background-color: var(--mu88-primary);
  color: #ffffff;
}

.page-the-thao__dark-bg .page-the-thao__section-title,
.page-the-thao__dark-bg .page-the-thao__section-description,
.page-the-thao__dark-bg .page-the-thao__category-title,
.page-the-thao__dark-bg .page-the-thao__category-text,
.page-the-thao__dark-bg .page-the-thao__promo-title,
.page-the-thao__dark-bg .page-the-thao__promo-text {
  color: #ffffff;
}

.page-the-thao__light-bg {
  background-color: var(--mu88-bg);
  color: var(--mu88-text-main);
}

.page-the-thao__content-area {
  max-width: 1170px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-the-thao__section-title {
  font-size: 38px;
  font-weight: 700;
  color: var(--mu88-text-dark);
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-the-thao__section-title--small {
    font-size: 32px;
    text-align: left;
    margin-bottom: 0;
}

.page-the-thao__section-description {
  font-size: 18px;
  color: var(--mu88-text-main);
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-the-thao__hero-section {
  padding-top: 10px; /* Small top padding, relying on body padding-top from shared */
  padding-bottom: 80px;
  background-color: var(--mu88-bg);
}

.page-the-thao__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  gap: 40px;
}

.page-the-thao__hero-content {
  flex: 1 1 45%;
  min-width: 300px;
  color: var(--mu88-text-main);
}

.page-the-thao__main-title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  color: var(--mu88-text-dark);
  margin-bottom: 20px;
  line-height: 1.1;
  text-align: left;
}

.page-the-thao__hero-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: left;
}

.page-the-thao__cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.page-the-thao__btn-primary,
.page-the-thao__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  box-sizing: border-box;
}

.page-the-thao__btn-primary {
  background: var(--mu88-button-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.3);
}

.page-the-thao__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(47, 107, 255, 0.4);
}

.page-the-thao__btn-secondary {
  background-color: transparent;
  color: var(--mu88-primary);
  border: 2px solid var(--mu88-primary);
}

.page-the-thao__btn-secondary:hover {
  background-color: var(--mu88-primary);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.2);
}

.page-the-thao__btn-small {
  padding: 10px 20px;
  font-size: 16px;
}

.page-the-thao__hero-image {
  flex: 1 1 45%;
  min-width: 300px;
  text-align: center;
}

.page-the-thao__hero-side-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Intro Section */
.page-the-thao__intro-section {
  padding-bottom: 80px;
}

.page-the-thao__intro-section .page-the-thao__section-description {
    margin-bottom: 60px;
}

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

.page-the-thao__feature-item {
  background-color: var(--mu88-card-bg);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-the-thao__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-the-thao__icon-box-media {
  width: 180px;
  height: 180px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--mu88-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f5ff;
}

.page-the-thao__icon-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.page-the-thao__feature-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--mu88-text-dark);
  margin-bottom: 15px;
}

.page-the-thao__feature-text {
  font-size: 16px;
  color: var(--mu88-text-main);
  line-height: 1.6;
}

/* Categories Section */
.page-the-thao__categories-section {
  padding-bottom: 80px;
}

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

.page-the-thao__category-card {
  background-color: var(--mu88-card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-the-thao__category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-the-thao__category-image {
  width: 100%;
  height: 220px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-the-thao__category-card h3,
.page-the-thao__category-card p {
  padding: 0 25px;
}

.page-the-thao__category-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--mu88-text-dark);
  margin-top: 25px;
  margin-bottom: 10px;
}

.page-the-thao__category-text {
  font-size: 16px;
  color: var(--mu88-text-main);
  line-height: 1.6;
  padding-bottom: 25px;
}

/* Betting Guide Section */
.page-the-thao__betting-guide-section {
  padding-bottom: 80px;
}

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

.page-the-thao__guide-step {
  background-color: var(--mu88-card-bg);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.page-the-thao__step-icon {
  width: 60px;
  height: 60px;
  background: var(--mu88-button-gradient);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.4);
}

.page-the-thao__step-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--mu88-text-dark);
  margin-bottom: 15px;
}

.page-the-thao__step-text {
  font-size: 16px;
  color: var(--mu88-text-main);
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-the-thao__guide-conclusion {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--mu88-text-dark);
  margin-top: 50px;
}

/* Promotions Section */
.page-the-thao__promotions-section {
  padding-bottom: 80px;
}

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

.page-the-thao__promo-card {
  background-color: var(--mu88-card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-the-thao__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-the-thao__promo-image {
  width: 100%;
  height: 200px; /* Fixed height for promo images */
  object-fit: cover;
  display: block;
}

.page-the-thao__promo-card h3,
.page-the-thao__promo-card p {
  padding: 0 25px;
}

.page-the-thao__promo-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--mu88-text-dark);
  margin-top: 25px;
  margin-bottom: 10px;
}

.page-the-thao__promo-text {
  font-size: 16px;
  color: var(--mu88-text-main);
  line-height: 1.6;
  padding-bottom: 25px;
  flex-grow: 1;
}