/* style/mcw88-vip-club.css */
.page-mcw88-vip-club {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #1a1a1a; /* Dark background */
    line-height: 1.6;
}

.page-mcw88-vip-club__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-mcw88-vip-club__hero-section {
    background: linear-gradient(135deg, #CC0000 0%, #800000 100%); /* Main color gradient */
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-mcw88-vip-club__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.page-mcw88-vip-club__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Auxiliary color for title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-mcw88-vip-club__hero-subtitle {
    font-size: 1.5em;
    color: #ffffff;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-mcw88-vip-club__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-mcw88-vip-club__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
}

.page-mcw88-vip-club__button--primary {
    background-color: #FFD700; /* Auxiliary color */
    color: #CC0000; /* Main color */
}

.page-mcw88-vip-club__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-mcw88-vip-club__button--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-mcw88-vip-club__button--secondary:hover {
    background-color: #FFD700;
    color: #CC0000;
    transform: translateY(-3px);
}

.page-mcw88-vip-club__hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.2;
}

.page-mcw88-vip-club__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-mcw88-vip-club__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Auxiliary color */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-mcw88-vip-club__introduction-section,
.page-mcw88-vip-club__responsible-gaming-section,
.page-mcw88-vip-club__faq-section,
.page-mcw88-vip-club__cta-final-section {
    padding: 60px 0;
    background-color: #2a2a2a; /* Slightly lighter dark background */
    margin-bottom: 20px;
}

.page-mcw88-vip-club__paragraph {
    font-size: 1.1em;
    text-align: justify;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-mcw88-vip-club__paragraph .highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-mcw88-vip-club__benefits-section {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.page-mcw88-vip-club__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-mcw88-vip-club__benefit-card {
    background-color: #2a2a2a;
    border: 1px solid #CC0000;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-mcw88-vip-club__benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-mcw88-vip-club__benefit-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-mcw88-vip-club__benefit-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-mcw88-vip-club__benefit-description {
    font-size: 1em;
    color: #c0c0c0;
}

.page-mcw88-vip-club__how-to-join-section {
    padding: 80px 0;
    background-color: #2a2a2a;
}

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

.page-mcw88-vip-club__step-card {
    background-color: #1a1a1a;
    border: 1px solid #FFD700;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

.page-mcw88-vip-club__step-card:hover {
    background-color: #3a3a3a;
}

.page-mcw88-vip-club__step-number {
    font-size: 3em;
    color: #CC0000; /* Main color */
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-mcw88-vip-club__step-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-mcw88-vip-club__step-description {
    font-size: 1em;
    color: #c0c0c0;
}

.page-mcw88-vip-club__step-description a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-mcw88-vip-club__step-description a:hover {
    text-decoration: underline;
}

.page-mcw88-vip-club__cta-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.page-mcw88-vip-club__detail-pages-section {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.page-mcw88-vip-club__detail-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-mcw88-vip-club__detail-card {
    background-color: #2a2a2a;
    border: 1px solid #FFD700;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-mcw88-vip-club__detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-mcw88-vip-club__detail-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-mcw88-vip-club__detail-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-mcw88-vip-club__detail-title a {
    color: #FFD700;
    text-decoration: none;
}

.page-mcw88-vip-club__detail-title a:hover {
    text-decoration: underline;
}

.page-mcw88-vip-club__detail-description {
    font-size: 0.95em;
    color: #c0c0c0;
    margin-bottom: 20px;
}

.page-mcw88-vip-club__faq-item {
    background-color: #1a1a1a;
    border: 1px solid rgba(204, 0, 0, 0.3);
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-mcw88-vip-club__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-mcw88-vip-club__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #CC0000;
    transition: transform 0.3s ease;
}

.page-mcw88-vip-club__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-mcw88-vip-club__faq-answer {
    font-size: 1em;
    color: #c0c0c0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding-top: 0;
}

.page-mcw88-vip-club__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding-top: 15px;
}

.page-mcw88-vip-club__cta-final-section {
    background-color: #CC0000; /* Main color */
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
}

.page-mcw88-vip-club__cta-final-section .page-mcw88-vip-club__section-title {
    color: #FFD700;
    margin-bottom: 30px;
}

.page-mcw88-vip-club__cta-final-section .page-mcw88-vip-club__paragraph {
    color: #ffffff;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .page-mcw88-vip-club__hero-title {
        font-size: 2.5em;
    }

    .page-mcw88-vip-club__hero-subtitle {
        font-size: 1.2em;
    }

    .page-mcw88-vip-club__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-mcw88-vip-club__button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-mcw88-vip-club__section-title {
        font-size: 2em;
    }

    .page-mcw88-vip-club__benefits-grid,
    .page-mcw88-vip-club__steps-grid,
    .page-mcw88-vip-club__detail-cards-grid {
        grid-template-columns: 1fr;
    }

    .page-mcw88-vip-club__introduction-section,
    .page-mcw88-vip-club__benefits-section,
    .page-mcw88-vip-club__how-to-join-section,
    .page-mcw88-vip-club__detail-pages-section,
    .page-mcw88-vip-club__responsible-gaming-section,
    .page-mcw88-vip-club__faq-section,
    .page-mcw88-vip-club__cta-final-section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .page-mcw88-vip-club__hero-title {
        font-size: 2em;
    }

    .page-mcw88-vip-club__hero-subtitle {
        font-size: 1em;
    }

    .page-mcw88-vip-club__section-title {
        font-size: 1.8em;
    }

    .page-mcw88-vip-club__benefit-title,
    .page-mcw88-vip-club__step-title,
    .page-mcw88-vip-club__detail-title {
        font-size: 1.4em;
    }
}