:root {
    --primary-color: #0A192F;
    --secondary-color: #FFD700;
    --text-light: #FFFFFF;
    --text-dark: #333333;
    --background-light: #F8F8F8;
    --background-dark: #1A2E47;
    --accent-color: #FFD700;
    --border-color: #E0E0E0;
}

.page-the-thao-football-betting-guide {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--background-light);
}

.page-the-thao-football-betting-guide a {
    text-decoration: none;
    color: var(--primary-color);
}

.page-the-thao-football-betting-guide a:hover {
    color: var(--secondary-color);
}

.page-the-thao-football-betting-guide .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-the-thao-football-betting-guide .section-wrapper {
    padding: 60px 0;
    margin-bottom: 20px;
}

.page-the-thao-football-betting-guide .section-title {
    font-size: 36px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-the-thao-football-betting-guide .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.page-the-thao-football-betting-guide .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-the-thao-football-betting-guide .btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.page-the-thao-football-betting-guide .btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-the-thao-football-betting-guide .btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
    margin-left: 15px;
}

.page-the-thao-football-betting-guide .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.page-the-thao-football-betting-guide .btn-large {
    padding: 15px 35px;
    font-size: 18px;
}

.page-the-thao-football-betting-guide .btn-register-small, 
.page-the-thao-football-betting-guide .btn-deposit-small {
    padding: 8px 15px;
    font-size: 14px;
    margin-top: 15px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-the-thao-football-betting-guide .btn-register-small:hover, 
.page-the-thao-football-betting-guide .btn-deposit-small:hover {
    background-color: #e6c200;
    transform: translateY(-1px);
}

/* Intro Banner */
.page-the-thao-football-betting-guide .intro-banner {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-the-thao-football-betting-guide .intro-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-the-thao-football-betting-guide .intro-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 25, 47, 0.8), rgba(10, 25, 47, 0.6));
    z-index: 2;
}

.page-the-thao-football-betting-guide .intro-content {
    position: relative;
    z-index: 3;
    color: var(--text-light);
    max-width: 800px;
    padding: 20px;
}

.page-the-thao-football-betting-guide .main-title {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--secondary-color);
    line-height: 1.2;
}

.page-the-thao-football-betting-guide .subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-light);
}

.page-the-thao-football-betting-guide .cta-buttons {
    margin-top: 30px;
}

/* About 8us Section */
.page-the-thao-football-betting-guide .about-8us {
    background-color: var(--background-light);
}

.page-the-thao-football-betting-guide .about-8us p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    font-size: 17px;
}

.page-the-thao-football-betting-guide .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-the-thao-football-betting-guide .feature-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-the-thao-football-betting-guide .feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-the-thao-football-betting-guide .feature-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-the-thao-football-betting-guide .feature-item h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-the-thao-football-betting-guide .feature-item p {
    font-size: 15px;
    color: var(--text-dark);
    text-align: center; /* Ensure text in features is centered */
    margin-bottom: 0;
}

/* Bet Types Section */
.page-the-thao-football-betting-guide .bet-types {
    background-color: var(--background-dark);
    color: var(--text-light);
}

.page-the-thao-football-betting-guide .bet-types .section-title {
    color: var(--secondary-color);
}

.page-the-thao-football-betting-guide .bet-types p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    font-size: 17px;
    color: var(--text-light);
}

