:root {
    --primary-color: #FFD700;
    --secondary-color: #8B0000;
    --text-color-dark-bg: #ffffff;
    --text-color-light-bg: #333333;
    --background-color-dark: #000;
    --card-bg-dark-theme: rgba(255, 255, 255, 0.08);
    --border-color-dark-theme: rgba(255, 255, 255, 0.15);
}

/* Base styles for the page content, ensuring contrast with dark body background */
.page-resources-gamvip-club-advantages {
    background-color: var(--background-color-dark);
    color: var(--text-color-dark-bg);
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    padding-bottom: 60px; /* Ensure space above footer */
}

.page-resources-gamvip-club-advantages__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Video Section */
.page-resources-gamvip-club-advantages__video-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    padding-top: 10px; /* Desktop: Adjust for fixed header */
    background-color: var(--background-color-dark);
}

.page-resources-gamvip-club-advantages__video-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-resources-gamvip-club-advantages__video-link {
    display: block;
    text-decoration: none;
    position: relative;
    width: 100%;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-gamvip-club-advantages__video-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-resources-gamvip-club-advantages__video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.page-resources-gamvip-club-advantages__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
    object-fit: cover;
    pointer-events: none; /* Prevent video controls from blocking click event */
}

.page-resources-gamvip-club-advantages__video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.page-resources-gamvip-club-advantages__video-link:hover .page-resources-gamvip-club-advantages__video-overlay {
    opacity: 1;
}

.page-resources-gamvip-club-advantages__video-click-hint {
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    background: rgba(255, 215, 0, 0.8);
    border-radius: 5px;
    white-space: nowrap;
}

