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

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

.page-promotions-vip-program__hero {
    background: linear-gradient(135deg, #1A2E47, #3a506b);
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

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

.page-promotions-vip-program__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-vip-program__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-promotions-vip-program__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-promotions-vip-program__sub-section-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: center;
}

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

.page-promotions-vip-program__card {
    background-color: #2a415a;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-vip-program__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

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

.page-promotions-vip-program__card p {
    font-size: 1em;
    color: #c0c0c0;
    margin-bottom: 15px;
}

.page-promotions-vip-program__card ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.page-promotions-vip-program__card li {
    margin-bottom: 8px;
    color: #fff;
    font-size: 0.95em;
}

.page-promotions-vip-program__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-promotions-vip-program__list li {
    background-color: #2a415a;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
    font-size: 1.1em;
    color: #fff;
}

.page-promotions-vip-program__list li strong {
    color: #FFD700;
}

.page-promotions-vip-program__benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    background-color: #2a415a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-vip-program__benefit-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    margin-right: 25px;
    background-color: #FFD700;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    object-fit: contain; /* Ensure icons scale properly */
}

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

.page-promotions-vip-program__benefit-content p {
    color: #c0c0c0;
    font-size: 1.05em;
}

.page-promotions-vip-program__btn {
    display: inline-block;
    background-color: #FFD700;
    color: #1A2E47;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 30px;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
}

.page-promotions-vip-program__btn:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-promotions-vip-program__btn--primary {
    background-color: #FFD700;
    color: #1A2E47;
    margin-right: 15px;
}

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

.page-promotions-vip-program__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A2E47;
}

.page-promotions-vip-program__intro p,
.page-promotions-vip-program__vip-system p,
.page-promotions-vip-program__how-to-join p,
.page-promotions-vip-program__commitment p,
.page-promotions-vip-program__cta p {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #c0c0c0;
    text-align: justify;
}

.page-promotions-vip-program__how-to-join ol {
    list-style: none;
    counter-reset: my-awesome-counter;
    padding: 0;
    margin-top: 30px;
}

.page-promotions-vip-program__how-to-join ol li {
    counter-increment: my-awesome-counter;
    background-color: #2a415a;
    margin-bottom: 15px;
    padding: 20px 20px 20px 60px;
    border-radius: 5px;
    position: relative;
    font-size: 1.1em;
    color: #fff;
}

.page-promotions-vip-program__how-to-join ol li::before {
    content: counter(my-awesome-counter);
    background-color: #FFD700;
    color: #1A2E47;
    font-size: 1.2em;
    font-weight: bold;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.page-promotions-vip-program__how-to-join ol li strong {
    color: #FFD700;
}

.page-promotions-vip-program__how-to-join ol li a {
    color: #FFD700;
    text-decoration: underline;
}

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

.page-promotions-vip-program__img-responsive {
    width: 100%;
    height: auto;
    max-width: 800px;
    display: block;
    margin: 40px auto 0 auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-promotions-vip-program__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-vip-program__hero-subtitle {
        font-size: 1.2em;
    }
    .page-promotions-vip-program__section-title {
        font-size: 2em;
    }
    .page-promotions-vip-program__grid-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-promotions-vip-program__benefit-item {
        flex-direction: column;
        text-align: center;
    }
    .page-promotions-vip-program__benefit-icon {
        margin: 0 auto 20px auto;
    }
}

@media (max-width: 768px) {
    .page-promotions-vip-program__hero {
        padding: 80px 0;
    }
    .page-promotions-vip-program__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-vip-program__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions-vip-program__section {
        padding: 40px 0;
    }
    .page-promotions-vip-program__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-promotions-vip-program__sub-section-title {
        font-size: 1.5em;
    }
    .page-promotions-vip-program__btn {
        padding: 12px 25px;
        font-size: 1em;
        margin-top: 20px;
    }
    .page-promotions-vip-program__btn--primary {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .page-promotions-vip-program__btn--secondary {
        margin-top: 0;
    }
    .page-promotions-vip-program__intro p,
    .page-promotions-vip-program__vip-system p,
    .page-promotions-vip-program__how-to-join p,
    .page-promotions-vip-program__commitment p,
    .page-promotions-vip-program__cta p {
        font-size: 1em;
    }
    .page-promotions-vip-program__how-to-join ol li {
        padding: 15px 15px 15px 50px;
        font-size: 1em;
    }
    .page-promotions-vip-program__how-to-join ol li::before {
        width: 30px;
        height: 30px;
        font-size: 1em;
        left: 10px;
    }
}

@media (max-width: 480px) {
    .page-promotions-vip-program__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-vip-program__hero-subtitle {
        font-size: 0.9em;
    }
    .page-promotions-vip-program__section-title {
        font-size: 1.5em;
    }
    .page-promotions-vip-program__btn {
        display: block;
        width: 100%;
        text-align: center;
        margin-left: 0;
        margin-right: 0;
    }
    .page-promotions-vip-program__btn--primary,
    .page-promotions-vip-program__btn--secondary {
        margin-bottom: 15px;
    }
    .page-promotions-vip-program__grid-cards {
        grid-template-columns: 1fr;
    }
    .page-promotions-vip-program__benefit-title {
        font-size: 1.5em;
    }
}