/* style/the-thao.css */
:root {
    --primary-color: #0A192F;
    --secondary-color: #FFD700;
    --text-light: #FFFFFF;
    --text-dark: #333333;
    --bg-light: #F8F8F8;
    --bg-dark: #1A2E44;
    --border-color: #e0e0e0;
}

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

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

/* Hero Section */
.page-the-thao .hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--bg-dark));
    color: var(--text-light);
}

.page-the-thao .hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-the-thao .hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-the-thao .hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.page-the-thao .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-the-thao .hero-section h1 {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-the-thao .hero-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
}

.page-the-thao .cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-the-thao .cta-button:hover {
    background: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* General Section Styling */
.page-the-thao section {
    padding: 60px 0;
}

.page-the-thao section:nth-of-type(even) {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-the-thao section:nth-of-type(even) h2,
.page-the-thao section:nth-of-type(even) h3 {
    color: var(--secondary-color);
}

.page-the-thao section:nth-of-type(odd) {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.page-the-thao h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.page-the-thao h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.page-the-thao section:nth-of-type(even) .cta-button-small {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.page-the-thao section:nth-of-type(even) .cta-button-small:hover {
    background: #e6c200;
}

.page-the-thao section:nth-of-type(odd) .cta-button-small {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.page-the-thao section:nth-of-type(odd) .cta-button-small:hover {
    background: #071221;
}

/* Why Choose Us Section */
.page-the-thao .why-choose-us .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-the-thao .why-choose-us .feature-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-the-thao .why-choose-us .feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.page-the-thao .why-choose-us .feature-item img {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 5px;
}

.page-the-thao .why-choose-us .feature-item h3 {
    color: var(--primary-color);
    font-size: 1.6em;
}

.page-the-thao .why-choose-us .feature-item p {
    color: var(--text-dark);
    font-size: 1em;
}

/* Game Types Section */
.page-the-thao .game-types-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-the-thao .game-types-section h2 {
    color: var(--secondary-color);
}

.page-the-thao .game-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-the-thao .game-type-card {
    background: var(--primary-color);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-the-thao .game-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-the-thao .game-type-card img {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 5px;
}

.page-the-thao .game-type-card h3 {
    color: var(--secondary-color);
    font-size: 1.6em;
    margin-bottom: 15px;
}

.page-the-thao .game-type-card p {
    color: var(--text-light);
    font-size: 1em;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-the-thao .btn-small {
    display: inline-block;
    padding: 10px 25px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9em;
    font-weight: bold;
    transition: all 0.3s ease;
}

.page-the-thao .btn-small:hover {
    background: #e6c200;
    transform: translateY(-1px);
}

/* Promotions Section */
.page-the-thao .promotions-section {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.page-the-thao .promotions-section h2 {
    color: var(--primary-color);
}

.page-the-thao .promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-the-thao .promo-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-the-thao .promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.page-the-thao .promo-card img {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 5px;
}

.page-the-thao .promo-card h3 {
    color: var(--primary-color);
    font-size: 1.6em;
    margin-bottom: 15px;
}

.page-the-thao .promo-card p {
    color: var(--text-dark);
    font-size: 1em;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-the-thao .promo-card p a {
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: none;
}

.page-the-thao .promo-card p a:hover {
    text-decoration: underline;
}

.page-the-thao .cta-button-small {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9em;
    font-weight: bold;
    transition: all 0.3s ease;
}

.page-the-thao .cta-button-small:hover {
    background: #071221;
    transform: translateY(-1px);
}

/* How To Bet Section */
.page-the-thao .how-to-bet-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-the-thao .how-to-bet-section h2 {
    color: var(--secondary-color);
}

.page-the-thao .betting-steps {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-the-thao .betting-steps li {
    background: var(--primary-color);
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-the-thao .betting-steps li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-the-thao .betting-steps li h3 {
    color: var(--secondary-color);
    font-size: 1.8em;
    margin-bottom: 10px;
}

.page-the-thao .betting-steps li p {
    color: var(--text-light);
    font-size: 1.1em;
}

.page-the-thao .betting-steps li p a {
    color: var(--secondary-color);
    font-weight: bold;
    text-decoration: none;
}

.page-the-thao .betting-steps li p a:hover {
    text-decoration: underline;
}

.page-the-thao .cta-bottom {
    text-align: center;
    margin-top: 50px;
}

/* Support Section */
.page-the-thao .support-section {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.page-the-thao .support-section h2 {
    color: var(--primary-color);
}

.page-the-thao .support-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-the-thao .support-text {
    flex: 1;
    min-width: 300px;
}

.page-the-thao .support-text p {
    margin-bottom: 20px;
    font-size: 1.1em;
}

.page-the-thao .support-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-the-thao .support-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.page-the-thao .faq-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-the-thao .faq-section h2 {
    color: var(--secondary-color);
}

.page-the-thao .faq-list {
    margin-top: 40px;
}

.page-the-thao .faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-the-thao .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--primary-color);
    border: 1px solid #1A2E44;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-the-thao .faq-question:hover {
    background: #071221;
}

.page-the-thao .faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: var(--secondary-color);
}

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

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

.page-the-thao .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
    background: #1A2E44;
    color: var(--text-light);
}

.page-the-thao .faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height to contain content */
    padding: 15px 20px;
    border-top: 1px solid var(--primary-color);
}

.page-the-thao .faq-answer p {
    margin: 0;
    font-size: 1em;
}

.page-the-thao .faq-answer p a {
    color: var(--secondary-color);
    font-weight: bold;
    text-decoration: none;
}

.page-the-thao .faq-answer p a:hover {
    text-decoration: underline;
}

/* Conclusion Section */
.page-the-thao .conclusion-section {
    text-align: center;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.page-the-thao .conclusion-section h2 {
    color: var(--primary-color);
}

.page-the-thao .conclusion-section p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-the-thao .conclusion-section p a {
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: none;
}

.page-the-thao .conclusion-section p a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-the-thao .hero-section h1 {
        font-size: 2.5em;
    }

    .page-the-thao h2 {
        font-size: 2em;
    }

    .page-the-thao h3 {
        font-size: 1.5em;
    }

    .page-the-thao .features-grid,
    .page-the-thao .game-types-grid,
    .page-the-thao .promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .page-the-thao .support-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-the-thao .hero-section {
        padding: 40px 15px;
    }

    .page-the-thao .hero-section h1 {
        font-size: 2em;
    }

    .page-the-thao .hero-section p {
        font-size: 1em;
    }

    .page-the-thao .cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }

    .page-the-thao section {
        padding: 40px 0;
    }

    .page-the-thao h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-the-thao h3 {
        font-size: 1.3em;
    }

    .page-the-thao .feature-item,
    .page-the-thao .game-type-card,
    .page-the-thao .promo-card {
        padding: 20px;
    }

    .page-the-thao .faq-question {
        padding: 15px;
    }

    .page-the-thao .faq-question h3 {
        font-size: 1.1em;
    }

    .page-the-thao .faq-answer {
        padding: 0 15px;
    }

    .page-the-thao .faq-item.active .faq-answer {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .page-the-thao .hero-section h1 {
        font-size: 1.8em;
    }

    .page-the-thao h2 {
        font-size: 1.6em;
    }

    .page-the-thao .cta-button {
        font-size: 14px;
        padding: 10px 25px;
    }

    .page-the-thao .features-grid,
    .page-the-thao .game-types-grid,
    .page-the-thao .promo-grid {
        grid-template-columns: 1fr;
    }
    
    .page-the-thao .support-image img {
        max-width: 100%;
    }
}