/* style/vip-club-exclusive-events.css */
.page-vip-club-exclusive-events {
    font-family: 'Arial', sans-serif;
    color: #f5e6d0; /* Light text for dark background */
    background-color: #0A192F;
    line-height: 1.6;
}

.page-vip-club-exclusive-events__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-vip-club-exclusive-events__hero {
    background: linear-gradient(135deg, #0A192F 0%, #1a345b 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-vip-club-exclusive-events__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-bottom: 40px;
}

.page-vip-club-exclusive-events__hero-title {
    font-size: 3.5em;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
}

.page-vip-club-exclusive-events__hero-subtitle {
    font-size: 1.5em;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-club-exclusive-events__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    overflow: hidden;
}

.page-vip-club-exclusive-events__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(80%) blur(5px);
    transform: scale(1.1);
}

.page-vip-club-exclusive-events__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-vip-club-exclusive-events__btn {
    display: inline-block;
    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;
    cursor: pointer;
    border: none;
}

.page-vip-club-exclusive-events__btn--primary {
    background-color: #FFD700;
    color: #0A192F;
}

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

.page-vip-club-exclusive-events__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-vip-club-exclusive-events__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-3px);
}

.page-vip-club-exclusive-events__section-title {
    font-size: 2.8em;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-vip-club-exclusive-events__section-description {
    font-size: 1.2em;
    color: #e0e0e0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.page-vip-club-exclusive-events__intro,
.page-vip-club-exclusive-events__events-grid,
.page-vip-club-exclusive-events__how-to-join,
.page-vip-club-exclusive-events__why-us,
.page-vip-club-exclusive-events__responsible-gaming,
.page-vip-club-exclusive-events__faq,
.page-vip-club-exclusive-events__call-to-action {
    padding: 80px 0;
}

.page-vip-club-exclusive-events__intro {
    background-color: #1a2a47;
}

.page-vip-club-exclusive-events__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #f5e6d0;
    text-align: justify;
}

.page-vip-club-exclusive-events__text-content .keyword {
    color: #FFD700;
    font-weight: bold;
}

.page-vip-club-exclusive-events__text-content .highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-vip-club-exclusive-events__link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-vip-club-exclusive-events__link:hover {
    text-decoration: underline;
}

.page-vip-club-exclusive-events__events-grid {
    background-color: #0A192F;
}

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

.page-vip-club-exclusive-events__grid-item {
    background-color: #1a2a47;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club-exclusive-events__grid-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-vip-club-exclusive-events__grid-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
    border-bottom: 3px solid #FFD700;
}

.page-vip-club-exclusive-events__grid-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
    padding: 0 20px;
}

.page-vip-club-exclusive-events__grid-text {
    font-size: 1em;
    color: #f5e6d0;
    padding: 0 20px;
}

.page-vip-club-exclusive-events__how-to-join {
    background-color: #1a2a47;
}

.page-vip-club-exclusive-events__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.page-vip-club-exclusive-events__step-item {
    text-align: center;
    position: relative;
    padding: 40px 20px;
    background-color: #0A192F;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-vip-club-exclusive-events__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #FFD700;
    color: #0A192F;
    border-radius: 50%;
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 0 0 5px rgba(255, 215, 0, 0.3);
}

.page-vip-club-exclusive-events__step-title {
    font-size: 1.8em;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.page-vip-club-exclusive-events__step-text {
    font-size: 1em;
    color: #f5e6d0;
}

.page-vip-club-exclusive-events__why-us {
    background-color: #0A192F;
}

.page-vip-club-exclusive-events__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-vip-club-exclusive-events__feature-item {
    background-color: #1a2a47;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-vip-club-exclusive-events__feature-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: brightness(1.2);
}

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

.page-vip-club-exclusive-events__feature-text {
    font-size: 1em;
    color: #f5e6d0;
}

.page-vip-club-exclusive-events__responsible-gaming {
    background-color: #1a2a47;
    text-align: center;
}

.page-vip-club-exclusive-events__faq {
    background-color: #0A192F;
}

.page-vip-club-exclusive-events__faq-items {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-vip-club-exclusive-events__faq-item {
    background-color: #1a2a47;
    border-radius: 12px;
    padding: 25px 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-vip-club-exclusive-events__faq-question::after {
    content: '+';
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-vip-club-exclusive-events__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

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

.page-vip-club-exclusive-events__faq-answer.active {
    max-height: 200px; /* Adjust based on content */
    padding-top: 15px;
}

.page-vip-club-exclusive-events__call-to-action {
    background-color: #1a2a47;
    text-align: center;
    padding: 100px 0;
}

.page-vip-club-exclusive-events__cta-block {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.highlight {
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-vip-club-exclusive-events__hero-title {
        font-size: 3em;
    }
    .page-vip-club-exclusive-events__hero-subtitle {
        font-size: 1.3em;
    }
    .page-vip-club-exclusive-events__section-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-vip-club-exclusive-events__hero {
        padding: 80px 0;
    }
    .page-vip-club-exclusive-events__hero-title {
        font-size: 2.5em;
    }
    .page-vip-club-exclusive-events__hero-subtitle {
        font-size: 1.1em;
    }
    .page-vip-club-exclusive-events__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-vip-club-exclusive-events__btn {
        width: 80%;
        max-width: 300px;
    }
    .page-vip-club-exclusive-events__section-title {
        font-size: 2em;
    }
    .page-vip-club-exclusive-events__grid-item,
    .page-vip-club-exclusive-events__step-item,
    .page-vip-club-exclusive-events__feature-item {
        padding: 20px;
    }
    .page-vip-club-exclusive-events__grid-title,
    .page-vip-club-exclusive-events__step-title,
    .page-vip-club-exclusive-events__feature-title {
        font-size: 1.5em;
    }
    .page-vip-club-exclusive-events__faq-question {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-vip-club-exclusive-events__hero {
        padding: 60px 0;
    }
    .page-vip-club-exclusive-events__hero-title {
        font-size: 2em;
    }
    .page-vip-club-exclusive-events__hero-subtitle {
        font-size: 1em;
    }
    .page-vip-club-exclusive-events__section-title {
        font-size: 1.8em;
    }
    .page-vip-club-exclusive-events__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-vip-club-exclusive-events__grid-items,
    .page-vip-club-exclusive-events__steps,
    .page-vip-club-exclusive-events__features {
        grid-template-columns: 1fr;
    }
}