/* style/index-zowin88-latest-promotions.css */

/* Biến CSS */
:root {
    --primary-color: #1A2B4C;
    --secondary-color: #FFD700;
    --text-dark: #333;
    --text-light: #f4f4f4;
    --bg-light: #ffffff;
    --bg-dark: #0f1a2e;
    --border-color: #ddd;
}

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

.page-index-zowin88-latest-promotions .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-index-zowin88-latest-promotions .section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
    position: relative;
}

.page-index-zowin88-latest-promotions .section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.page-index-zowin88-latest-promotions .sub-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-index-zowin88-latest-promotions p {
    margin-bottom: 15px;
    color: #555;
}

.page-index-zowin88-latest-promotions a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-index-zowin88-latest-promotions a:hover {
    color: var(--secondary-color);
}

.page-index-zowin88-latest-promotions .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    text-transform: uppercase;
}

.page-index-zowin88-latest-promotions .primary-btn {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
}

.page-index-zowin88-latest-promotions .primary-btn:hover {
    background-color: #e6c200;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.page-index-zowin88-latest-promotions .secondary-btn {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.page-index-zowin88-latest-promotions .secondary-btn:hover {
    background-color: #0f1a2e;
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Hero Section */
.page-index-zowin88-latest-promotions .hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a5078 100%);
    color: var(--text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-zowin88-latest-promotions .hero-section .container {
    position: relative;
    z-index: 2;
}

.page-index-zowin88-latest-promotions .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-zowin88-latest-promotions .hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
}

.page-index-zowin88-latest-promotions .hero-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

