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

.page-promotions-vip-program__hero {
    background: linear-gradient(135deg, #0A192F 0%, #1a3a66 100%);
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.page-promotions-vip-program__hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-promotions-vip-program__title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-promotions-vip-program__subtitle {
    font-size: 1.5em;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.page-promotions-vip-program__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A192F; /* Dark text on gold */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-promotions-vip-program__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

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

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

.page-promotions-vip-program__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-promotions-vip-program__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    margin-bottom: 40px;
    font-weight: bold;
}

.page-promotions-vip-program__section p {
    font-size: 1.1em;
    color: #d0d0d0;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-vip-program__section p .highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-promotions-vip-program__intro p:last-of-type {
    margin-bottom: 0;
}

.page-promotions-vip-program__tiers {
    background-color: #1A2B47;
    padding-top: 80px;
    padding-bottom: 80px;
}

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

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

.page-promotions-vip-program__tier-card:hover {
    transform: translateY(-10px);
    background-color: #1f3a61;
}

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

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

.page-promotions-vip-program__tier-card p {
    font-size: 1em;
    color: #c0c0c0;
    margin-bottom: 0;
}

.page-promotions-vip-program__note {
    margin-top: 40px;
    font-style: italic;
    color: #a0a0a0;
}

.page-promotions-vip-program__privileges {
    padding-top: 80px;
    padding-bottom: 80px;
}

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

.page-promotions-vip-program__privilege-item {
    background-color: #1A2B47;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    text-align: left;
    transition: transform 0.3s ease;
    border-left: 5px solid #FFD700;
}

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

.page-promotions-vip-program__privilege-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 3px #FFD700);
}

.page-promotions-vip-program__privilege-item h3 {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-promotions-vip-program__privilege-item p {
    font-size: 1em;
    color: #c0c0c0;
    margin-bottom: 0;
}

.page-promotions-vip-program__how-to-join {
    background-color: #0A192F;
    padding-top: 80px;
    padding-bottom: 80px;
}

.page-promotions-vip-program__steps {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    counter-reset: step-counter;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-vip-program__steps li {
    counter-increment: step-counter;
    background-color: #1A2B47;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    text-align: left;
    position: relative;
    font-size: 1.1em;
    color: #e0e0e0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    border-left: 4px solid #FFD700;
}

.page-promotions-vip-program__steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #FFD700;
    color: #0A192F;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-promotions-vip-program__steps li strong {
    color: #FFD700;
    font-size: 1.2em;
}

.page-promotions-vip-program__steps li a {
    color: #FFD700;
    text-decoration: underline;
}

.page-promotions-vip-program__steps li a:hover {
    color: #e6c200;
}

.page-promotions-vip-program__cta-button--secondary {
    background-color: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
    margin-top: 30px;
}

.page-promotions-vip-program__cta-button--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-3px);
}

.page-promotions-vip-program__responsible-gambling {
    background-color: #1A2B47;
    padding-top: 80px;
    padding-bottom: 80px;
}

.page-promotions-vip-program__responsible-image {
    width: 150px;
    height: auto;
    margin: 30px auto;
    display: block;
    filter: grayscale(50%) brightness(120%);
    opacity: 0.8;
}

.page-promotions-vip-program__faq {
    padding-top: 80px;
    padding-bottom: 80px;
}

.page-promotions-vip-program__faq-item {
    background-color: #1A2B47;
    border: 1px solid #2f4f7a;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-vip-program__faq-item h3 {
    color: #FFD700;
    font-size: 1.3em;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promotions-vip-program__faq-item h3::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

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

.page-promotions-vip-program__faq-item p {
    color: #c0c0c0;
    font-size: 1em;
    margin-top: 15px;
    display: none; /* Hidden by default */
    max-width: none;
}

.page-promotions-vip-program__faq-item.active p {
    display: block;
}

.page-promotions-vip-program__final-cta {
    background-color: #0A192F;
    padding-top: 80px;
    padding-bottom: 80px;
}

.page-promotions-vip-program__final-cta .page-promotions-vip-program__link {
    color: #FFD700;
    text-decoration: underline;
    font-size: 1.1em;
    margin-top: 20px;
    display: inline-block;
}

.page-promotions-vip-program__final-cta .page-promotions-vip-program__link:hover {
    color: #e6c200;
}

.page-promotions-vip-program__cta-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions-vip-program__title {
        font-size: 2.8em;
    }
    .page-promotions-vip-program__subtitle {
        font-size: 1.3em;
    }
    .page-promotions-vip-program__section-title {
        font-size: 2em;
    }
    .page-promotions-vip-program__tier-grid, .page-promotions-vip-program__privilege-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions-vip-program__hero {
        padding: 60px 15px;
    }
    .page-promotions-vip-program__title {
        font-size: 2.2em;
    }
    .page-promotions-vip-program__subtitle {
        font-size: 1.1em;
    }
    .page-promotions-vip-program__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
    }
    .page-promotions-vip-program__section {
        padding: 50px 15px;
    }
    .page-promotions-vip-program__section-title {
        font-size: 1.8em;
    }
    .page-promotions-vip-program__section p {
        font-size: 1em;
    }
    .page-promotions-vip-program__tier-grid, .page-promotions-vip-program__privilege-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-vip-program__steps li::before {
        left: 10px;
        top: 20px;
        transform: none;
    }
    .page-promotions-vip-program__steps li {
        padding-left: 60px;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .page-promotions-vip-program__title {
        font-size: 1.8em;
    }
    .page-promotions-vip-program__subtitle {
        font-size: 0.95em;
    }
    .page-promotions-vip-program__section-title {
        font-size: 1.5em;
    }
    .page-promotions-vip-program__cta-button {
        font-size: 1em;
        padding: 10px 20px;
    }
    .page-promotions-vip-program__hero-image {
        border-radius: 5px;
    }
    .page-promotions-vip-program__tier-card, .page-promotions-vip-program__privilege-item {
        padding: 20px;
    }
    .page-promotions-vip-program__tier-card h3, .page-promotions-vip-program__privilege-item h3 {
        font-size: 1.3em;
    }
    .page-promotions-vip-program__steps li {
        font-size: 0.95em;
    }
}