/* style/resources-78-win-vip-game-strategy.css */

:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --register-color: #C30808;
    --login-color: #C30808;
    --background-color: #FFFFFF;
    --register-login-font-color: #FFFF00;
    --text-dark: #333333;
    --text-light: #ffffff;
    --border-light: #e0e0e0;
}

.page-resources-78-win-vip-game-strategy {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-light); /* Default text color for the page, assuming dark body background */
    background-color: var(--dark-bg-1); /* Inherited from shared.css, typically dark */
}

.page-resources-78-win-vip-game-strategy__hero-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    background: linear-gradient(135deg, var(--primary-color), #005f2e);
}

.page-resources-78-win-vip-game-strategy__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-resources-78-win-vip-game-strategy__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.page-resources-78-win-vip-game-strategy__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 20px;
    color: var(--text-light);
}

.page-resources-78-win-vip-game-strategy__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-light);
}

.page-resources-78-win-vip-game-strategy__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--text-light);
}

.page-resources-78-win-vip-game-strategy__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-resources-78-win-vip-game-strategy__btn-primary,
.page-resources-78-win-vip-game-strategy__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    box-sizing: border-box;
    max-width: 100%;
}

.page-resources-78-win-vip-game-strategy__btn-primary {
    background: var(--register-color); /* Custom color for register */
    color: var(--register-login-font-color); /* Custom font color */
    border: 2px solid var(--register-color);
}

.page-resources-78-win-vip-game-strategy__btn-primary:hover {
    background: darken(var(--register-color), 10%);
    border-color: darken(var(--register-color), 10%);
}

.page-resources-78-win-vip-game-strategy__btn-secondary {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-resources-78-win-vip-game-strategy__btn-secondary:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.page-resources-78-win-vip-game-strategy__section {
    padding: 60px 0;
    background-color: var(--background-color); /* Default light background for content sections */
    color: var(--text-dark); /* Dark text on light background */
}

.page-resources-78-win-vip-game-strategy__introduction {
    background-color: var(--background-color);
}

.page-resources-78-win-vip-game-strategy__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-78-win-vip-game-strategy__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
}

.page-resources-78-win-vip-game-strategy__sub-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-resources-78-win-vip-game-strategy p {
    margin-bottom: 20px;
    font-size: 1.1em;
}

.page-resources-78-win-vip-game-strategy__list {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-resources-78-win-vip-game-strategy__list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-resources-78-win-vip-game-strategy__image-full-width {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-78-win-vip-game-strategy__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-78-win-vip-game-strategy__card {
    background: var(--secondary-color); /* White background for cards */
    color: var(--text-dark); /* Dark text on white background */
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-resources-78-win-vip-game-strategy__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-resources-78-win-vip-game-strategy__card-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-resources-78-win-vip-game-strategy__card-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-resources-78-win-vip-game-strategy__card-link:hover {
    background: darken(var(--primary-color), 10%);
}

.page-resources-78-win-vip-game-strategy__faq-list {
    margin-top: 40px;
}

.page-resources-78-win-vip-game-strategy__faq-item {
    background: var(--secondary-color);
    color: var(--text-dark);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-resources-78-win-vip-game-strategy__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    background-color: #f9f9f9;
    transition: background-color 0.3s ease;
}

.page-resources-78-win-vip-game-strategy__faq-question:hover {
    background-color: #f0f0f0;
}

.page-resources-78-win-vip-game-strategy__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-resources-78-win-vip-game-strategy__faq-item.active .page-resources-78-win-vip-game-strategy__faq-toggle {
    transform: rotate(45deg); /* Change to '−' visual */
}

.page-resources-78-win-vip-game-strategy__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px; /* Initial padding 0 */
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-resources-78-win-vip-game-strategy__faq-item.active .page-resources-78-win-vip-game-strategy__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show all content */
    padding: 15px 25px !important;
}

.page-resources-78-win-vip-game-strategy__faq-answer p {
    margin-bottom: 10px;
}

.page-resources-78-win-vip-game-strategy__cta-final {
    text-align: center;
    margin-top: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-78-win-vip-game-strategy__hero-title {
        font-size: 2.8em;
    }

    .page-resources-78-win-vip-game-strategy__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-resources-78-win-vip-game-strategy__hero-section {
        min-height: 450px;
        padding-top: var(--header-offset, 120px) !important;
    }

    .page-resources-78-win-vip-game-strategy__hero-title {
        font-size: 2.2em;
    }

    .page-resources-78-win-vip-game-strategy__hero-description {
        font-size: 1em;
    }

    .page-resources-78-win-vip-game-strategy__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-resources-78-win-vip-game-strategy__btn-primary,
    .page-resources-78-win-vip-game-strategy__btn-secondary {
        width: 100% !important;
        padding: 12px 20px;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    
    .page-resources-78-win-vip-game-strategy__cta-buttons, 
    .page-resources-78-win-vip-game-strategy__cta-final {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-resources-78-win-vip-game-strategy__section-title {
        font-size: 1.8em;
    }

    .page-resources-78-win-vip-game-strategy__sub-title {
        font-size: 1.5em;
    }

    .page-resources-78-win-vip-game-strategy p,
    .page-resources-78-win-vip-game-strategy__list li {
        font-size: 1em;
    }

    .page-resources-78-win-vip-game-strategy__card-grid {
        grid-template-columns: 1fr;
    }

    /* Images and Videos Responsive */
    .page-resources-78-win-vip-game-strategy img,
    .page-resources-78-win-vip-game-strategy video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-resources-78-win-vip-game-strategy__section,
    .page-resources-78-win-vip-game-strategy__card,
    .page-resources-78-win-vip-game-strategy__container,
    .page-resources-78-win-vip-game-strategy__hero-image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .page-resources-78-win-vip-game-strategy__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }

    .page-resources-78-win-vip-game-strategy__faq-answer {
        padding: 0 20px;
    }

    .page-resources-78-win-vip-game-strategy__faq-item.active .page-resources-78-win-vip-game-strategy__faq-answer {
        padding: 15px 20px !important;
    }
}

@media (max-width: 480px) {
    .page-resources-78-win-vip-game-strategy__hero-title {
        font-size: 1.8em;
    }

    .page-resources-78-win-vip-game-strategy__section-title {
        font-size: 1.5em;
    }
}