:root {
    --page-bg-color: #140C0C; /* Background */
    --card-bg-color: #2A1212; /* Card BG */
    --text-main-color: #FFF1E8; /* Text Main */
    --btn-gradient: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button */
    --border-color: #6A1E1E; /* Border */
    --gold-color: #F3C54D; /* Gold */
    --deep-red-color: #7E0D0D; /* Deep Red */
    --primary-color: #C61F1F; /* Main color */
    --secondary-color: #E53030; /* Auxiliary color */
}

.page-the-thao-ca-cuoc-bong-da {
    font-family: Arial, sans-serif;
    color: var(--text-main-color);
    background-color: var(--page-bg-color); /* Apply custom background color */
    line-height: 1.6;
    padding-bottom: 40px; /* Ensure space above footer */
}

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

/* HERO Section */
.page-the-thao-ca-cuoc-bong-da__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, shared.css handles header offset */
    background-color: var(--primary-color);
    overflow: hidden;
    margin-bottom: 40px;
}

.page-the-thao-ca-cuoc-bong-da__hero-image {
    width: 100%;
    height: 675px; /* Fixed height for desktop hero */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-the-thao-ca-cuoc-bong-da__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover for desktop */
    display: block;
}

.page-the-thao-ca-cuoc-bong-da__hero-content {
    max-width: 900px;
    margin: 20px auto 40px auto;
    text-align: center;
    padding: 0 20px;
    color: var(--text-main-color);
}

.page-the-thao-ca-cuoc-bong-da__main-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--gold-color); /* Using gold for main title */
}

.page-the-thao-ca-cuoc-bong-da__hero-description {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Buttons */
.page-the-thao-ca-cuoc-bong-da__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-the-thao-ca-cuoc-bong-da__cta-buttons--center {
    margin-top: 40px;
}

.page-the-thao-ca-cuoc-bong-da__btn-primary,
.page-the-thao-ca-cuoc-bong-da__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    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);
    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: var(--btn-gradient);
    color: #ffffff;
    border: none;
}

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

.page-the-thao-ca-cuoc-bong-da__btn-secondary {
    background-color: transparent;
    color: var(--gold-color);
    border: 2px solid var(--gold-color);
}

.page-the-thao-ca-cuoc-bong-da__btn-secondary:hover {
    background-color: var(--gold-color);
    color: var(--page-bg-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

/* General Section Styling */
.page-the-thao-ca-cuoc-bong-da__introduction-section,
.page-the-thao-ca-cuoc-bong-da__why-choose-section,
.page-the-thao-ca-cuoc-bong-da__bet-types-section,
.page-the-thao-ca-cuoc-bong-da__guide-section,
.page-the-thao-ca-cuoc-bong-da__tips-section,
.page-the-thao-ca-cuoc-bong-da__promotion-section,
.page-the-thao-ca-cuoc-bong-da__faq-section,
.page-the-thao-ca-cuoc-bong-da__conclusion-section {
    padding: 40px 0;
    margin-bottom: 20px;
}

.page-the-thao-ca-cuoc-bong-da__section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--gold-color);
    position: relative;
    padding-bottom: 10px;
}

.page-the-thao-ca-cuoc-bong-da__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.page-the-thao-ca-cuoc-bong-da__article-body {
    max-width: 900px;
    margin: 0 auto;
    font-size: 17px;
    color: var(--text-main-color);
}