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

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

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

.page-promotions-vip-loyalty .hero-section {
    background: linear-gradient(135deg, #0A1931 0%, #1A2A43 100%); /* Dark blue gradient */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
}

.page-promotions-vip-loyalty .hero-section h1 {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-promotions-vip-loyalty .hero-section p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #E0E0E0;
}

.page-promotions-vip-loyalty .hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 0;
}

.page-promotions-vip-loyalty .hero-section .container {
    position: relative;
    z-index: 1;
}

.page-promotions-vip-loyalty .cta-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-promotions-vip-loyalty .btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-promotions-vip-loyalty .btn-primary {
    background-color: #FFD700; /* Gold button */
    color: #0A1931; /* Dark blue text on gold */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions-vip-loyalty .btn-primary:hover {
    background-color: #E5C100;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-promotions-vip-loyalty .btn-secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text for secondary button */
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.page-promotions-vip-loyalty .btn-secondary:hover {
    background-color: #FFD700;
    color: #0A1931;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.page-promotions-vip-loyalty section {
    padding: 60px 0;
    background-color: #0A1931;
}

.page-promotions-vip-loyalty section:nth-of-type(even) {
    background-color: #122340; /* Slightly lighter dark blue for alternating sections */
}

.page-promotions-vip-loyalty h2 {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

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

.page-promotions-vip-loyalty p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #E0E0E0;
}

/* VIP Tiers Section */
.page-promotions-vip-loyalty .vip-tiers-section .tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-vip-loyalty .tier-card {
    background-color: #1A2A43; /* Darker blue for cards */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.page-promotions-vip-loyalty .tier-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

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

.page-promotions-vip-loyalty .tier-card p {
    font-size: 1em;
    color: #B0B0B0;
    margin-bottom: 20px;
}

.page-promotions-vip-loyalty .tier-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: left;
}

.page-promotions-vip-loyalty .tier-card ul li {
    color: #E0E0E0;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.page-promotions-vip-loyalty .tier-card ul li::before {
    content: '✅'; /* Checkmark icon */
    position: absolute;
    left: 0;
    color: #FFD700;
}

.page-promotions-vip-loyalty .tier-card img {
    max-width: 120px;
    height: auto;
    margin-top: 20px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
}

/* Benefits Overview Section */
.page-promotions-vip-loyalty .benefits-overview-section .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-vip-loyalty .benefit-item {
    background-color: #1A2A43;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.page-promotions-vip-loyalty .benefit-item img {
    max-width: 80px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.3));
}

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

.page-promotions-vip-loyalty .benefit-item p {
    color: #B0B0B0;
    font-size: 0.95em;
}

/* How to Join Section */
.page-promotions-vip-loyalty .how-to-join-section {
    text-align: center;
}

.page-promotions-vip-loyalty .how-to-join-section ol {
    list-style: none;
    counter-reset: my-awesome-counter;
    padding: 0;
    max-width: 800px;
    margin: 40px auto;
    text-align: left;
}

.page-promotions-vip-loyalty .how-to-join-section ol li {
    counter-increment: my-awesome-counter;
    margin-bottom: 25px;
    padding-left: 70px;
    position: relative;
    font-size: 1.15em;
    color: #E0E0E0;
}

.page-promotions-vip-loyalty .how-to-join-section ol li strong {
    color: #FFD700;
    font-size: 1.2em;
}

.page-promotions-vip-loyalty .how-to-join-section ol li::before {
    content: counter(my-awesome-counter);
    position: absolute;
    left: 0;
    top: -5px;
    width: 50px;
    height: 50px;
    background-color: #FFD700;
    color: #0A1931;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-promotions-vip-loyalty .how-to-join-section a {
    color: #FFD700;
    text-decoration: underline;
}

.page-promotions-vip-loyalty .how-to-join-section a:hover {
    color: #E5C100;
}

.page-promotions-vip-loyalty .btn-large {
    padding: 18px 40px;
    font-size: 1.2em;
    margin-top: 30px;
}

/* FAQ Section */
.page-promotions-vip-loyalty .faq-section .faq-item {
    background-color: #1A2A43;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-promotions-vip-loyalty .faq-section .faq-item p {
    color: #B0B0B0;
    font-size: 1em;
    margin-top: 15px;
    display: none; /* Hidden by default, toggled by JS */
}

/* App Download CTA Section */
.page-promotions-vip-loyalty .app-download-cta {
    background: linear-gradient(90deg, #0A1931, #122340);
    padding: 80px 0;
    text-align: center;
}

.page-promotions-vip-loyalty .app-download-cta .app-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.page-promotions-vip-loyalty .app-screenshot {
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-promotions-vip-loyalty .app-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.page-promotions-vip-loyalty .app-text h2 {
    color: #FFD700;
    font-size: 2.5em;
    text-align: left;
    margin-bottom: 20px;
}

.page-promotions-vip-loyalty .app-text h2::after {
    left: 0;
    transform: translateX(0);
}

.page-promotions-vip-loyalty .app-text p {
    color: #E0E0E0;
    font-size: 1.1em;
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-vip-loyalty .hero-section h1 {
        font-size: 2.5em;
    }

    .page-promotions-vip-loyalty h2 {
        font-size: 2em;
    }

    .page-promotions-vip-loyalty .vip-tiers-section .tiers-grid,
    .page-promotions-vip-loyalty .benefits-overview-section .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .page-promotions-vip-loyalty .app-download-cta .app-content {
        flex-direction: column;
        text-align: center;
    }

    .page-promotions-vip-loyalty .app-text {
        text-align: center;
    }

    .page-promotions-vip-loyalty .app-text h2 {
        text-align: center;
    }

    .page-promotions-vip-loyalty .app-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .page-promotions-vip-loyalty .how-to-join-section ol li {
        padding-left: 0;
        text-align: center;
    }

    .page-promotions-vip-loyalty .how-to-join-section ol li::before {
        position: static;
        margin-bottom: 10px;
        display: inline-flex;
    }
}

@media (max-width: 768px) {
    .page-promotions-vip-loyalty .hero-section {
        padding: 60px 0;
    }

    .page-promotions-vip-loyalty .hero-section h1 {
        font-size: 2em;
    }

    .page-promotions-vip-loyalty .hero-section p {
        font-size: 1em;
    }

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

    .page-promotions-vip-loyalty .btn {
        width: 80%;
        margin: 0 auto;
    }

    .page-promotions-vip-loyalty section {
        padding: 40px 0;
    }

    .page-promotions-vip-loyalty h2 {
        font-size: 1.8em;
    }

    .page-promotions-vip-loyalty h3 {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .page-promotions-vip-loyalty .hero-section h1 {
        font-size: 1.8em;
    }

    .page-promotions-vip-loyalty .btn {
        width: 90%;
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-promotions-vip-loyalty .app-screenshot {
        max-width: 250px;
    }

    .page-promotions-vip-loyalty .app-text h2 {
        font-size: 2em;
    }
}