/* Custom Colors */
:root {
  --min88cc-bg: #08160F;
  --min88cc-card-bg: #11271B;
  --min88cc-text-main: #F2FFF6;
  --min88cc-text-secondary: #A7D9B8;
  --min88cc-border: #2E7A4E;
  --min88cc-glow: #57E38D;
  --min88cc-gold: #F2C14E;
  --min88cc-divider: #1E3A2A;
  --min88cc-deep-green: #0A4B2C;
  --min88cc-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --min88cc-primary-color: #11A84E; /* Main color */
  --min88cc-secondary-color: #22C768; /* Auxiliary color */
}

.page-the-thao {
  background-color: var(--min88cc-bg);
  color: var(--min88cc-text-main); /* Light text for dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-the-thao__section {
  padding: 60px 0;
}

.page-the-thao__section-title {
  font-size: clamp(28px, 4vw, 42px); /* H1 rules applied to H2 for content sections */
  color: var(--min88cc-text-main);
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-the-thao__section-description {
  font-size: 18px;
  color: var(--min88cc-text-secondary);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Hero Section */
.page-the-thao__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-the-thao__hero-image {
  width: 100%;
  max-height: 550px;
  overflow: hidden;
  margin-bottom: 30px; /* Space between image and content */
}

.page-the-thao__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Cover for desktop */
}

.page-the-thao__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 15px;
}

.page-the-thao__main-title {
  font-size: clamp(36px, 5vw, 56px); /* H1 font size with clamp */
  color: var(--min88cc-gold); /* Gold color for main title */
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-the-thao__lead-text {
  font-size: 20px;
  color: var(--min88cc-text-main);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-the-thao__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow wrapping for multiple buttons */
}

.page-the-thao__btn-primary,
.page-the-thao__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 180px;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-the-thao__btn-primary {
  background: var(--min88cc-btn-gradient);
  color: var(--min88cc-text-main); /* Light text for dark button */
  border: 2px solid transparent;
}

.page-the-thao__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(42, 209, 111, 0.4);
}

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

.page-the-thao__btn-secondary:hover {
  background: var(--min88cc-primary-color);
  color: var(--min88cc-text-main);
}

/* General Card Styles */
.page-the-thao__card {
  background-color: var(--min88cc-card-bg);
  border: 1px solid var(--min88cc-border);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--min88cc-text-main);
}}