/* General Styling */
.page-the-thao {
  font-family: 'Arial', sans-serif;
  color: #FFF6D6; /* Text Main on Background #0A0A0A */
  background-color: transparent; /* Body background is handled by shared.css var(--background-color) #0A0A0A */
}

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

.page-the-thao__section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.page-the-thao__section-title {
  font-size: clamp(28px, 4vw, 38px); /* Use clamp for H2 titles */
  color: #F2C14E; /* Main color for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.page-the-thao__text-block {
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #FFF6D6;
}

/* Buttons */
.page-the-thao__btn-primary,
.page-the-thao__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  word-wrap: break-word; /* Allow button text to wrap */
  box-sizing: border-box;
  max-width: 100%;
}

.page-the-thao__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #111111; /* Dark text for golden button */
  border: 2px solid transparent;
}

.page-the-thao__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-the-thao__btn-secondary {
  background: transparent;
  color: #FFD36B; /* Glow color for text */
  border: 2px solid #3A2A12; /* Border color */
}

.page-the-thao__btn-secondary:hover {
  background: rgba(255, 211, 107, 0.1);
  color: #FFD36B;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.2);
}

.page-the-thao__btn-text {
  color: #FFD36B;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-the-thao__btn-text:hover {
  color: #F2C14E;
}

.page-the-thao__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-the-thao__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

.page-the-thao__text-link {
  color: #FFD36B;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-the-thao__text-link:hover {
  color: #F2C14E;
}

/* Hero Section */
.page-the-thao__hero-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, shared.css handles body padding-top */
}

.page-the-thao__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.page-the-thao__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Desktop: cover to fill */
  filter: brightness(0.5); /* Darken image for text readability */
}

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

.page-the-thao__main-title {
  font-size: clamp(36px, 5vw, 56px); /* H1 title */
  color: #FFF6D6;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.page-the-thao__description {
  font-size: 18px;
  color: #FFF6D6;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

.page-the-thao__sport-card {
  background: #111111; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #3A2A12;
}