/* style/promotions-vip-loyalty-program.css */
.page-promotions-vip-loyalty-program {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0A2239; /* Main dark background */
}

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

.page-promotions-vip-loyalty-program__section {
    padding: 60px 0;
    text-align: center;
}

.page-promotions-vip-loyalty-program__section:nth-child(even) {
    background-color: #1a3a5a; /* Slightly lighter dark for contrast */
}

.page-promotions-vip-loyalty-program h1,
.page-promotions-vip-loyalty-program h2 {
    color: #FFD700; /* Gold for main headings */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-promotions-vip-loyalty-program h1 {
    font-size: 3.2em;
}

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

.page-promotions-vip-loyalty-program h3 {
    color: #FFD700; /* Gold for subheadings */
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-promotions-vip-loyalty-program p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #CCCCCC; /* Lighter gray for paragraphs */
}

.page-promotions-vip-loyalty-program ul {
    list-style: none;
    padding: 0;
    margin: 20px auto;
    max-width: 800px;
}

.page-promotions-vip-loyalty-program ul li {
    background-color: #1a3a5a; /* Dark blue for list items */
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    font-size: 1.1em;
    color: #E0E0E0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.page-promotions-vip-loyalty-program ul li::before {
    content: '✓';
    color: #FFD700;
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.2em;
}

.page-promotions-vip-loyalty-program a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions-vip-loyalty-program a:hover {
    color: #DC143C; /* Red for hover */
}

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

.page-promotions-vip-loyalty-program__button--primary {
    background-color: #FFD700; /* Gold for primary button */
    color: #0A2239; /* Dark blue text */
}

.page-promotions-vip-loyalty-program__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-promotions-vip-loyalty-program__button--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-promotions-vip-loyalty-program__button--secondary:hover {
    background-color: #FFD700;
    color: #0A2239;
    transform: translateY(-2px);
}

.page-promotions-vip-loyalty-program__button--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

/* Hero Section */
.page-promotions-vip-loyalty-program__hero {
    background: linear-gradient(135deg, #0A2239 0%, #1a3a5a 100%); /* Gradient dark blue */
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    text-align: left;
}

.page-promotions-vip-loyalty-program__hero-content {
    max-width: 600px;
    padding: 0 20px;
}

.page-promotions-vip-loyalty-program__hero-content h1 {
    color: #FFD700;
    font-size: 3.5em;
    margin-bottom: 20px;
}

.page-promotions-vip-loyalty-program__hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-promotions-vip-loyalty-program__hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.page-promotions-vip-loyalty-program__hero-image-wrapper {
    max-width: 500px;
    flex-shrink: 0;
}

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

/* Why Join Section */
.page-promotions-vip-loyalty-program__why-join .page-promotions-vip-loyalty-program__container {
    text-align: center;
}

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

.page-promotions-vip-loyalty-program__feature-item {
    background-color: #1a3a5a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-promotions-vip-loyalty-program__feature-item:hover {
    transform: translateY(-10px);
    background-color: #2b4f72;
}

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

.page-promotions-vip-loyalty-program__feature-item h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-top: 0;
}

.page-promotions-vip-loyalty-program__feature-item p {
    font-size: 1em;
    color: #CCCCCC;
}

.page-promotions-vip-loyalty-program__image-full-width {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 10px;
    margin-top: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-vip-loyalty-program__image-margin-top {
    margin-top: 40px;
}

/* VIP Tiers Section */
.page-promotions-vip-loyalty-program__vip-tiers .page-promotions-vip-loyalty-program__container {
    text-align: center;
}

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

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

.page-promotions-vip-loyalty-program__tier-card:hover {
    transform: translateY(-10px);
}

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

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

.page-promotions-vip-loyalty-program__tier-card p {
    font-size: 1em;
    color: #CCCCCC;
    margin-bottom: 15px;
}

.page-promotions-vip-loyalty-program__tier-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-promotions-vip-loyalty-program__tier-card ul li {
    background-color: transparent;
    padding: 5px 0;
    margin-bottom: 5px;
    font-size: 0.95em;
    color: #E0E0E0;
    box-shadow: none;
}

.page-promotions-vip-loyalty-program__tier-card ul li::before {
    content: '★';
    color: #FFD700;
    margin-right: 10px;
    font-size: 1em;
}

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

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

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

.page-promotions-vip-loyalty-program__benefit-item:hover {
    background-color: #2b4f72;
}

.page-promotions-vip-loyalty-program__benefit-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 4px #FFD700);
}

