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

.page-promotions-vip-program {
    font-family: 'Arial', sans-serif;
    color: #e0e0e0; /* Light grey for general text */
    background-color: #0f153a; /* Darker background, slightly desaturated main color */
    line-height: 1.6;
}

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

.page-promotions-vip-program__hero {
    background: linear-gradient(135deg, #1A237E 0%, #0f153a 70%); /* Main color to darker variant */
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.page-promotions-vip-program__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.15;
}

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

.page-promotions-vip-program__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.page-promotions-vip-program__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFC107; /* Auxiliary color for emphasis */
    font-weight: bold;
    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;
}

.page-promotions-vip-program__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;
    margin: 10px;
}

.page-promotions-vip-program__btn--primary {
    background-color: #FFC107; /* Auxiliary color */
    color: #1A237E; /* Main color for text */
    border: 2px solid #FFC107;
}

.page-promotions-vip-program__btn--primary:hover {
    background-color: #ffda6a;
    transform: translateY(-3px);
}

.page-promotions-vip-program__btn--secondary {
    background-color: transparent;
    color: #FFC107;
    border: 2px solid #FFC107;
}

.page-promotions-vip-program__btn--secondary:hover {
    background-color: #FFC107;
    color: #1A237E;
    transform: translateY(-3px);
}

.page-promotions-vip-program__intro,
.page-promotions-vip-program__benefits,
.page-promotions-vip-program__tiers,
.page-promotions-vip-program__eligibility,
.page-promotions-vip-program__faq,
.page-promotions-vip-program__cta,
.page-promotions-vip-program__responsible-gaming {
    padding: 60px 0;
    text-align: center;
}

.page-promotions-vip-program__intro {
    background-color: #1A237E; /* Main color for a section */
    color: #ffffff;
}

.page-promotions-vip-program__section-title {
    font-size: 2.8em;
    margin-bottom: 40px;
    color: #FFC107; /* Auxiliary color */
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-promotions-vip-program__intro p {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 20px;
}

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

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

.page-promotions-vip-program__benefit-item {
    background-color: #1A237E; /* Main color */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    text-align: center;
    border: 1px solid #3f4a9b;
}

.page-promotions-vip-program__benefit-item:hover {
    transform: translateY(-10px);
}

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

.page-promotions-vip-program__benefit-title {
    font-size: 1.8em;
    color: #FFC107;
    margin-bottom: 15px;
}

.page-promotions-vip-program__benefit-item p {
    color: #cccccc;
    font-size: 1em;
}

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

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

.page-promotions-vip-program__tier-item {
    background-color: #2a338b; /* Slightly lighter main color */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    text-align: center;
    border: 1px solid #4f5cb5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions-vip-program__tier-item:hover {
    transform: scale(1.03);
}

.page-promotions-vip-program__tier-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    filter: drop-shadow(0 0 8px #FFC107);
}

.page-promotions-vip-program__tier-name {
    font-size: 2em;
    color: #FFC107;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-vip-program__tier-item p {
    color: #e0e0e0;
    font-size: 1.05em;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions-vip-program__tier-item ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    text-align: left;
    color: #ffffff;
}

.page-promotions-vip-program__tier-item ul li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    font-size: 0.95em;
}

.page-promotions-vip-program__tier-item ul li::before {
    content: '✅'; /* Checkmark icon */
    position: absolute;
    left: 0;
    color: #FFC107;
}

.page-promotions-vip-program__eligibility {
    background-color: #0f153a;
}

.page-promotions-vip-program__eligibility p {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 30px;
}

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

.page-promotions-vip-program__accordion {
    max-width: 900px;
    margin: 40px auto 0;
    text-align: left;
}

.page-promotions-vip-program__accordion-item {
    margin-bottom: 15px;
    border: 1px solid #3f4a9b;
    border-radius: 8px;
    overflow: hidden;
}

.page-promotions-vip-program__accordion-header {
    background-color: #2a338b;
    color: #FFC107;
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    position: relative;
    padding-right: 50px;
}

.page-promotions-vip-program__accordion-header:hover {
    background-color: #3f4a9b;
}

.page-promotions-vip-program__accordion-header::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-promotions-vip-program__accordion-header.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-promotions-vip-program__accordion-content {
    padding: 0 25px;
    background-color: #1A237E;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-promotions-vip-program__accordion-content p {
    padding: 15px 0;
    margin: 0;
    color: #e0e0e0;
    font-size: 1em;
    line-height: 1.8;
}

.page-promotions-vip-program__cta {
    background-color: #0f153a;
}

.page-promotions-vip-program__cta p {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px;
}

.page-promotions-vip-program__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-promotions-vip-program__responsible-gaming {
    background-color: #1A237E;
    padding-bottom: 80px;
}

.page-promotions-vip-program__responsible-gaming p {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto;
    color: #cccccc;
}

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

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

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

    .page-promotions-vip-program__benefits-grid,
    .page-promotions-vip-program__tier-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .page-promotions-vip-program__hero {
        padding: 80px 0 40px;
    }

    .page-promotions-vip-program__hero-title {
        font-size: 2.2em;
    }

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

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

    .page-promotions-vip-program__intro,
    .page-promotions-vip-program__benefits,
    .page-promotions-vip-program__tiers,
    .page-promotions-vip-program__eligibility,
    .page-promotions-vip-program__faq,
    .page-promotions-vip-program__cta,
    .page-promotions-vip-program__responsible-gaming {
        padding: 40px 0;
    }

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

    .page-promotions-vip-program__benefit-title {
        font-size: 1.5em;
    }

    .page-promotions-vip-program__tier-name {
        font-size: 1.7em;
    }

    .page-promotions-vip-program__accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-promotions-vip-program__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-promotions-vip-program__btn {
        width: 80%;
        max-width: 300px;
    }
}

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

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

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

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

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