/* style/resources-vn68-club-app-guide.css */

/* Variables for consistency */
:root {
    --page-primary-color: #1A202C;
    --page-accent-color: #FFD700;
    --page-text-light: #F8F8F8;
    --page-text-dark: #333333;
    --page-background-dark: #1A202C;
    --page-background-light: #ffffff;
    --page-border-color: #e0e0e0;
}

.page-resources-vn68-club-app-guide {
    font-family: 'Arial', sans-serif;
    color: var(--page-text-dark);
    line-height: 1.6;
    background-color: var(--page-background-light);
}

.page-resources-vn68-club-app-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-vn68-club-app-guide__hero {
    background: linear-gradient(135deg, var(--page-background-dark) 0%, #3a414e 100%); /* Darker gradient for hero */
    color: var(--page-text-light);
    padding: 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.page-resources-vn68-club-app-guide__hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-resources-vn68-club-app-guide__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--page-accent-color);
    line-height: 1.2;
}

.page-resources-vn68-club-app-guide__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-resources-vn68-club-app-guide__cta-button {
    display: inline-block;
    background-color: var(--page-accent-color);
    color: var(--page-primary-color);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-resources-vn68-club-app-guide__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-3px);
}

.page-resources-vn68-club-app-guide__hero-image-wrapper {
    max-width: 600px;
    margin-top: 40px;
}

.page-resources-vn68-club-app-guide__hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-vn68-club-app-guide__section {
    padding: 60px 0;
    border-bottom: 1px solid var(--page-border-color);
}

.page-resources-vn68-club-app-guide__section:last-of-type {
    border-bottom: none;
}