.page-promotions-vip-loyalty-program__benefit-item h3 {
    color: #FFD700;
    font-size: 1.6em;
    margin-top: 0;
}

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

/* How to Join Section */
.page-promotions-vip-loyalty-program__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-vip-loyalty-program__step-item {
    background-color: #1a3a5a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    padding-top: 80px; /* Space for number */
}

.page-promotions-vip-loyalty-program__step-number {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFD700;
    color: #0A2239;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.page-promotions-vip-loyalty-program__step-item h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-top: 0;
}

.page-promotions-vip-loyalty-program__step-item p {
    font-size: 1em;
    color: #CCCCCC;
}

/* Responsible Gaming Section */
.page-promotions-vip-loyalty-program__responsible-gaming p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Section */
.page-promotions-vip-loyalty-program__faq .page-promotions-vip-loyalty-program__container {
    text-align: center;
}

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

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

.page-promotions-vip-loyalty-program__accordion-header {
    background-color: #2b4f72; /* Slightly lighter dark blue */
    color: #FFD700;
    padding: 20px 25px;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

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

.page-promotions-vip-loyalty-program__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

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

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

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

.page-promotions-vip-loyalty-program__accordion-content.active {
    max-height: 500px; /* Adjust as needed */
    padding: 15px 25px;
}

/* Final CTA Section */
.page-promotions-vip-loyalty-program__final-cta {
    background-color: #FFD700;
    color: #0A2239;
    padding: 80px 0;
}

.page-promotions-vip-loyalty-program__final-cta h2 {
    color: #0A2239;
    font-size: 3em;
}

.page-promotions-vip-loyalty-program__final-cta p {
    color: #333333;
    font-size: 1.2em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

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

.page-promotions-vip-loyalty-program__final-cta .page-promotions-vip-loyalty-program__button--primary {
    background-color: #0A2239;
    color: #FFD700;
}

.page-promotions-vip-loyalty-program__final-cta .page-promotions-vip-loyalty-program__button--primary:hover {
    background-color: #1a3a5a;
    color: #FFD700;
}

.page-promotions-vip-loyalty-program__final-cta .page-promotions-vip-loyalty-program__button--secondary {
    border-color: #0A2239;
    color: #0A2239;
}

.page-promotions-vip-loyalty-program__final-cta .page-promotions-vip-loyalty-program__button--secondary:hover {
    background-color: #0A2239;
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-vip-loyalty-program__hero {
        flex-direction: column;
        text-align: center;
    }

    .page-promotions-vip-loyalty-program__hero-content {
        max-width: 100%;
    }

    .page-promotions-vip-loyalty-program__hero-content h1 {
        font-size: 2.8em;
    }

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

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

    .page-promotions-vip-loyalty-program__hero-cta {
        justify-content: center;
    }
}

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

    .page-promotions-vip-loyalty-program__hero-content h1 {
        font-size: 2.2em;
    }

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

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

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

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

    .page-promotions-vip-loyalty-program__button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-promotions-vip-loyalty-program__feature-item,
    .page-promotions-vip-loyalty-program__tier-card,
    .page-promotions-vip-loyalty-program__benefit-item,
    .page-promotions-vip-loyalty-program__step-item {
        padding: 25px;
    }

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

    .page-promotions-vip-loyalty-program__accordion-content p {
        padding: 10px 0;
    }
}

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

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

    .page-promotions-vip-loyalty-program__hero-cta,
    .page-promotions-vip-loyalty-program__final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-promotions-vip-loyalty-program__button {
        width: 100%;
        max-width: 250px;
    }

    .page-promotions-vip-loyalty-program__accordion-header {
        font-size: 1em;
    }

    .page-promotions-vip-loyalty-program__accordion-content.active {
        padding: 10px 20px;
    }
}