.page-resources-gamvip-club-advantages__video-cta {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.page-resources-gamvip-club-advantages__play-now-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color, #FFD700);
    color: var(--text-color-light-bg, #333333); /* Ensure contrast */
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.page-resources-gamvip-club-advantages__play-now-button:hover {
    background: var(--secondary-color, #8B0000);
    color: var(--text-color-dark-bg, #ffffff); /* Ensure contrast */
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-resources-gamvip-club-advantages__play-now-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Title Section */
.page-resources-gamvip-club-advantages__title-section {
    background-color: var(--background-color-dark);
    padding: 80px 20px;
    text-align: center;
    color: var(--text-color-dark-bg);
}

.page-resources-gamvip-club-advantages__title-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-resources-gamvip-club-advantages__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-resources-gamvip-club-advantages__title-description {
    font-size: 1.1em;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.page-resources-gamvip-club-advantages__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-resources-gamvip-club-advantages__cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: var(--secondary-color, #8B0000);
    color: var(--text-color-dark-bg, #ffffff);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--secondary-color);
    white-space: nowrap;
}

.page-resources-gamvip-club-advantages__cta-button:hover {
    background: var(--primary-color, #FFD700);
    color: var(--text-color-light-bg, #333333);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Content Area */
.page-resources-gamvip-club-advantages__content-area {
    padding: 80px 20px;
    background-color: var(--background-color-dark);
    color: var(--text-color-dark-bg);
}

.page-resources-gamvip-club-advantages__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.4);
}

.page-resources-gamvip-club-advantages__paragraph {
    font-size: 1.05em;
    margin-bottom: 25px;
    text-align: justify;
    color: rgba(255, 255, 255, 0.85);
}

.page-resources-gamvip-club-advantages__text-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-resources-gamvip-club-advantages__text-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-resources-gamvip-club-advantages__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-gamvip-club-advantages__feature-card {
    background-color: var(--card-bg-dark-theme);
    border: 1px solid var(--border-color-dark-theme);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.page-resources-gamvip-club-advantages__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-gamvip-club-advantages__feature-image {
    width: 100%; /* Ensure image fills card width */
    max-width: 300px; /* Max size for feature images */
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    aspect-ratio: 4/3; /* Maintain aspect ratio */
}

.page-resources-gamvip-advantages__feature-card-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-resources-gamvip-club-advantages__feature-card p {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

/* FAQ Section */
.page-resources-gamvip-club-advantages__faq-section {
    padding: 80px 20px;
    background-color: var(--background-color-dark);
    color: var(--text-color-dark-bg);
}

.page-resources-gamvip-club-advantages__faq-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.4);
}

.page-resources-gamvip-club-advantages__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-resources-gamvip-club-advantages__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid var(--border-color-dark-theme);
    background-color: var(--card-bg-dark-theme);
}

.page-resources-gamvip-club-advantages__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.page-resources-gamvip-club-advantages__faq-question:hover {
    background: rgba(255, 255, 255, 0.1);
}

.page-resources-gamvip-club-advantages__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 1.15em;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text-color-dark-bg);
    pointer-events: none; /* Prevent h3 from blocking click event */
}

.page-resources-gamvip-club-advantages__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: var(--primary-color);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    pointer-events: none; /* Prevent icon from blocking click event */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.page-resources-gamvip-club-advantages__faq-item.active .page-resources-gamvip-club-advantages__faq-toggle {
    color: var(--secondary-color);
    transform: rotate(45deg); /* Change to X or rotate for minus */
}

.page-resources-gamvip-club-advantages__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    padding: 0 20px;
    opacity: 0;
    color: rgba(255, 255, 255, 0.8);
    background-color: rgba(255, 255, 255, 0.03);
}

.page-resources-gamvip-club-advantages__faq-item.active .page-resources-gamvip-club-advantages__faq-answer {
    max-height: 2000px !important; /* Sufficiently large to contain any content */
    padding: 20px !important;
    opacity: 1;
}

/* Brand Section */
.page-resources-gamvip-club-advantages__brand-section {
    padding: 80px 20px;
    background-color: var(--secondary-color);
    color: var(--text-color-dark-bg);
    text-align: center;
}

.page-resources-gamvip-club-advantages__brand-title {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.4);
}

.page-resources-gamvip-club-advantages__brand-container {
    max-width: 1000px;
    margin: 0 auto;
}

.page-resources-gamvip-club-advantages__brand-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-resources-gamvip-club-advantages__brand-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-resources-gamvip-club-advantages__brand-item-title {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-resources-gamvip-club-advantages__brand-item p,
.page-resources-gamvip-club-advantages__brand-item li {
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.page-resources-gamvip-club-advantages__brand-item ul {
    list-style: disc inside;
    padding-left: 0;
    margin-top: 10px;
}

.page-resources-gamvip-club-advantages__brand-cta {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

/* Blog Section */
.page-resources-gamvip-club-advantages__blog-section {
    padding: 80px 20px;
    background-color: var(--background-color-dark);
    color: var(--text-color-dark-bg);
}

.page-resources-gamvip-club-advantages__blog-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.4);
}

.page-resources-gamvip-club-advantages__blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-resources-gamvip-club-advantages__blog-item {
    background-color: var(--card-bg-dark-theme);
    border: 1px solid var(--border-color-dark-theme);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-gamvip-club-advantages__blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-gamvip-club-advantages__blog-link {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 20px;
}

.page-resources-gamvip-club-advantages__blog-item-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-resources-gamvip-club-advantages__blog-item-title {
    font-size: 1.3em;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.4;
}

.page-resources-gamvip-club-advantages__blog-item-excerpt {
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.page-resources-gamvip-club-advantages__blog-item-date {
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.5);
    display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-gamvip-club-advantages__main-title {
        font-size: 2.8em;
    }
    .page-resources-gamvip-club-advantages__section-title,
    .page-resources-gamvip-club-advantages__faq-title,
    .page-resources-gamvip-club-advantages__brand-title,
    .page-resources-gamvip-club-advantages__blog-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-resources-gamvip-club-advantages__video-section {
        padding-top: 10px !important; /* Mobile: Adjust for fixed header */
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-resources-gamvip-club-advantages__video-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0;
        padding-right: 0;
        overflow: hidden !important;
    }

    .page-resources-gamvip-club-advantages__video-link {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-resources-gamvip-club-advantages__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        border-radius: 4px;
        overflow: hidden !important;
    }

    .page-resources-gamvip-club-advantages__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        border-radius: 4px;
        object-fit: contain;
    }

    .page-resources-gamvip-club-advantages__video-click-hint {
        font-size: 14px !important;
        padding: 8px 16px !important;
    }

    .page-resources-gamvip-club-advantages__video-cta {
        margin-top: 20px;
        padding-left: 15px;
        padding-right: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-resources-gamvip-club-advantages__play-now-button {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 30px !important;
        font-size: 16px !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-resources-gamvip-club-advantages__title-section,
    .page-resources-gamvip-club-advantages__content-area,
    .page-resources-gamvip-club-advantages__faq-section,
    .page-resources-gamvip-club-advantages__brand-section,
    .page-resources-gamvip-club-advantages__blog-section {
        padding: 40px 15px;
    }

    .page-resources-gamvip-club-advantages__main-title {
        font-size: 2em;
    }

    .page-resources-gamvip-club-advantages__section-title,
    .page-resources-gamvip-club-advantages__faq-title,
    .page-resources-gamvip-club-advantages__brand-title,
    .page-resources-gamvip-club-advantages__blog-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-resources-gamvip-club-advantages__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-resources-gamvip-club-advantages__cta-button {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 1em;
        padding: 12px 25px;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-resources-gamvip-club-advantages__feature-grid,
    .page-resources-gamvip-club-advantages__blog-list,
    .page-resources-gamvip-club-advantages__brand-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-resources-gamvip-club-advantages__feature-image {
        max-width: 250px;
    }
    
    .page-resources-gamvip-club-advantages__feature-card {
        padding: 20px;
    }

    .page-resources-gamvip-advantages__feature-card-title {
        font-size: 1.3em;
    }

    .page-resources-gamvip-club-advantages__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }
    
    .page-resources-gamvip-club-advantages__faq-question h3 {
        font-size: 1em;
        margin-bottom: 0;
        width: calc(100% - 40px);
    }
    
    .page-resources-gamvip-club-advantages__faq-toggle {
        margin-left: 10px;
        width: 24px;
        height: 24px;
        font-size: 20px;
    }
    
    .page-resources-gamvip-club-advantages__faq-answer {
        padding: 0 15px;
    }
    
    .page-resources-gamvip-club-advantages__faq-item.active .page-resources-gamvip-club-advantages__faq-answer {
        padding: 15px !important;
    }

    .page-resources-gamvip-club-advantages__blog-item-image {
        height: 180px;
    }

    .page-resources-gamvip-club-advantages img,
    .page-resources-gamvip-club-advantages video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-resources-gamvip-club-advantages__container,
    .page-resources-gamvip-club-advantages__feature-card,
    .page-resources-gamvip-club-advantages__blog-item,
    .page-resources-gamvip-club-advantages__brand-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0;
        padding-right: 0;
    }
    .page-resources-gamvip-club-advantages__brand-cta {
        padding: 0 15px;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .page-resources-gamvip-club-advantages__main-title {
        font-size: 1.8em;
    }
    .page-resources-gamvip-club-advantages__section-title,
    .page-resources-gamvip-club-advantages__faq-title,
    .page-resources-gamvip-club-advantages__brand-title,
    .page-resources-gamvip-club-advantages__blog-title {
        font-size: 1.5em;
    }
    .page-resources-gamvip-club-advantages__title-description {
        font-size: 1em;
    }
    .page-resources-gamvip-club-advantages__play-now-button {
        font-size: 15px !important;
        padding: 10px 25px !important;
    }
    .page-resources-gamvip-club-advantages__cta-button {
        font-size: 0.95em;
    }
    .page-resources-gamvip-advantages__feature-card-title {
        font-size: 1.2em;
    }
    .page-resources-gamvip-club-advantages__blog-item-title {
        font-size: 1.1em;
    }
    .page-resources-gamvip-club-advantages__blog-item-image {
        height: 150px;
    }
}