.page-the-thao {
  color: #333333;
  background-color: #F5F7FA;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
}

/* Hero Section */
.page-the-thao__hero-section {
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F7FA 100%);
  padding: 10px 16px 32px;
}

.page-the-thao__hero-image-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.page-the-thao__hero-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 17/5;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.page-the-thao__hero-content {
  max-width: 800px;
  margin: 20px auto 0;
  text-align: center;
}

.page-the-thao__hero-title {
  color: #E53935;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.page-the-thao__hero-description {
  color: #333333;
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 20px;
}

.page-the-thao__hero-cta {
  display: inline-block;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 32px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(229, 57, 53, 0.3);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.page-the-thao__hero-cta:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Logo Grid Section */
.page-the-thao__logo-section {
  background-color: #FFFFFF;
  padding: 40px 16px;
}

.page-the-thao__logo-title {
  text-align: center;
  color: #E53935;
  font-weight: 700;
  font-size: 1.75rem;
  margin: 0 0 32px;
}

.page-the-thao__logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 16px;
  justify-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.page-the-thao__logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 240px;
  width: 100%;
}

.page-the-thao__logo-image {
  width: 100%;
  height: auto;
  aspect-ratio: 2/1;
  object-fit: contain;
  border: 1px solid #E0E0E0;
  border-radius: 10px;
  padding: 8px;
  background-color: #FFFFFF;
}

.page-the-thao__logo-cta {
  display: block;
  width: auto;
  padding: 8px 20px;
  border-radius: 999px;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #FFFFFF;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 3px 10px rgba(229, 57, 53, 0.2);
  transition: opacity 0.2s ease;
}

.page-the-thao__logo-cta:hover {
  opacity: 0.9;
}

.page-the-thao__logo-item:nth-child(5) {
  grid-column: 2;
}

.page-the-thao__logo-item:nth-child(6) {
  grid-column: 3;
}

/* Guide Section */
.page-the-thao__guide-section {
  background-color: #F5F7FA;
  padding: 48px 16px 64px;
}

.page-the-thao__guide-inner {
  max-width: 900px;
  margin: 0 auto;
}

.page-the-thao__guide-title {
  text-align: center;
  color: #E53935;
  font-weight: 700;
  font-size: 1.75rem;
  margin: 0 0 16px;
}

.page-the-thao__guide-intro {
  text-align: center;
  font-size: 1rem;
  color: #333333;
  max-width: 700px;
  margin: 0 auto 40px;
}

.page-the-thao__guide-article {
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 32px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.page-the-thao__guide-figure {
  margin: 0 0 16px;
}

.page-the-thao__guide-figure img {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
  aspect-ratio: 2/1;
  object-fit: cover;
  border-radius: 12px;
  margin: 0 auto;
}

.page-the-thao__guide-subtitle {
  color: #E53935;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 0 12px;
}

.page-the-thao__guide-article p {
  color: #333333;
  font-size: 0.95rem;
  margin: 0;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
  .page-the-thao__logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-the-thao__logo-item:nth-child(5),
  .page-the-thao__logo-item:nth-child(6) {
    grid-column: auto;
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .page-the-thao {
    overflow-x: hidden;
    max-width: 100%;
  }

  .page-the-thao__hero-section {
    padding: 8px 12px 24px;
  }

  .page-the-thao__hero-image {
    aspect-ratio: 2/1;
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .page-the-thao__hero-title {
    font-size: 1.5rem;
  }

  .page-the-thao__hero-cta {
    display: inline-block;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    width: auto;
  }

  .page-the-thao__logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 12px;
  }

  .page-the-thao__logo-item {
    max-width: 100%;
  }

  .page-the-thao__logo-item:nth-child(5),
  .page-the-thao__logo-item:nth-child(6) {
    grid-column: auto;
  }

  .page-the-thao__logo-cta {
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    padding: 10px 12px;
    font-size: 0.85rem;
    width: 100%;
  }

  .page-the-thao__guide-section {
    padding: 32px 12px 48px;
  }

  .page-the-thao__guide-title {
    font-size: 1.4rem;
  }

  .page-the-thao__guide-article {
    padding: 16px;
  }

  .page-the-thao__guide-subtitle {
    font-size: 1.1rem;
  }

  .page-the-thao img {
    max-width: 100% !important;
    height: auto !important;
  }
}