.page-the-thao-ca-cuoc-bong-da {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
}

.page-the-thao-ca-cuoc-bong-da__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.page-the-thao-ca-cuoc-bong-da__container--center {
  text-align: center;
}

/* Hero Section */
.page-the-thao-ca-cuoc-bong-da__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding as body handles --header-offset */
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #FFF6D6;
  text-align: center;
  min-height: 500px;
}

.page-the-thao-ca-cuoc-bong-da__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #0A0A0A;
}

.page-the-thao-ca-cuoc-bong-da__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.page-the-thao-ca-cuoc-bong-da__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  box-sizing: border-box;
}

.page-the-thao-ca-cuoc-bong-da__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD36B; /* Glow color for emphasis */
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-the-thao-ca-cuoc-bong-da__hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 30px;
  color: #FFF6D6;
}

.page-the-thao-ca-cuoc-bong-da__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* General Section Styling */
.page-the-thao-ca-cuoc-bong-da__section {
  padding: 60px 0;
}

.page-the-thao-ca-cuoc-bong-da__dark-section {
  background-color: #0A0A0A;
  color: #FFF6D6;
}

.page-the-thao-ca-cuoc-bong-da__light-bg {
  background-color: #111111; /* Card BG */
  color: #FFF6D6;
}

.page-the-thao-ca-cuoc-bong-da__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #FFD36B; /* Glow */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(255, 211, 107, 0.3);
}

.page-the-thao-ca-cuoc-bong-da__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: #F2C14E; /* Main color */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-the-thao-ca-cuoc-bong-da__text-block {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #FFF6D6;
}

.page-the-thao-ca-cuoc-bong-da__text-block p {
  margin-bottom: 15px;
}

.page-the-thao-ca-cuoc-bong-da__text-block ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 15px;
}

.page-the-thao-ca-cuoc-bong-da__text-block li {
  margin-bottom: 8px;
}

/* Grid for Cards */
.page-the-thao-ca-cuoc-bong-da__grid-3-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-the-thao-ca-cuoc-bong-da__card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFF6D6;
}

.page-the-thao-ca-cuoc-bong-da__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-the-thao-ca-cuoc-bong-da__card-title {
  font-size: 1.4rem;
  color: #FFD36B; /* Glow */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-the-thao-ca-cuoc-bong-da__card-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #FFF6D6;
}

/* Content Block with Image */
.page-the-thao-ca-cuoc-bong-da__content-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-the-thao-ca-cuoc-bong-da__content-block--reversed {
  flex-direction: row-reverse;
}

.page-the-thao-ca-cuoc-bong-da__image-left,
.page-the-thao-ca-cuoc-bong-da__image-right {
  flex: 1;
  min-width: 300px;
}

.page-the-thao-ca-cuoc-bong-da__text-left,
.page-the-thao-ca-cuoc-bong-da__text-right {
  flex: 2;
  min-width: 300px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #FFF6D6;
}

.page-the-thao-ca-cuoc-bong-da__content-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: block;
}

/* Buttons */
.page-the-thao-ca-cuoc-bong-da__btn-primary,
.page-the-thao-ca-cuoc-bong-da__btn-secondary,
.page-the-thao-ca-cuoc-bong-da a[class*="btn"] {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-the-thao-ca-cuoc-bong-da__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #ffffff; /* Button text color */
  border: none;
  box-shadow: 0 4px 10px rgba(242, 193, 78, 0.4);
}

.page-the-thao-ca-cuoc-bong-da__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(242, 193, 78, 0.6);
}

.page-the-thao-ca-cuoc-bong-da__btn-secondary {
  background: transparent;
  color: #F2C14E; /* Main color */
  border: 2px solid #F2C14E; /* Border */
}

.page-the-thao-ca-cuoc-bong-da__btn-secondary:hover {
  background: rgba(242, 193, 78, 0.1);
  color: #FFD36B;
  transform: translateY(-2px);
}

.page-the-thao-ca-cuoc-bong-da__btn-small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* CTA Section */
.page-the-thao-ca-cuoc-bong-da__cta-section {
  padding: 80px 0;
  background-color: #0A0A0A;
  color: #FFF6D6;
  text-align: center;
}