/* Base styles for the page */
.page-the-thao-huong-dan-dat-cuoc {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #F2FFF6; /* Text Main */
    background: #08160F; /* Background */
}

.page-the-thao-huong-dan-dat-cuoc__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
}

.page-the-thao-huong-dan-dat-cuoc__section-title {
    font-size: 36px;
    font-weight: 700;
    color: #F2FFF6; /* Text Main */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-the-thao-huong-dan-dat-cuoc__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
    border-radius: 2px;
}

.page-the-thao-huong-dan-dat-cuoc__content-area p,
.page-the-thao-huong-dan-dat-cuoc__faq-answer p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #A7D9B8; /* Text Secondary */
}

/* Hero Section */
.page-the-thao-huong-dan-dat-cuoc__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, body handles header offset */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    text-align: center;
}

.page-the-thao-huong-dan-dat-cuoc__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.page-the-thao-huong-dan-dat-cuoc__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-the-thao-huong-dan-dat-cuoc__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 40px 20px;
    background: rgba(17, 39, 27, 0.8); /* Card BG with opacity */
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    margin-top: 20px;
    margin-bottom: 20px;
}

.page-the-thao-huong-dan-dat-cuoc__main-title {
    font-size: clamp(28px, 4vw, 48px); /* H1 font size clamp */
    font-weight: 800;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-the-thao-huong-dan-dat-cuoc__intro-text {
    font-size: 18px;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-the-thao-huong-dan-dat-cuoc__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-the-thao-huong-dan-dat-cuoc__btn-primary,
.page-the-thao-huong-dan-dat-cuoc__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 100%; /* Button responsive fix */
    box-sizing: border-box; /* Button responsive fix */
    white-space: normal; /* Button responsive fix */
    word-wrap: break-word; /* Button responsive fix */
}

.page-the-thao-huong-dan-dat-cuoc__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
    color: #ffffff;
    border: none;
}

.page-the-thao-huong-dan-dat-cuoc__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-the-thao-huong-dan-dat-cuoc__btn-secondary {
    background: transparent;
    color: #57E38D; /* Glow */
    border: 2px solid #2E7A4E; /* Border */
}

.page-the-thao-huong-dan-dat-cuoc__btn-secondary:hover {
    background: rgba(46, 122, 78, 0.2); /* Border with opacity */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-the-thao-huong-dan-dat-cuoc__btn-small {
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 30px;
}

.page-the-thao-huong-dan-dat-cuoc__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-the-thao-huong-dan-dat-cuoc__image-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Bet Types Section */
.page-the-thao-huong-dan-dat-cuoc__bet-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-the-thao-huong-dan-dat-cuoc__bet-type-card {
    background: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-the-thao-huong-dan-dat-cuoc__bet-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.page-the-thao-huong-dan-dat-cuoc__card-title {
    font-size: 24px;
    font-weight: 700;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
}

.page-the-thao-huong-dan-dat-cuoc__bet-type-card p {
    color: #A7D9B8; /* Text Secondary */
    font-size: 16px;
    margin-bottom: 20px;
}

.page-the-thao-huong-dan-dat-cuoc__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 15px;
}


/* Guide Section */
.page-the-thao-huong-dan-dat-cuoc__guide-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
}

.page-the-thao-huong-dan-dat-cuoc__guide-step-item {
    background: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-the-thao-huong-dan-dat-cuoc__guide-step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.page-the-thao-huong-dan-dat-cuoc__step-title {
    font-size: 22px;
    font-weight: 700;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
    position: relative;
    padding-left: 35px;
}

/* Assigning step numbers via CSS counter */
.page-the-thao-huong-dan-dat-cuoc__guide-steps {
  counter-reset: guide-step-counter;
}
.page-the-thao-huong-dan-dat-cuoc__guide-step-item .page-the-thao-huong-dan-dat-cuoc__step-title::before {
  counter-increment: guide-step-counter;
  content: counter(guide-step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}


.page-the-thao-huong-dan-dat-cuoc__guide-step-item p {
    color: #A7D9B8; /* Text Secondary */
    font-size: 16px;
    margin-bottom: 20px;
}

/* Tips Section */
.page-the-thao-huong-dan-dat-cuoc__tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-the-thao-huong-dan-dat-cuoc__tip-card {
    background: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-the-thao-huong-dan-dat-cuoc__tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* Notes Section */
.page-the-thao-huong-dan-dat-cuoc__notes-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-the-thao-huong-dan-dat-cuoc__notes-list li {
    background: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}