/* style/th-thao-betting-guide.css */
:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #DC143C; /* Deep Red */
    --text-dark: #2c3e50; /* Very Dark Blue for text on light backgrounds */
    --text-light: #ecf0f1; /* Light Gray for text on dark backgrounds */
    --background-dark: #1a1a1a; /* Dark background */
    --background-light: #f5f5f5; /* Light background */
    --border-color: #333;
    --shadow-color: rgba(0, 0, 0, 0.2);
}

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

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

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

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

.page-th-thao-betting-guide h2 {
    font-size: 2.2em;
    color: var(--secondary-color);
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 10px;
    margin-top: 40px;
}

.page-th-thao-betting-guide h3 {
    font-size: 1.8em;
    color: var(--text-dark);
}

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

.page-th-thao-betting-guide .cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-th-thao-betting-guide .cta-button:hover {
    background: var(--primary-color);
    color: var(--text-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-th-thao-betting-guide .button-link {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
}

.page-th-thao-betting-guide .button-link:hover {
    background: var(--secondary-color);
    color: var(--text-light);
}

/* Hero Section */
.page-th-thao-betting-guide .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, #2c3e50, #1a1a1a);
    color: var(--text-light);
}

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

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

.page-th-thao-betting-guide .hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

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

.page-th-thao-betting-guide .hero-content h1 {
    color: var(--primary-color);
    font-size: 3.5em;
    margin-bottom: 20px;
}

.page-th-thao-betting-guide .hero-content p {
    font-size: 1.3em;
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: var(--text-light);
}

/* Intro Section */
.page-th-thao-betting-guide .section-intro {
    padding: 60px 0;
    background-color: var(--background-light);
}

.page-th-thao-betting-guide .section-intro p {
    font-size: 1.1em;
    color: var(--text-dark);
}

/* Bet Types Section */
.page-th-thao-betting-guide .section-bet-types {
    padding: 60px 0;
    background-color: var(--background-dark);
    color: var(--text-light);
}

.page-th-thao-betting-guide .section-bet-types h2 {
    color: var(--primary-color);
}

.page-th-thao-betting-guide .section-bet-types h3 {
    color: var(--primary-color);
}

.page-th-thao-betting-guide .section-bet-types p {
    color: var(--text-light);
}

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

.page-th-thao-betting-guide .bet-type-item {
    background-color: #333;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-th-thao-betting-guide .bet-type-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.page-th-thao-betting-guide .bet-type-item img {
    width: 100%;
    max-width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Guide Section */
.page-th-thao-betting-guide .section-guide {
    padding: 60px 0;
    background-color: var(--background-light);
}

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

.page-th-thao-betting-guide .betting-steps li {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-th-thao-betting-guide .betting-steps li h3 {
    color: var(--secondary-color);
    font-size: 1.6em;
    margin-bottom: 10px;
    text-align: left;
}

.page-th-thao-betting-guide .betting-steps li p {
    color: var(--text-dark);
    margin-bottom: 15px;
}

/* Strategies Section */
.page-th-thao-betting-guide .section-strategies {
    padding: 60px 0;
    background-color: var(--background-dark);
    color: var(--text-light);
}

.page-th-thao-betting-guide .section-strategies h2 {
    color: var(--primary-color);
}

.page-th-thao-betting-guide .section-strategies h3 {
    color: var(--primary-color);
}

.page-th-thao-betting-guide .section-strategies p {
    color: var(--text-light);
}

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

.page-th-thao-betting-guide .strategy-item {
    background-color: #333;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-th-thao-betting-guide .strategy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.page-th-thao-betting-guide .strategy-item img {
    width: 100%;
    max-width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Popular Sports Section */
.page-th-thao-betting-guide .section-popular-sports {
    padding: 60px 0;
    background-color: var(--background-light);
}

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

.page-th-thao-betting-guide .sport-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-th-thao-betting-guide .sport-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-th-thao-betting-guide .sport-item img {
    width: 100%;
    max-width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-th-thao-betting-guide .sport-item h3 {
    color: var(--secondary-color);
}

/* Advantages Section */
.page-th-thao-betting-guide .section-advantages {
    padding: 60px 0;
    background-color: var(--background-dark);
    color: var(--text-light);
}

.page-th-thao-betting-guide .section-advantages h2 {
    color: var(--primary-color);
}

.page-th-thao-betting-guide .section-advantages ul {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-th-thao-betting-guide .section-advantages li {
    background-color: #333;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    font-size: 1.1em;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 15px;
}

.page-th-thao-betting-guide .section-advantages li strong {
    color: var(--primary-color);
    font-size: 1.2em;
}

/* Promotions Section */
.page-th-thao-betting-guide .section-promotions {
    padding: 60px 0;
    background-color: var(--background-light);
}

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

.page-th-thao-betting-guide .promo-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-th-thao-betting-guide .promo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-th-thao-betting-guide .promo-item img {
    width: 100%;
    max-width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-th-thao-betting-guide .promo-item h3 {
    color: var(--secondary-color);
}

/* FAQ Section */
.page-th-thao-betting-guide .section-faq {
    padding: 60px 0;
    background-color: var(--background-dark);
    color: var(--text-light);
}

.page-th-thao-betting-guide .section-faq h2 {
    color: var(--primary-color);
}

.page-th-thao-betting-guide .faq-list {
    margin-top: 40px;
}

.page-th-thao-betting-guide .faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-th-thao-betting-guide .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #333;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-th-thao-betting-guide .faq-question:hover {
    background: #444;
}

.page-th-thao-betting-guide .faq-question h3 {
    margin: 0;
    font-size: 1.3em;
    color: var(--primary-color);
    text-align: left;
}

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

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

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

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

.page-th-thao-betting-guide .faq-answer p {
    margin-bottom: 15px;
    color: var(--text-light);
}

/* Conclusion Section */
.page-th-thao-betting-guide .section-conclusion {
    padding: 60px 0 80px 0;
    background-color: var(--background-light);
    text-align: center;
}

.page-th-thao-betting-guide .section-conclusion p {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 20px auto;
    color: var(--text-dark);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-th-thao-betting-guide .hero-content h1 {
        font-size: 3em;
    }
    .page-th-thao-betting-guide h2 {
        font-size: 2em;
    }
    .page-th-thao-betting-guide h3 {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-th-thao-betting-guide .hero-section {
        padding: 40px 15px;
    }
    .page-th-thao-betting-guide .hero-content h1 {
        font-size: 2.5em;
    }
    .page-th-thao-betting-guide .hero-content p {
        font-size: 1.1em;
    }
    .page-th-thao-betting-guide .cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
    .page-th-thao-betting-guide h2 {
        font-size: 1.8em;
    }
    .page-th-thao-betting-guide h3 {
        font-size: 1.4em;
    }
    .page-th-thao-betting-guide p {
        font-size: 1em;
    }
    .page-th-thao-betting-guide .bet-type-grid,
    .page-th-thao-betting-guide .strategy-grid,
    .page-th-thao-betting-guide .sports-grid,
    .page-th-thao-betting-guide .promo-grid {
        grid-template-columns: 1fr;
    }
    .page-th-thao-betting-guide .betting-steps li,
    .page-th-thao-betting-guide .section-advantages li {
        padding: 20px;
    }
    .page-th-thao-betting-guide .faq-question {
        padding: 15px 20px;
    }
    .page-th-thao-betting-guide .faq-question h3 {
        font-size: 1.1em;
    }
    .page-th-thao-betting-guide .faq-answer {
        padding: 0 20px;
    }
    .page-th-thao-betting-guide .faq-item.active .faq-answer {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .page-th-thao-betting-guide .hero-content h1 {
        font-size: 2em;
    }
    .page-th-thao-betting-guide .hero-content p {
        font-size: 0.9em;
    }
    .page-th-thao-betting-guide .cta-button {
        padding: 10px 25px;
        font-size: 0.9em;
    }
    .page-th-thao-betting-guide h2 {
        font-size: 1.5em;
    }
    .page-th-thao-betting-guide h3 {
        font-size: 1.2em;
    }
    .page-th-thao-betting-guide p {
        font-size: 0.9em;
    }
    .page-th-thao-betting-guide .faq-question h3 {
        font-size: 1em;
    }
}