.page-resources-vn68-club-app-guide__section-title {
    font-size: 2.5em;
    color: var(--page-primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-resources-vn68-club-app-guide__section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: var(--page-accent-color);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    border-radius: 2px;
}

.page-resources-vn68-club-app-guide__introduction p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-resources-vn68-club-app-guide__subsection-title {
    font-size: 1.8em;
    color: var(--page-primary-color);
    margin-top: 35px;
    margin-bottom: 20px;
    border-left: 5px solid var(--page-accent-color);
    padding-left: 15px;
}

.page-resources-vn68-club-app-guide__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-resources-vn68-club-app-guide__list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-resources-vn68-club-app-guide__ordered-list {
    list-style: decimal inside;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-resources-vn68-club-app-guide__ordered-list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-resources-vn68-club-app-guide__platform-guide {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.page-resources-vn68-club-app-guide__platform-item {
    background-color: var(--page-background-light);
    border: 1px solid var(--page-border-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 45%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-resources-vn68-club-app-guide__platform-title {
    font-size: 1.5em;
    color: var(--page-primary-color);
    margin-bottom: 15px;
}

.page-resources-vn68-club-app-guide__qr-code {
    width: 150px;
    height: 150px;
    margin: 20px auto;
    display: block;
    border: 1px solid var(--page-border-color);
    border-radius: 5px;
}

.page-resources-vn68-club-app-guide__download-button {
    display: block;
    width: fit-content;
    margin: 25px auto 0;
    background-color: var(--page-primary-color);
    color: var(--page-accent-color);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-resources-vn68-club-app-guide__download-button:hover {
    background-color: #0d1016;
}

.page-resources-vn68-club-app-guide__download-button--android {
    background-color: #3DDC84; /* Android green */
    color: var(--page-primary-color);
}

.page-resources-vn68-club-app-guide__download-button--android:hover {
    background-color: #2fb86c;
}

.page-resources-vn68-club-app-guide__download-button--ios {
    background-color: #007AFF; /* iOS blue */
    color: var(--page-text-light);
}

.page-resources-vn68-club-app-guide__download-button--ios:hover {
    background-color: #005cc4;
}

.page-resources-vn68-club-app-guide__installation-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.page-resources-vn68-club-app-guide__step-item {
    background-color: var(--page-background-light);
    border: 1px solid var(--page-border-color);
    border-radius: 10px;
    padding: 30px;
    flex: 1;
    min-width: 280px;
    max-width: 45%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-resources-vn68-club-app-guide__step-title {
    font-size: 1.5em;
    color: var(--page-primary-color);
    margin-bottom: 15px;
}

.page-resources-vn68-club-app-guide__image-full-width {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-vn68-club-app-guide__faq-item {
    background-color: #f9f9f9;
    border: 1px solid var(--page-border-color);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
}

.page-resources-vn68-club-app-guide__faq-question {
    font-size: 1.3em;
    color: var(--page-primary-color);
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-resources-vn68-club-app-guide__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-resources-vn68-club-app-guide__faq-question.active::after {
    transform: rotate(45deg);
}

.page-resources-vn68-club-app-guide__faq-answer {
    font-size: 1.05em;
    color: var(--page-text-dark);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.page-resources-vn68-club-app-guide__faq-answer.open {
    max-height: 200px; /* Adjust as needed */
    padding-top: 10px;
}

.page-resources-vn68-club-app-guide__conclusion .page-resources-vn68-club-app-guide__cta-button--final {
    margin-top: 40px;
    background-color: var(--page-accent-color);
    color: var(--page-primary-color);
    font-size: 1.2em;
    padding: 18px 35px;
}

.page-resources-vn68-club-app-guide__conclusion .page-resources-vn68-club-app-guide__cta-button--final:hover {
    background-color: #e6c200;
    transform: translateY(-5px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-resources-vn68-club-app-guide__hero {
        padding: 60px 0;
        flex-direction: column;
        gap: 20px;
    }

    .page-resources-vn68-club-app-guide__hero-title {
        font-size: 2.5em;
    }

    .page-resources-vn68-club-app-guide__hero-description {
        font-size: 1.1em;
    }

    .page-resources-vn68-club-app-guide__section-title {
        font-size: 2em;
    }

    .page-resources-vn68-club-app-guide__subsection-title {
        font-size: 1.6em;
    }

    .page-resources-vn68-club-app-guide__platform-guide,
    .page-resources-vn68-club-app-guide__installation-steps {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .page-resources-vn68-club-app-guide__platform-item,
    .page-resources-vn68-club-app-guide__step-item {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .page-resources-vn68-club-app-guide__hero-title {
        font-size: 2em;
    }

    .page-resources-vn68-club-app-guide__hero-description {
        font-size: 1em;
    }

    .page-resources-vn68-club-app-guide__section-title {
        font-size: 1.8em;
    }

    .page-resources-vn68-club-app-guide__subsection-title {
        font-size: 1.4em;
    }

    .page-resources-vn68-club-app-guide__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-resources-vn68-club-app-guide__section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .page-resources-vn68-club-app-guide__hero {
        padding: 40px 0;
    }

    .page-resources-vn68-club-app-guide__hero-title {
        font-size: 1.8em;
    }

    .page-resources-vn68-club-app-guide__hero-description {
        font-size: 0.95em;
    }

    .page-resources-vn68-club-app-guide__section-title {
        font-size: 1.6em;
    }

    .page-resources-vn68-club-app-guide__subsection-title {
        font-size: 1.3em;
    }

    .page-resources-vn68-club-app-guide__platform-item,
    .page-resources-vn68-club-app-guide__step-item {
        padding: 20px;
    }

    .page-resources-vn68-club-app-guide__download-button {
        font-size: 0.9em;
        padding: 10px 20px;
    }

    .page-resources-vn68-club-app-guide__list,
    .page-resources-vn68-club-app-guide__ordered-list {
        margin-left: 10px;
    }

    .page-resources-vn68-club-app-guide__list li,
    .page-resources-vn68-club-app-guide__ordered-list li,
    .page-resources-vn68-club-app-guide__faq-answer {
        font-size: 0.95em;
    }

    .page-resources-vn68-club-app-guide__faq-question {
        font-size: 1.1em;
    }
}