/* Promo Intro Section */
.page-index-zowin88-latest-promotions .promo-intro-section {
    padding: 60px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.page-index-zowin88-latest-promotions .promo-intro-section .feature-image {
    max-width: 800px;
    width: 100%;
    height: auto;
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Current Promotions Section */
.page-index-zowin88-latest-promotions .current-promotions-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-index-zowin88-latest-promotions .promotion-card {
    display: flex;
    align-items: center;
    background-color: var(--bg-light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.page-index-zowin88-latest-promotions .promotion-card:hover {
    transform: translateY(-5px);
}

.page-index-zowin88-latest-promotions .promotion-card.reverse {
    flex-direction: row-reverse;
}

.page-index-zowin88-latest-promotions .promo-card-image {
    width: 40%;
    height: 300px;
    object-fit: cover;
}

.page-index-zowin88-latest-promotions .promo-card-content {
    width: 60%;
    padding: 30px;
}

.page-index-zowin88-latest-promotions .promo-card-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-index-zowin88-latest-promotions .promo-card-description {
    color: #666;
    margin-bottom: 20px;
}

.page-index-zowin88-latest-promotions .promo-details-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-index-zowin88-latest-promotions .promo-details-list li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    color: #444;
}

.page-index-zowin88-latest-promotions .promo-details-list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* How to Claim Section */
.page-index-zowin88-latest-promotions .how-to-claim-section {
    padding: 60px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.page-index-zowin88-latest-promotions .steps-list {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    max-width: 800px;
    text-align: left;
}

.page-index-zowin88-latest-promotions .steps-list li {
    background-color: #f0f5f9;
    border-left: 5px solid var(--secondary-color);
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 1.1em;
    color: var(--text-dark);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-index-zowin88-latest-promotions .steps-list li strong {
    color: var(--primary-color);
}

.page-index-zowin88-latest-promotions .process-image {
    max-width: 700px;
    width: 100%;
    height: auto;
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Terms & Conditions Section */
.page-index-zowin88-latest-promotions .terms-conditions-section {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.page-index-zowin88-latest-promotions .terms-conditions-section .section-title {
    color: var(--secondary-color);
}

.page-index-zowin88-latest-promotions .terms-conditions-section .section-title::after {
    background-color: var(--text-light);
}

.page-index-zowin88-latest-promotions .terms-content {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.page-index-zowin88-latest-promotions .terms-content h3 {
    color: var(--secondary-color);
    margin-top: 20px;
}

.page-index-zowin88-latest-promotions .terms-content p,
.page-index-zowin88-latest-promotions .terms-content ul li {
    color: var(--text-light);
}

.page-index-zowin88-latest-promotions .terms-content ul {
    list-style: disc;
    margin-left: 20px;
}

.page-index-zowin88-latest-promotions .terms-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    z-index: 0;
}

/* FAQ Section */
.page-index-zowin88-latest-promotions .faq-section {
    padding: 60px 0;
    background-color: #f0f5f9;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-zowin88-latest-promotions .faq-item {
    background-color: var(--bg-light);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
    margin: 0 auto 20px auto;
    max-width: 800px;
    text-align: left;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.page-index-zowin88-latest-promotions .faq-question {
    font-size: 1.3em;
    color: var(--primary-color);
    padding: 18px 25px;
    cursor: pointer;
    margin: 0;
    position: relative;
    transition: background-color 0.3s ease;
}

.page-index-zowin88-latest-promotions .faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: var(--secondary-color);
}

.page-index-zowin88-latest-promotions .faq-question.active::after {
    content: '-';
}

.page-index-zowin88-latest-promotions .faq-answer {
    padding: 0 25px 20px 25px;
    color: #666;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-index-zowin88-latest-promotions .faq-answer.active {
    max-height: 200px; /* Adjust based on expected content length */
    padding-top: 10px;
}

.page-index-zowin88-latest-promotions .faq-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: auto;
    opacity: 0.1;
    z-index: 0;
}

/* CTA Section */
.page-index-zowin88-latest-promotions .cta-section {
    background: linear-gradient(45deg, var(--primary-color), #3a5078);
    color: var(--text-light);
    padding: 80px 0;
    text-align: center;
}

.page-index-zowin88-latest-promotions .cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.page-index-zowin88-latest-promotions .cta-description {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: var(--text-light);
}

.page-index-zowin88-latest-promotions .cta-buttons .btn {
    margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-zowin88-latest-promotions .hero-title {
        font-size: 2.8em;
    }

    .page-index-zowin88-latest-promotions .section-title {
        font-size: 2em;
    }

    .page-index-zowin88-latest-promotions .promotion-card {
        flex-direction: column;
    }

    .page-index-zowin88-latest-promotions .promotion-card.reverse {
        flex-direction: column;
    }

    .page-index-zowin88-latest-promotions .promo-card-image,
    .page-index-zowin88-latest-promotions .promo-card-content {
        width: 100%;
    }

    .page-index-zowin88-latest-promotions .promo-card-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .page-index-zowin88-latest-promotions .hero-section {
        padding: 60px 0;
    }

    .page-index-zowin88-latest-promotions .hero-title {
        font-size: 2.2em;
    }

    .page-index-zowin88-latest-promotions .hero-description {
        font-size: 1em;
    }

    .page-index-zowin88-latest-promotions .section-title {
        font-size: 1.8em;
    }

    .page-index-zowin88-latest-promotions .cta-title {
        font-size: 2.2em;
    }

    .page-index-zowin88-latest-promotions .cta-description {
        font-size: 1em;
    }

    .page-index-zowin88-latest-promotions .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-index-zowin88-latest-promotions .cta-buttons .btn {
        margin: 0;
        width: 80%;
        max-width: 300px;
    }

    .page-index-zowin88-latest-promotions .faq-image {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .page-index-zowin88-latest-promotions .hero-title {
        font-size: 1.8em;
    }

    .page-index-zowin88-latest-promotions .section-title {
        font-size: 1.5em;
    }

    .page-index-zowin88-latest-promotions .promo-card-title {
        font-size: 1.5em;
    }

    .page-index-zowin88-latest-promotions .promo-card-content {
        padding: 20px;
    }

    .page-index-zowin88-latest-promotions .faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-index-zowin88-latest-promotions .faq-question::after {
        right: 15px;
    }

    .page-index-zowin88-latest-promotions .faq-answer {
        padding: 0 20px 15px 20px;
    }
}