.page-the-thao-football-betting-guide .bet-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-the-thao-football-betting-guide .bet-type-item {
    background-color: var(--primary-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-the-thao-football-betting-guide .bet-type-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-the-thao-football-betting-guide .bet-type-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-the-thao-football-betting-guide .bet-type-item h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-the-thao-football-betting-guide .bet-type-item p {
    font-size: 16px;
    color: var(--text-light);
    text-align: left;
}

/* Registration Guide Section */
.page-the-thao-football-betting-guide .registration-guide {
    background-color: var(--background-light);
}

.page-the-thao-football-betting-guide .registration-guide p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    font-size: 17px;
}

.page-the-thao-football-betting-guide .step-by-step {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-the-thao-football-betting-guide .step-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-the-thao-football-betting-guide .step-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-the-thao-football-betting-guide .step-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-the-thao-football-betting-guide .step-item h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-the-thao-football-betting-guide .step-item p {
    font-size: 15px;
    color: var(--text-dark);
    text-align: left;
}

/* Strategies Section */
.page-the-thao-football-betting-guide .strategies {
    background-color: var(--background-dark);
    color: var(--text-light);
}

.page-the-thao-football-betting-guide .strategies .section-title {
    color: var(--secondary-color);
}

.page-the-thao-football-betting-guide .strategies p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    font-size: 17px;
    color: var(--text-light);
}

.page-the-thao-football-betting-guide .strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-the-thao-football-betting-guide .strategy-item {
    background-color: var(--primary-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-the-thao-football-betting-guide .strategy-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-the-thao-football-betting-guide .strategy-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-the-thao-football-betting-guide .strategy-item h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-the-thao-football-betting-guide .strategy-item p {
    font-size: 16px;
    color: var(--text-light);
    text-align: left;
}

/* Safety & Support Section */
.page-the-thao-football-betting-guide .safety-support {
    background-color: var(--background-light);
}

.page-the-thao-football-betting-guide .safety-support p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    font-size: 17px;
}

.page-the-thao-football-betting-guide .safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-the-thao-football-betting-guide .safety-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-the-thao-football-betting-guide .safety-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-the-thao-football-betting-guide .safety-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-the-thao-football-betting-guide .safety-item h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-the-thao-football-betting-guide .safety-item p {
    font-size: 16px;
    color: var(--text-dark);
    text-align: left;
}

/* FAQ Section */
.page-the-thao-football-betting-guide .faq-section {
    background-color: var(--background-dark);
}

.page-the-thao-football-betting-guide .faq-section .section-title {
    color: var(--secondary-color);
}

.page-the-thao-football-betting-guide .faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-the-thao-football-betting-guide .faq-item {
    margin-bottom: 15px;
}

.page-the-thao-football-betting-guide .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: var(--primary-color);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-the-thao-football-betting-guide .faq-question:hover {
    background: var(--background-dark);
    color: var(--secondary-color);
}

.page-the-thao-football-betting-guide .faq-question h3 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

.page-the-thao-football-betting-guide .faq-toggle {
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.3s ease;
    color: var(--secondary-color);
}

.page-the-thao-football-betting-guide .faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.page-the-thao-football-betting-guide .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background: #1A2E47;
    color: var(--text-light);
    border-radius: 0 0 8px 8px;
    padding: 0 25px;
}

.page-the-thao-football-betting-guide .faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height to contain content */
    padding: 20px 25px;
}

.page-the-thao-football-betting-guide .faq-answer p {
    margin: 0;
    font-size: 16px;
}

/* Latest News Section */
.page-the-thao-football-betting-guide .latest-news {
    background-color: var(--background-light);
}

.page-the-thao-football-betting-guide .latest-news p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    font-size: 17px;
}

.page-the-thao-football-betting-guide .news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-the-thao-football-betting-guide .news-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-the-thao-football-betting-guide .news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-the-thao-football-betting-guide .news-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.page-the-thao-football-betting-guide .news-content {
    padding: 25px;
}

