/* style/resources-explore-vipwinbest-latest-promotions.css */

:root {
    --page-primary-color: #1A2E4E;
    --page-secondary-color: #FFD700;
    --page-text-light: #F0F2F5;
    --page-text-dark: #333333;
    --page-background-light: #FFFFFF;
    --page-background-dark: #1A2E4E;
    --page-accent-color: #e5d1b1; /* Complementary to primary */
}

.page-resources-explore-vipwinbest-latest-promotions {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-text-dark);
    background-color: var(--page-background-light);
}

.page-resources-explore-vipwinbest-latest-promotions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-explore-vipwinbest-latest-promotions__hero-section {
    position: relative;
    background-color: var(--page-background-dark);
    color: var(--page-text-light);
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.page-resources-explore-vipwinbest-latest-promotions__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
}

.page-resources-explore-vipwinbest-latest-promotions__hero-section > .page-resources-explore-vipwinbest-latest-promotions__container {
    position: relative;
    z-index: 2;
}

.page-resources-explore-vipwinbest-latest-promotions__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--page-secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-explore-vipwinbest-latest-promotions__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--page-text-light);
}

.page-resources-explore-vipwinbest-latest-promotions__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1em;
}

.page-resources-explore-vipwinbest-latest-promotions__btn--primary {
    background-color: var(--page-secondary-color);
    color: var(--page-primary-color);
}

.page-resources-explore-vipwinbest-latest-promotions__btn--primary:hover {
    background-color: #e6c200; /* Slightly darker gold */
}

.page-resources-explore-vipwinbest-latest-promotions__btn--secondary {
    background-color: transparent;
    color: var(--page-primary-color);
    border: 2px solid var(--page-primary-color);
}

.page-resources-explore-vipwinbest-latest-promotions__btn--secondary:hover {
    background-color: var(--page-primary-color);
    color: var(--page-text-light);
}

.page-resources-explore-vipwinbest-latest-promotions__btn--center {
    display: block;
    margin: 40px auto 0 auto;
    max-width: 250px;
}

.page-resources-explore-vipwinbest-latest-promotions__section {
    padding: 80px 0;
    text-align: center;
}

.page-resources-explore-vipwinbest-latest-promotions__section--highlight {
    background-color: #f8f8f8;
}

.page-resources-explore-vipwinbest-latest-promotions__section--dark-bg {
    background-color: var(--page-background-dark);
    color: var(--page-text-light);
}

.page-resources-explore-vipwinbest-latest-promotions__section-title {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: var(--page-primary-color);
}

.page-resources-explore-vipwinbest-latest-promotions__section-title--light {
    color: var(--page-secondary-color);
}

.page-resources-explore-vipwinbest-latest-promotions__text-content {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 30px auto;
    line-height: 1.8;
    color: #555;
}

.page-resources-explore-vipwinbest-latest-promotions__text-content--light {
    color: var(--page-text-light);
}

.page-resources-explore-vipwinbest-latest-promotions__feature-list {
    list-style: none;
    padding: 0;
    margin: 40px auto 0 auto;
    max-width: 800px;
    text-align: left;
}

.page-resources-explore-vipwinbest-latest-promotions__feature-list li {
    font-size: 1.1em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: var(--page-primary-color);
}

.page-resources-explore-vipwinbest-latest-promotions__icon {
    margin-right: 15px;
    color: var(--page-secondary-color);
    font-size: 1.5em;
}

.page-resources-explore-vipwinbest-latest-promotions__icon--check::before {
    content: '✔'; /* Unicode checkmark */
}

.page-resources-explore-vipwinbest-latest-promotions__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-resources-explore-vipwinbest-latest-promotions__promo-card {
    background-color: var(--page-background-light);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-resources-explore-vipwinbest-latest-promotions__promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-resources-explore-vipwinbest-latest-promotions__promo-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-resources-explore-vipwinbest-latest-promotions__promo-card-title {
    font-size: 1.6em;
    color: var(--page-primary-color);
    margin-bottom: 15px;
}

.page-resources-explore-vipwinbest-latest-promotions__promo-card-description {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-resources-explore-vipwinbest-latest-promotions__step-list {
    list-style: none;
    padding: 0;
    margin: 50px auto 0 auto;
    max-width: 1000px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: left;
}

.page-resources-explore-vipwinbest-latest-promotions__step-list li {
    position: relative;
    padding-left: 70px;
    margin-bottom: 20px;
}

.page-resources-explore-vipwinbest-latest-promotions__step-icon-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: var(--page-secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    color: var(--page-primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-explore-vipwinbest-latest-promotions__step-number {
    line-height: 1;
}

.page-resources-explore-vipwinbest-latest-promotions__step-title {
    font-size: 1.4em;
    color: var(--page-secondary-color);
    margin-bottom: 10px;
}

.page-resources-explore-vipwinbest-latest-promotions__step-description {
    font-size: 1em;
    color: var(--page-text-light);
    line-height: 1.7;
}

.page-resources-explore-vipwinbest-latest-promotions__terms-list {
    list-style: disc;
    padding-left: 25px;
    text-align: left;
    max-width: 900px;
    margin: 40px auto;
    color: #555;
}

.page-resources-explore-vipwinbest-latest-promotions__terms-list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-resources-explore-vipwinbest-latest-promotions__section--cta {
    background-color: var(--page-primary-color);
    color: var(--page-text-light);
    padding: 60px 0;
}

.page-resources-explore-vipwinbest-latest-promotions__newsletter-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.page-resources-explore-vipwinbest-latest-promotions__form-input {
    padding: 12px 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    width: 300px;
    max-width: 100%;
    box-sizing: border-box;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-explore-vipwinbest-latest-promotions__hero-title {
        font-size: 3em;
    }
    .page-resources-explore-vipwinbest-latest-promotions__hero-subtitle {
        font-size: 1.3em;
    }
    .page-resources-explore-vipwinbest-latest-promotions__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-resources-explore-vipwinbest-latest-promotions__hero-title {
        font-size: 2.5em;
    }
    .page-resources-explore-vipwinbest-latest-promotions__hero-subtitle {
        font-size: 1.1em;
    }
    .page-resources-explore-vipwinbest-latest-promotions__section {
        padding: 60px 0;
    }
    .page-resources-explore-vipwinbest-latest-promotions__grid {
        grid-template-columns: 1fr;
    }
    .page-resources-explore-vipwinbest-latest-promotions__step-list {
        grid-template-columns: 1fr;
    }
    .page-resources-explore-vipwinbest-latest-promotions__newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    .page-resources-explore-vipwinbest-latest-promotions__form-input {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-resources-explore-vipwinbest-latest-promotions__hero-title {
        font-size: 2em;
    }
    .page-resources-explore-vipwinbest-latest-promotions__hero-subtitle {
        font-size: 1em;
    }
    .page-resources-explore-vipwinbest-latest-promotions__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-resources-explore-vipwinbest-latest-promotions__section-title {
        font-size: 1.8em;
    }
    .page-resources-explore-vipwinbest-latest-promotions__text-content {
        font-size: 1em;
    }
    .page-resources-explore-vipwinbest-latest-promotions__step-list li {
        padding-left: 60px;
    }
    .page-resources-explore-vipwinbest-latest-promotions__step-icon-wrapper {
        width: 45px;
        height: 45px;
        font-size: 1.6em;
    }
}