.page-xvipwinapk {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.page-xvipwinapk__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.page-xvipwinapk__hero-section {
    position: relative;
    text-align: center;
    background-color: #1a202c;
    padding-top: 10px; /* Adjusted for shared header offset */
    padding-bottom: 40px;
    color: #ffffff;
}

.page-xvipwinapk__hero-banner {
    width: 100%;
    overflow: hidden;
}

.page-xvipwinapk__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 20px;
}

.page-xvipwinapk__hero-content {
    padding: 0 20px;
    max-width: 800px;
    margin: 0 auto;
}

.page-xvipwinapk__main-title {
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #ffffff;
}

.page-xvipwinapk__subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e2e8f0;
}

.page-xvipwinapk__btn-primary {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
}

.page-xvipwinapk__btn-primary:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
}

.page-xvipwinapk__btn-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #2563eb;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    border: 2px solid #2563eb;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
}

.page-xvipwinapk__btn-secondary:hover {
    background-color: #2563eb;
    color: #ffffff;
}

.page-xvipwinapk__about-section,
.page-xvipwinapk__features-section,
.page-xvipwinapk__game-showcase,
.page-xvipwinapk__download-guide-section,
.page-xvipwinapk__promotions-section,
.page-xvipwinapk__faq-section,
.page-xvipwinapk__cta-section {
    padding: 60px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

.page-xvipwinapk__section-title {
    font-size: 2.2em;
    color: #2563eb;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.page-xvipwinapk__text-block {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.page-xvipwinapk__text-block a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.page-xvipwinapk__text-block a:hover {
    text-decoration: underline;
}

.page-xvipwinapk__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-xvipwinapk__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.page-xvipwinapk__feature-item {
    background-color: #f0f4f8;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-xvipwinapk__feature-item:hover {
    transform: translateY(-5px);
}

.page-xvipwinapk__feature-heading {
    font-size: 1.5em;
    color: #2563eb;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-xvipwinapk__feature-description {
    font-size: 1em;
    color: #4a5568;
}

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

.page-xvipwinapk__game-card {
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding-bottom: 20px;
}

.page-xvipwinapk__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}

.page-xvipwinapk__game-title {
    font-size: 1.6em;
    color: #2563eb;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-xvipwinapk__game-description {
    font-size: 0.95em;
    color: #64748b;
    margin-bottom: 20px;
    padding: 0 15px;
}

.page-xvipwinapk__guide-list {
    list-style: none;
    counter-reset: guide-step;
    padding: 0;
}

.page-xvipwinapk__guide-item {
    position: relative;
    background-color: #f0f4f8;
    margin-bottom: 25px;
    padding: 25px 30px 25px 70px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-xvipwinapk__guide-item::before {
    counter-increment: guide-step;
    content: counter(guide-step);
    position: absolute;
    left: 25px;
    top: 25px;
    background-color: #2563eb;
    color: #ffffff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.2em;
}

.page-xvipwinapk__guide-step-title {
    font-size: 1.4em;
    color: #2563eb;
    margin-bottom: 10px;
}

.page-xvipwinapk__guide-description {
    font-size: 1em;
    color: #4a5568;
}

.page-xvipwinapk__btn-full-width {
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.page-xvipwinapk__promotion-card {
    background-color: #f0f4f8;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.page-xvipwinapk__promotion-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 25px;
}

.page-xvipwinapk__promotion-title {
    font-size: 1.8em;
    color: #2563eb;
    margin-bottom: 15px;
}

.page-xvipwinapk__promotion-description {
    font-size: 1.1em;
    color: #4a5568;
    margin-bottom: 30px;
}

.page-xvipwinapk__faq-list {
    margin-top: 30px;
}

.page-xvipwinapk__faq-item {
    background-color: #f0f4f8;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-xvipwinapk__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #e2e8f0;
    font-size: 1.2em;
    font-weight: 600;
    color: #2d3748;
    transition: background-color 0.3s ease;
    user-select: none;
}

.page-xvipwinapk__faq-question:hover {
    background-color: #d1d9e0;
}

.page-xvipwinapk__faq-item.active .page-xvipwinapk__faq-question {
    background-color: #2563eb;
    color: #ffffff;
}

.page-xvipwinapk__faq-qtext {
    pointer-events: none; /* Prevent text from blocking click event */
}

.page-xvipwinapk__faq-toggle {
    font-size: 1.5em;
    font-weight: 700;
    pointer-events: none; /* Prevent icon from blocking click event */
    transition: transform 0.3s ease;
}

.page-xvipwinapk__faq-item.active .page-xvipwinapk__faq-toggle {
    transform: rotate(45deg);
}

.page-xvipwinapk__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    background-color: #f8f9fa;
}

.page-xvipwinapk__faq-item.active .page-xvipwinapk__faq-answer {
    max-height: 2000px !important;
    padding: 20px 25px !important;
    opacity: 1;
}

.page-xvipwinapk__faq-answer p {
    margin: 0;
    color: #4a5568;
    font-size: 1em;
    line-height: 1.7;
}

.page-xvipwinapk__faq-answer a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.page-xvipwinapk__faq-answer a:hover {
    text-decoration: underline;
}

.page-xvipwinapk__cta-section {
    text-align: center;
    background-color: #1a202c;
    color: #ffffff;
    padding: 80px 0;
}

.page-xvipwinapk__cta-section .page-xvipwinapk__section-title {
    color: #ffffff;
}

.page-xvipwinapk__cta-section .page-xvipwinapk__text-block {
    color: #e2e8f0;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-xvipwinapk__copyright {
    margin-top: 60px;
    font-size: 0.9em;
    color: #a0aec0;
}

.page-xvipwinapk__floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    overflow: hidden;
    animation: pulse 2s infinite;
}

