.page-the-thao-huong-dan-dat-cuoc {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Text Main */
    background-color: #F5F7FA; /* Background */
}

/* Hero Section */
.page-the-thao-huong-dan-dat-cuoc__hero-section {
    padding-top: 10px; /* Small top padding as body handles header offset */
    padding-bottom: 60px;
    background-color: #F5F7FA; /* Background */
}

.page-the-thao-huong-dan-dat-cuoc__hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-the-thao-huong-dan-dat-cuoc__hero-content {
    flex: 1;
    min-width: 300px;
}

.page-the-thao-huong-dan-dat-cuoc__main-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem); /* H1 font-size clamp */
    font-weight: 700;
    color: #E53935; /* Main brand color for H1 */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-the-thao-huong-dan-dat-cuoc__hero-description {
    font-size: 1.15rem;
    color: #333333;
    margin-bottom: 30px;
    max-width: 600px;
}

.page-the-thao-huong-dan-dat-cuoc__cta-buttons {
    display: flex;
    gap: 15px;
    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: 14px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box; /* Ensure padding doesn't make it overflow */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    text-align: center;
}

.page-the-thao-huong-dan-dat-cuoc__btn-primary {
    background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%); /* Button gradient */
    color: #ffffff;
    border: 2px solid transparent;
}

.page-the-thao-huong-dan-dat-cuoc__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-the-thao-huong-dan-dat-cuoc__btn-secondary {
    background-color: #ffffff; /* Card BG */
    color: #E53935; /* Main brand color */
    border: 2px solid #E53935; /* Main brand color */
}

.page-the-thao-huong-dan-dat-cuoc__btn-secondary:hover {
    background-color: #E53935; /* Main brand color */
    color: #ffffff;
    transform: translateY(-2px);
}

.page-the-thao-huong-dan-dat-cuoc__hero-image {
    flex: 1;
    min-width: 400px;
    text-align: center;
}

.page-the-thao-huong-dan-dat-cuoc__hero-side-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* General Content Area */
.page-the-thao-huong-dan-dat-cuoc__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #ffffff; /* Card BG */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.page-the-thao-huong-dan-dat-cuoc__intro-section {
    background-color: #F5F7FA; /* Background */
    box-shadow: none;
    border-radius: 0;
}

.page-the-thao-huong-dan-dat-cuoc__section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #E53935; /* Main brand color */
    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, #FF5A4F 0%, #E53935 100%);
    border-radius: 2px;
}

.page-the-thao-huong-dan-dat-cuoc__text-block {
    font-size: 1.05rem;
    color: #333333; /* Text Main */
    margin-bottom: 20px;
    text-align: justify;
}

/* Features Section */
.page-the-thao-huong-dan-dat-cuoc__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-the-thao-huong-dan-dat-cuoc__feature-item {
    background-color: #ffffff; /* Card BG */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid #E0E0E0; /* Border */
}

.page-the-thao-huong-dan-dat-cuoc__feature-item:hover {
    transform: translateY(-8px);
}

.page-the-thao-huong-dan-dat-cuoc__icon-box-media {
    width: 180px; /* Reduced from 400x400 for better layout, but still >= 200px on mobile */
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #FF5A4F; /* Auxiliary color */
    box-shadow: 0 0 0 8px rgba(255, 90, 79, 0.2);
}

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

.page-the-thao-huong-dan-dat-cuoc__feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #E53935; /* Main brand color */
    margin-bottom: 15px;
}

.page-the-thao-huong-dan-dat-cuoc__feature-description {
    font-size: 1rem;
    color: #333333; /* Text Main */
}

/* Guide Section */
.page-the-thao-huong-dan-dat-cuoc__guide-steps {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.page-the-thao-huong-dan-dat-cuoc__guide-step-item {
    background-color: #ffffff; /* Card BG */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #E0E0E0; /* Border */
}

.page-the-thao-huong-dan-dat-cuoc__guide-step-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #E53935; /* Main brand color */
    margin-bottom: 20px;
    text-align: center;
}

.page-the-thao-huong-dan-dat-cuoc__guide-media {
    margin-bottom: 20px;
    text-align: center;
}