/* style/promotions-vip-program.css */

.page-promotions-vip-program {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f5f5f5;
}

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

.page-promotions-vip-program__hero {
    background: linear-gradient(135deg, #0A244A 0%, #001a38 100%); /* Darker gradient for deep blue */
    color: #FFD700;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-vip-program__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-promotions-vip-program__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold text on dark blue background */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-vip-program__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #e0e0e0; /* Slightly lighter for readability */
}

.page-promotions-vip-program__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
}

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

.page-promotions-vip-program__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A244A; /* Deep blue text on gold */
    border: 2px solid #FFD700;
}

.page-promotions-vip-program__btn--primary:hover {
    background-color: #e6c200;
    color: #000;
}

.page-promotions-vip-program__btn--secondary {
    background-color: #0A244A; /* Deep blue button */
    color: #FFD700; /* Gold text on deep blue */
    border: 2px solid #FFD700;
}

.page-promotions-vip-program__btn--secondary:hover {
    background-color: #001a38;
    color: #FFD700;
}

.page-promotions-vip-program__section-title {
    font-size: 2.5em;
    color: #0A244A; /* Deep blue title */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-promotions-vip-program__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold underline */
    border-radius: 2px;
}

.page-promotions-vip-program__intro, 
.page-promotions-vip-program__tiers, 
.page-promotions-vip-program__benefits, 
.page-promotions-vip-program__how-to-join, 
.page-promotions-vip-program__responsible-gambling, 
.page-promotions-vip-program__faq, 
.page-promotions-vip-program__cta {
    padding: 60px 0;
}

.page-promotions-vip-program__intro {
    background-color: #fff;
}

.page-promotions-vip-program__text {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
}

.page-promotions-vip-program__text a {
    color: #0A244A;
    text-decoration: underline;
}

.page-promotions-vip-program__text a:hover {
    color: #FFD700;
}

.page-promotions-vip-program__highlight {
    color: #0A244A;
    font-weight: bold;
}

.page-promotions-vip-program__tiers {
    background-color: #e0e0e0;
}

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

.page-promotions-vip-program__tier-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #FFD700;
}

.page-promotions-vip-program__tier-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.page-promotions-vip-program__tier-title {
    font-size: 1.8em;
    color: #0A244A; /* Deep blue title */
    margin-bottom: 15px;
}

.page-promotions-vip-program__tier-desc {
    color: #555;
    font-size: 1em;
}

.page-promotions-vip-program__benefits {
    background-color: #0A244A;
    color: #fff;
}

.page-promotions-vip-program__benefits .page-promotions-vip-program__section-title {
    color: #FFD700; /* Gold title on deep blue background */
}

.page-promotions-vip-program__benefits .page-promotions-vip-program__section-title::after {
    background-color: #fff;
}

.page-promotions-vip-program__benefits .page-promotions-vip-program__text {
    color: #e0e0e0;
}

.page-promotions-vip-program__benefits .page-promotions-vip-program__highlight {
    color: #FFD700;
}

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

.page-promotions-vip-program__benefit-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    border-left: 5px solid #FFD700;
}

.page-promotions-vip-program__benefit-title {
    font-size: 1.5em;
    color: #FFD700; /* Gold title */
    margin-bottom: 10px;
}

.page-promotions-vip-program__benefit-item p {
    color: #e0e0e0;
}

.page-promotions-vip-program__how-to-join {
    background-color: #fff;
}

.page-promotions-vip-program__list--ordered {
    list-style-type: decimal;
    padding-left: 25px;
    margin-top: 20px;
}

.page-promotions-vip-program__list--ordered li {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #333;
}

.page-promotions-vip-program__list--ordered li strong {
    color: #0A244A;
}

.page-promotions-vip-program__responsible-gambling {
    background-color: #f0f0f0;
    text-align: center;
}

.page-promotions-vip-program__faq {
    background-color: #fff;
}

.page-promotions-vip-program__faq-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.page-promotions-vip-program__faq-item:last-child {
    border-bottom: none;
}

.page-promotions-vip-program__faq-question {
    font-size: 1.3em;
    color: #0A244A; /* Deep blue question */
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promotions-vip-program__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

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

.page-promotions-vip-program__faq-answer {
    font-size: 1em;
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    padding-left: 10px;
}

.page-promotions-vip-program__faq-answer.active {
    max-height: 200px; /* Adjust based on content */
    padding-top: 10px;
}

.page-promotions-vip-program__cta {
    background-color: #0A244A;
    color: #fff;
    text-align: center;
}

.page-promotions-vip-program__cta .page-promotions-vip-program__section-title {
    color: #FFD700; /* Gold title */
}

.page-promotions-vip-program__cta .page-promotions-vip-program__section-title::after {
    background-color: #fff;
}

.page-promotions-vip-program__cta .page-promotions-vip-program__text {
    color: #e0e0e0;
    margin-bottom: 30px;
}

.page-promotions-vip-program__image--fullwidth {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-vip-program__image--centered {
    display: block;
    margin: 40px auto;
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-promotions-vip-program__hero-title {
        font-size: 2.5em;
    }

    .page-promotions-vip-program__hero-subtitle {
        font-size: 1.2em;
    }

    .page-promotions-vip-program__section-title {
        font-size: 2em;
    }

    .page-promotions-vip-program__tier-grid,
    .page-promotions-vip-program__benefit-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions-vip-program__hero {
        padding: 80px 20px;
    }

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

    .page-promotions-vip-program__image--centered {
        max-width: 100%;
    }
}

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

    .page-promotions-vip-program__hero-subtitle {
        font-size: 1em;
    }

    .page-promotions-vip-program__section-title {
        font-size: 1.8em;
    }

    .page-promotions-vip-program__tier-card,
    .page-promotions-vip-program__benefit-item {
        padding: 20px;
    }

    .page-promotions-vip-program__faq-question {
        font-size: 1.1em;
    }
}