.page-xvipwinapk__floating-link {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2563eb;
    color: #ffffff;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.page-xvipwinapk__floating-link:hover {
    background-color: #1e40af;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* =======================================
   Mobile Responsive Styles (max-width: 768px)
   ======================================= */
@media (max-width: 768px) {
    .page-xvipwinapk__container {
        padding: 15px;
    }

    .page-xvipwinapk__hero-section {
        padding-top: 10px !important;
        padding-bottom: 20px;
    }

    .page-xvipwinapk__main-title {
        font-size: 2em;
        line-height: 1.3;
    }

    .page-xvipwinapk__subtitle {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .page-xvipwinapk__btn-primary,
    .page-xvipwinapk__btn-secondary,
    .page-xvipwinapk a[class*="button"],
    .page-xvipwinapk a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 15px;
    }

    .page-xvipwinapk__btn-primary:last-child,
    .page-xvipwinapk__btn-secondary:last-child {
        margin-bottom: 0;
    }

    .page-xvipwinapk__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-xvipwinapk__text-block {
        font-size: 0.95em;
        text-align: left;
    }

    .page-xvipwinapk img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-xvipwinapk__image-wrapper,
    .page-xvipwinapk__game-card,
    .page-xvipwinapk__promotion-card,
    .page-xvipwinapk__feature-item,
    .page-xvipwinapk__guide-item,
    .page-xvipwinapk__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-xvipwinapk__feature-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-xvipwinapk__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-xvipwinapk__game-image {
        height: 180px;
    }

    .page-xvipwinapk__guide-item {
        padding: 20px 20px 20px 60px;
    }

    .page-xvipwinapk__guide-item::before {
        left: 15px;
        top: 20px;
        width: 30px;
        height: 30px;
        font-size: 1em;
    }

    .page-xvipwinapk__guide-step-title {
        font-size: 1.2em;
    }

    .page-xvipwinapk__promotion-title {
        font-size: 1.5em;
    }

    .page-xvipwinapk__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }

    .page-xvipwinapk__faq-answer {
        padding: 15px 20px;
    }

    .page-xvipwinapk__faq-item.active .page-xvipwinapk__faq-answer {
        padding: 15px 20px !important;
    }

    .page-xvipwinapk__floating-button {
        bottom: 15px;
        right: 15px;
    }

    .page-xvipwinapk__floating-link {
        padding: 10px 20px;
        font-size: 0.95em;
    }

    .page-xvipwinapk__cta-section {
        padding: 40px 0;
    }

    .page-xvipwinapk__copyright {
        margin-top: 40px;
    }
}