.page-the-thao-football-betting-guide .news-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.page-the-thao-football-betting-guide .news-content h3 a {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.page-the-thao-football-betting-guide .news-content h3 a:hover {
    color: var(--secondary-color);
}

.page-the-thao-football-betting-guide .news-content p {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: left;
}

.page-the-thao-football-betting-guide .read-more {
    color: var(--secondary-color);
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-the-thao-football-betting-guide .read-more:hover {
    color: var(--primary-color);
}

/* Call to Action Section */
.page-the-thao-football-betting-guide .call-to-action {
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}

.page-the-thao-football-betting-guide .call-to-action .section-title {
    color: var(--secondary-color);
}

.page-the-thao-football-betting-guide .call-to-action p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-the-thao-football-betting-guide .main-title {
        font-size: 40px;
    }
    .page-the-thao-football-betting-guide .subtitle {
        font-size: 16px;
    }
    .page-the-thao-football-betting-guide .section-title {
        font-size: 30px;
    }
    .page-the-thao-football-betting-guide .feature-item, 
    .page-the-thao-football-betting-guide .bet-type-item, 
    .page-the-thao-football-betting-guide .step-item, 
    .page-the-thao-football-betting-guide .strategy-item, 
    .page-the-thao-football-betting-guide .safety-item, 
    .page-the-thao-football-betting-guide .news-card {
        padding: 25px;
    }
    .page-the-thao-football-betting-guide .feature-icon, 
    .page-the-thao-football-betting-guide .step-image, 
    .page-the-thao-football-betting-guide .strategy-image, 
    .page-the-thao-football-betting-guide .safety-image {
        height: 150px;
    }
    .page-the-thao-football-betting-guide .bet-type-image {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .page-the-thao-football-betting-guide .intro-banner {
        height: 400px;
    }
    .page-the-thao-football-betting-guide .main-title {
        font-size: 32px;
    }
    .page-the-thao-football-betting-guide .subtitle {
        font-size: 15px;
    }
    .page-the-thao-football-betting-guide .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-the-thao-football-betting-guide .btn-secondary {
        margin-left: 0;
    }
    .page-the-thao-football-betting-guide .section-title {
        font-size: 26px;
    }
    .page-the-thao-football-betting-guide .feature-grid, 
    .page-the-thao-football-betting-guide .bet-type-grid, 
    .page-the-thao-football-betting-guide .step-by-step, 
    .page-the-thao-football-betting-guide .strategy-grid, 
    .page-the-thao-football-betting-guide .safety-grid, 
    .page-the-thao-football-betting-guide .news-grid {
        grid-template-columns: 1fr;
    }
    .page-the-thao-football-betting-guide .faq-question {
        padding: 15px 20px;
    }
    .page-the-thao-football-betting-guide .faq-question h3 {
        font-size: 16px;
    }
    .page-the-thao-football-betting-guide .faq-answer {
        padding: 0 20px;
    }
    .page-the-thao-football-betting-guide .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-the-thao-football-betting-guide .intro-banner {
        height: 350px;
    }
    .page-the-thao-football-betting-guide .main-title {
        font-size: 28px;
    }
    .page-the-thao-football-betting-guide .subtitle {
        font-size: 14px;
    }
    .page-the-thao-football-betting-guide .section-title {
        font-size: 22px;
    }
    .page-the-thao-football-betting-guide .btn-large {
        padding: 12px 25px;
        font-size: 16px;
    }
    .page-the-thao-football-betting-guide .feature-icon, 
    .page-the-thao-football-betting-guide .step-image, 
    .page-the-thao-football-betting-guide .strategy-image, 
    .page-the-thao-football-betting-guide .safety-image {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }
    .page-the-thao-football-betting-guide .feature-item h3, 
    .page-the-thao-football-betting-guide .bet-type-item h3, 
    .page-the-thao-football-betting-guide .step-item h3, 
    .page-the-thao-football-betting-guide .strategy-item h3, 
    .page-the-thao-football-betting-guide .safety-item h3, 
    .page-the-thao-football-betting-guide .news-content h3 {
        font-size: 18px;
    }
    .page-the-thao-football-betting-guide .feature-item p, 
    .page-the-thao-football-betting-guide .bet-type-item p, 
    .page-the-thao-football-betting-guide .step-item p, 
    .page-the-thao-football-betting-guide .strategy-item p, 
    .page-the-thao-football-betting-guide .safety-item p, 
    .page-the-thao-football-betting-guide .news-content p {
        font-size: 14px;
    }
}