/* style/th-thao.css */
:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #4B0082; /* Dark Purple */
    --text-dark: #333333;
    --text-light: #ffffff;
    --background-light: #f8f8f8;
    --background-dark: #2c2c2c;
    --border-color: #e0e0e0;
}

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

.page-th-thao__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-th-thao__section {
    padding: 60px 0;
    margin-bottom: 20px;
}

.page-th-thao__section:nth-of-type(even) {
    background-color: #f0f0f0;
}

.page-th-thao h1,
.page-th-thao h2,
.page-th-thao h3 {
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-th-thao h1 {
    font-size: 2.8em;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-th-thao h2 {
    font-size: 2.2em;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 10px;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}

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

.page-th-thao p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-th-thao__cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--primary-color);
}

.page-th-thao__cta-button:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

/* Hero Section */
.page-th-thao__hero {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--background-dark);
}

.page-th-thao__hero-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    z-index: 1;
    padding: 0 20px;
}

.page-th-thao__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: brightness(0.6);
}

.page-th-thao__hero-content {
    position: relative;
    color: var(--text-light);
    padding: 40px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
}

.page-th-thao__hero-content h1 {
    color: var(--primary-color);
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-th-thao__hero-content p {
    font-size: 1.3em;
    margin-bottom: 30px;
    text-align: center;
}

/* Why Choose Section */
.page-th-thao__why-choose h2 {
    margin-bottom: 40px;
}

.page-th-thao__why-choose p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-th-thao__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-th-thao__feature-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-th-thao__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-th-thao__feature-icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 50%;
    background-color: var(--primary-color);
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-th-thao__feature-item h3 {
    color: var(--secondary-color);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-th-thao__feature-item p {
    font-size: 1em;
    color: var(--text-dark);
    text-align: center;
}

/* Bet Types Section */
.page-th-thao__bet-types h2 {
    margin-bottom: 40px;
}

.page-th-thao__bet-types p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-th-thao__list {
    list-style: none;
    padding: 0;
}

.page-th-thao__list li {
    background-color: #ffffff;
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--primary-color);
}

.page-th-thao__list li h3 {
    text-align: left;
    color: var(--secondary-color);
    margin-top: 0;
    margin-bottom: 10px;
}

.page-th-thao__list li p {
    text-align: left;
    margin-bottom: 0;
}

/* How To Bet Section */
.page-th-thao__how-to-bet h2 {
    margin-bottom: 40px;
}

.page-th-thao__how-to-bet p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-th-thao__steps-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-th-thao__steps-list li {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    padding-top: 80px;
}

.page-th-thao__steps-list li::before {
    content: attr(data-step);
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--secondary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-th-thao__steps-list li:nth-child(1)::before { content: '1'; }
.page-th-thao__steps-list li:nth-child(2)::before { content: '2'; }
.page-th-thao__steps-list li:nth-child(3)::before { content: '3'; }
.page-th-thao__steps-list li:nth-child(4)::before { content: '4'; }

.page-th-thao__steps-list li h3 {
    color: var(--secondary-color);
    margin-top: 0;
    font-size: 1.5em;
}

.page-th-thao__steps-list li p {
    font-size: 1em;
    color: var(--text-dark);
    text-align: center;
}

.page-th-thao__button {
    display: inline-block;
    padding: 10px 25px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 30px;
    font-size: 1em;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s ease;
    border: 1px solid var(--secondary-color);
}

.page-th-thao__button:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Featured Sports Section */
.page-th-thao__featured-sports h2 {
    margin-bottom: 40px;
}

.page-th-thao__featured-sports p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-th-thao__sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-th-thao__sport-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-th-thao__sport-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-th-thao__sport-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-th-thao__sport-card h3 {
    font-size: 1.4em;
    margin: 20px 0 10px;
    text-align: center;
}

.page-th-thao__sport-card h3 a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-th-thao__sport-card h3 a:hover {
    color: var(--primary-color);
}

.page-th-thao__sport-card p {
    font-size: 0.95em;
    padding: 0 20px 20px;
    text-align: justify;
}

/* Expert Advice Section */
.page-th-thao__expert-advice h2 {
    margin-bottom: 40px;
}

.page-th-thao__expert-advice p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-th-thao__advice-list {
    list-style: none;
    padding: 0;
}

.page-th-thao__advice-list li {
    background-color: #ffffff;
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border-right: 5px solid var(--primary-color);
}

.page-th-thao__advice-list li h3 {
    text-align: left;
    color: var(--secondary-color);
    margin-top: 0;
    margin-bottom: 10px;
}

.page-th-thao__advice-list li p {
    text-align: left;
    margin-bottom: 0;
}

/* Final CTA Section */
.page-th-thao__cta-final {
    background: linear-gradient(135deg, var(--secondary-color), #3a0063);
    color: var(--text-light);
    text-align: center;
    padding: 80px 0;
}

.page-th-thao__cta-final-content {
    max-width: 900px;
}

.page-th-thao__cta-final h2 {
    color: var(--primary-color);
    font-size: 2.5em;
    margin-bottom: 25px;
    border-bottom: none;
}

.page-th-thao__cta-final p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: var(--text-light);
    text-align: center;
}

.page-th-thao__cta-button--large {
    padding: 18px 45px;
    font-size: 1.3em;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.page-th-thao__cta-button--large:hover {
    background: var(--text-light);
    color: var(--secondary-color);
    border-color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-th-thao h1 {
        font-size: 2.5em;
    }
    .page-th-thao h2 {
        font-size: 2em;
    }
    .page-th-thao h3 {
        font-size: 1.4em;
    }
    .page-th-thao__hero-content h1 {
        font-size: 3em;
    }
    .page-th-thao__hero-content p {
        font-size: 1.1em;
    }
    .page-th-thao__feature-icon {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .page-th-thao__section {
        padding: 40px 0;
    }
    .page-th-thao h1 {
        font-size: 2em;
    }
    .page-th-thao h2 {
        font-size: 1.8em;
    }
    .page-th-thao h3 {
        font-size: 1.3em;
    }
    .page-th-thao__hero-image {
        opacity: 0.25;
    }
    .page-th-thao__hero-content {
        padding: 30px 20px;
    }
    .page-th-thao__hero-content h1 {
        font-size: 2.5em;
    }
    .page-th-thao__hero-content p {
        font-size: 1em;
    }
    .page-th-thao__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-th-thao__features-grid,
    .page-th-thao__sports-grid,
    .page-th-thao__steps-list {
        grid-template-columns: 1fr;
    }
    .page-th-thao__feature-item,
    .page-th-thao__sport-card,
    .page-th-thao__list li,
    .page-th-thao__advice-list li,
    .page-th-thao__steps-list li {
        padding: 25px;
    }
    .page-th-thao__feature-icon {
        width: 80px;
        height: 80px;
    }
    .page-th-thao__sport-image {
        height: 180px;
    }
    .page-th-thao__cta-final h2 {
        font-size: 2em;
    }
    .page-th-thao__cta-final p {
        font-size: 1em;
    }
    .page-th-thao__cta-button--large {
        padding: 15px 35px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-th-thao h1 {
        font-size: 1.8em;
    }
    .page-th-thao h2 {
        font-size: 1.6em;
    }
    .page-th-thao__hero-content h1 {
        font-size: 2em;
    }
    .page-th-thao__hero-content p {
        font-size: 0.9em;
    }
    .page-th-thao__feature-item h3,
    .page-th-thao__sport-card h3,
    .page-th-thao__steps-list li h3,
    .page-th-thao__list li h3,
    .page-th-thao__advice-list li h3 {
        font-size: 1.2em;
    }
    .page-th-thao__sport-image {
        height: 150px;
    }
}