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

/* Base styles for the page content */
.page-promotions-vip-loyalty-rewards {
    font-family: 'Arial', sans-serif;
    color: #F8F8F8; /* Light text on dark background */
    background-color: #0A2239; /* Main brand dark blue */
    line-height: 1.6;
}

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

/* Hero Section */
.page-promotions-vip-loyalty-rewards__hero-section {
    position: relative;
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #0A2239 0%, #1a3a5a 100%); /* Dark blue gradient */
    color: #F8F8F8;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-promotions-vip-loyalty-rewards__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
}

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

.page-promotions-vip-loyalty-rewards__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #E0B400; /* Accent gold */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-vip-loyalty-rewards__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-vip-loyalty-rewards__cta-button {
    display: inline-block;
    background-color: #E0B400; /* Accent gold */
    color: #0A2239; /* Dark blue text on gold */
    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;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-vip-loyalty-rewards__cta-button:hover {
    background-color: #ffc800; /* Slightly lighter gold on hover */
    transform: translateY(-3px);
}

.page-promotions-vip-loyalty-rewards__cta-button--primary {
    background-color: #E0B400;
    color: #0A2239;
}

.page-promotions-vip-loyalty-rewards__cta-button--secondary {
    background-color: #0A2239;
    color: #E0B400;
    border: 2px solid #E0B400;
}

.page-promotions-vip-loyalty-rewards__cta-button--secondary:hover {
    background-color: #1a3a5a;
    color: #ffc800;
}

/* General Section Styles */
.page-promotions-vip-loyalty-rewards__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(224, 180, 0, 0.2);
}

.page-promotions-vip-loyalty-rewards__section:last-of-type {
    border-bottom: none;
}

.page-promotions-vip-loyalty-rewards__section-title {
    font-size: 2.5em;
    color: #E0B400; /* Accent gold */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-promotions-vip-loyalty-rewards__intro p,
.page-promotions-vip-loyalty-rewards__how-to-join p,
.page-promotions-vip-loyalty-rewards__responsible-gambling p,
.page-promotions-vip-loyalty-rewards__conclusion p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #C0C0C0; /* Slightly lighter text for readability */
}

.page-promotions-vip-loyalty-rewards__image-full-width {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    margin: 40px 0;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

.page-promotions-vip-loyalty-rewards__tier-card {
    background-color: #1a3a5a; /* Darker blue background for cards */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(224, 180, 0, 0.3);
}

.page-promotions-vip-loyalty-rewards__tier-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions-vip-loyalty-rewards__tier-title {
    font-size: 1.8em;
    color: #E0B400; /* Accent gold */
    margin-bottom: 20px;
    text-align: center;
}

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

.page-promotions-vip-loyalty-rewards__tier-card li {
    font-size: 1em;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #F8F8F8;
}

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

/* How-To-Join Section */
.page-promotions-vip-loyalty-rewards__ordered-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: section-counter;
}

.page-promotions-vip-loyalty-rewards__ordered-list li {
    counter-increment: section-counter;
    margin-bottom: 25px;
    padding-left: 60px;
    position: relative;
    font-size: 1.1em;
    color: #C0C0C0;
}

.page-promotions-vip-loyalty-rewards__ordered-list li strong {
    color: #E0B400;
    font-size: 1.2em;
    display: block;
    margin-bottom: 5px;
}

.page-promotions-vip-loyalty-rewards__ordered-list li::before {
    content: counter(section-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #E0B400;
    color: #0A2239;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3em;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Exclusive Offers Cards */
.page-promotions-vip-loyalty-rewards__offer-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

.page-promotions-vip-loyalty-rewards__offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-vip-loyalty-rewards__offer-title {
    font-size: 1.6em;
    color: #E0B400;
    margin-bottom: 15px;
    text-align: center;
}

.page-promotions-vip-loyalty-rewards__offer-card p {
    font-size: 1em;
    color: #C0C0C0;
    text-align: center;
}

/* Responsible Gambling */
.page-promotions-vip-loyalty-rewards__responsible-gambling .page-promotions-vip-loyalty-rewards__text-link {
    display: block;
    text-align: center;
    margin-top: 20px;
    font-size: 1.1em;
    color: #E0B400;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions-vip-loyalty-rewards__responsible-gambling .page-promotions-vip-loyalty-rewards__text-link:hover {
    color: #ffc800;
    text-decoration: underline;
}

/* FAQ Section */
.page-promotions-vip-loyalty-rewards__accordion {
    margin-top: 40px;
}

.page-promotions-vip-loyalty-rewards__accordion-item {
    background-color: #1a3a5a;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(224, 180, 0, 0.3);
}

.page-promotions-vip-loyalty-rewards__accordion-header {
    background-color: #0A2239; /* Dark blue background for header */
    color: #E0B400; /* Gold text */
    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-rewards__accordion-header:hover {
    background-color: #1a3a5a;
}

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

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

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

.page-promotions-vip-loyalty-rewards__accordion-content p {
    color: #C0C0C0;
    padding-bottom: 20px;
    margin: 0;
}

/* Conclusion */
.page-promotions-vip-loyalty-rewards__conclusion {
    text-align: center;
    padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-vip-loyalty-rewards__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-vip-loyalty-rewards__hero-description {
        font-size: 1.1em;
    }
    .page-promotions-vip-loyalty-rewards__section-title {
        font-size: 2em;
    }
    .page-promotions-vip-loyalty-rewards__tier-grid,
    .page-promotions-vip-loyalty-rewards__offer-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions-vip-loyalty-rewards__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-vip-loyalty-rewards__hero-description {
        font-size: 1em;
    }
    .page-promotions-vip-loyalty-rewards__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-vip-loyalty-rewards__section {
        padding: 40px 0;
    }
    .page-promotions-vip-loyalty-rewards__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-promotions-vip-loyalty-rewards__intro p,
    .page-promotions-vip-loyalty-rewards__how-to-join p,
    .page-promotions-vip-loyalty-rewards__responsible-gambling p,
    .page-promotions-vip-loyalty-rewards__conclusion p {
        font-size: 0.95em;
    }
    .page-promotions-vip-loyalty-rewards__tier-card,
    .page-promotions-vip-loyalty-rewards__offer-card {
        padding: 25px;
    }
    .page-promotions-vip-loyalty-rewards__tier-title {
        font-size: 1.6em;
    }
    .page-promotions-vip-loyalty-rewards__ordered-list li {
        padding-left: 50px;
    }
    .page-promotions-vip-loyalty-rewards__ordered-list li::before {
        width: 35px;
        height: 35px;
        font-size: 1.1em;
    }
    .page-promotions-vip-loyalty-rewards__accordion-header {
        padding: 15px 20px;
        font-size: 1.1em;
    }
    .page-promotions-vip-loyalty-rewards__accordion-content {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .page-promotions-vip-loyalty-rewards__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-vip-loyalty-rewards__hero-description {
        font-size: 0.9em;
    }
    .page-promotions-vip-loyalty-rewards__section-title {
        font-size: 1.5em;
    }
    .page-promotions-vip-loyalty-rewards__cta-button {
        width: 100%;
        box-sizing: border-box;
    }
    .page-promotions-vip-loyalty-rewards__tier-grid,
    .page-promotions-vip-loyalty-rewards__offer-cards {
        grid-template-columns: 1fr;
    }
    .page-promotions-vip-loyalty-rewards__tier-card,
    .page-promotions-vip-loyalty-rewards__offer-card {
        padding: 20px;
    }
    .page-promotions-vip-loyalty-rewards__accordion-header {
        font-size: 1em;
    }
}