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

.page-promotions-vip-program {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0A192F; /* Main dark blue background */
    line-height: 1.6;
}

.page-promotions-vip-program a {
    color: #FFD700; /* Gold for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions-vip-program a:hover {
    color: #b39700; /* Darker gold on hover */
}

.page-promotions-vip-program__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #0A192F 0%, #1a3054 100%); /* Gradient background */
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    gap: 40px;
}

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

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

.page-promotions-vip-program__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    line-height: 1.8;
}

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

.page-promotions-vip-program__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

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

.page-promotions-vip-program__btn--primary:hover {
    background-color: #b39700;
    border-color: #b39700;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(255, 215, 0, 0.3);
}

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

.page-promotions-vip-program__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(255, 215, 0, 0.3);
}

.page-promotions-vip-program__hero-image-wrapper {
    width: 100%;
    max-width: 600px;
    margin-top: 40px;
}

.page-promotions-vip-program__hero-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-promotions-vip-program__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 30px;
    padding-top: 60px;
    font-weight: bold;
}

.page-promotions-vip-program__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #CCCCCC;
}

.page-promotions-vip-program__benefits, 
.page-promotions-vip-program__tiers, 
.page-promotions-vip-program__how-to-join, 
.page-promotions-vip-program__responsible-gaming, 
.page-promotions-vip-program__faq, 
.page-promotions-vip-program__cta-final {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-promotions-vip-program__benefits-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: #1a3054; /* Darker blue for benefit cards */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-vip-program__benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

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

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

.page-promotions-vip-program__benefit-description {
    font-size: 1em;
    color: #E0E0E0;
}

.page-promotions-vip-program__tiers-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: #1a3054;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-top: 5px solid #FFD700;
}

.page-promotions-vip-program__tier-title {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions-vip-program__tier-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-promotions-vip-program__tier-description {
    font-size: 0.95em;
    color: #CCCCCC;
    margin-bottom: 20px;
}

.page-promotions-vip-program__tier-features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    text-align: left;
}

.page-promotions-vip-program__tier-features li {
    background-color: #0A192F;
    padding: 10px 15px;
    margin-bottom: 8px;
    border-radius: 5px;
    color: #E0E0E0;
    font-size: 0.9em;
    display: flex;
    align-items: center;
}

.page-promotions-vip-program__tier-features li::before {
    content: '✓';
    color: #FFD700;
    font-weight: bold;
    margin-right: 10px;
}

.page-promotions-vip-program__tiers-note {
    text-align: center;
    margin-top: 50px;
    font-size: 1.1em;
    color: #CCCCCC;
}

.page-promotions-vip-program__steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-vip-program__step-item {
    background-color: #1a3054;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

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

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

.page-promotions-vip-program__step-description {
    font-size: 1em;
    color: #E0E0E0;
}

.page-promotions-vip-program__cta-bottom {
    text-align: center;
    margin-top: 60px;
    padding: 40px 20px;
    background-color: #1a3054;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-vip-program__cta-bottom p {
    font-size: 1.3em;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.page-promotions-vip-program__responsible-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1em;
    color: #CCCCCC;
    background-color: #1a3054;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-vip-program__responsible-content ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-promotions-vip-program__responsible-content li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.page-promotions-vip-program__responsible-content li::before {
    content: '•';
    color: #FFD700;
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: -5px;
}

.page-promotions-vip-program__faq-items {
    margin-top: 40px;
}

.page-promotions-vip-program__faq-item {
    background-color: #1a3054;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-vip-program__faq-question {
    font-size: 1.4em;
    color: #FFD700;
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    background-color: #0A192F;
    border-bottom: 1px solid #2a406a;
}

.page-promotions-vip-program__faq-question::after {
    content: '+';
    font-size: 1.2em;
    font-weight: bold;
    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 {
    padding: 20px 25px;
    font-size: 1em;
    color: #E0E0E0;
    display: none;
    background-color: #1a3054;
    border-top: 1px solid #2a406a;
}

.page-promotions-vip-program__cta-final {
    text-align: center;
    padding: 80px 20px;
    background-color: #0A192F;
    border-top: 5px solid #FFD700;
}

.page-promotions-vip-program__final-actions {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions-vip-program__hero-title {
        font-size: 3em;
    }
    .page-promotions-vip-program__section-title {
        font-size: 2.2em;
    }
    .page-promotions-vip-program__benefits-grid, 
    .page-promotions-vip-program__tiers-grid, 
    .page-promotions-vip-program__steps {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions-vip-program__hero {
        flex-direction: column;
        padding: 60px 15px;
    }
    .page-promotions-vip-program__hero-title {
        font-size: 2.5em;
    }
    .page-promotions-vip-program__hero-description {
        font-size: 1.1em;
    }
    .page-promotions-vip-program__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-promotions-vip-program__btn {
        width: 100%;
        max-width: 300px;
    }
    .page-promotions-vip-program__section-title {
        font-size: 1.8em;
    }
    .page-promotions-vip-program__section-intro {
        font-size: 1em;
    }
    .page-promotions-vip-program__benefits, 
    .page-promotions-vip-program__tiers, 
    .page-promotions-vip-program__how-to-join, 
    .page-promotions-vip-program__responsible-gaming, 
    .page-promotions-vip-program__faq, 
    .page-promotions-vip-program__cta-final {
        padding: 40px 15px;
    }
    .page-promotions-vip-program__tier-card, 
    .page-promotions-vip-program__step-item, 
    .page-promotions-vip-program__benefit-item {
        padding: 25px;
    }
    .page-promotions-vip-program__faq-question {
        font-size: 1.2em;
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-promotions-vip-program__hero-title {
        font-size: 2em;
    }
    .page-promotions-vip-program__section-title {
        font-size: 1.6em;
    }
    .page-promotions-vip-program__btn {
        padding: 12px 20px;
        font-size: 0.9em;
    }
    .page-promotions-vip-program__hero-image-wrapper {
        margin-top: 20px;
    }
    .page-promotions-vip-program__benefits-grid, 
    .page-promotions-vip-program__tiers-grid, 
    .page-promotions-vip-program__steps {
        grid-template-columns: 1fr;
    }
}