/* style/index-latest-promotions.css */
.page-index-latest-promotions {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light gray for text on dark background */
    background-color: #0d123e; /* Darker variant of main color for overall background */
}

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

.page-index-latest-promotions__section {
    padding: 60px 0;
    text-align: center;
}

.page-index-latest-promotions__section:nth-of-type(even) {
    background-color: #1A237E; /* Main color for alternating sections */
}

.page-index-latest-promotions__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Auxiliary color for main titles */
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-index-latest-promotions__section-description {
    font-size: 1.1em;
    color: #B0B0B0; /* Slightly lighter gray for descriptions */
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* Hero Section */
.page-index-latest-promotions__hero {
    background: linear-gradient(135deg, #1A237E 0%, #0d123e 70%);
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.page-index-latest-promotions__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    color: #FFFFFF;
}

.page-index-latest-promotions__hero-title {
    font-size: 3.8em;
    color: #FFD700; /* Gold for hero title */
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.2;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.page-index-latest-promotions__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: #E0E0E0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-latest-promotions__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.2;
    pointer-events: none;
}

.page-index-latest-promotions__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(5px);
    transform: scale(1.05);
}

/* Buttons */
.page-index-latest-promotions__btn {
    display: inline-block;
    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;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-index-latest-promotions__btn--primary {
    background-color: #FFD700; /* Gold for primary actions */
    color: #1A237E; /* Dark blue for text on gold */
}

.page-index-latest-promotions__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-index-latest-promotions__btn--secondary {
    background-color: #3f51b5; /* A lighter shade of blue */
    color: #FFFFFF;
}

.page-index-latest-promotions__btn--secondary:hover {
    background-color: #303f9f;
    transform: translateY(-2px);
}

.page-index-latest-promotions__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

/* Promo Grid */
.page-index-latest-promotions__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-index-latest-promotions__promo-card {
    background-color: #1A237E; /* Main color for card background */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #3f51b5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-index-latest-promotions__promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}

.page-index-latest-promotions__promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-index-latest-promotions__promo-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold for promo titles */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-latest-promotions__promo-text {
    font-size: 1em;
    color: #B0B0B0;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-index-latest-promotions__promo-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-index-latest-promotions__promo-features li {
    color: #E0E0E0;
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.page-index-latest-promotions__promo-features li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #FFD700;
}

.page-index-latest-promotions__promo-card .page-index-latest-promotions__btn {
    width: fit-content;
    margin-top: 20px;
    align-self: flex-start;
}

/* How-To-Claim Section */
.page-index-latest-promotions__how-to-claim .page-index-latest-promotions__section-description {
    margin-bottom: 60px;
}

.page-index-latest-promotions__steps-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: left;
}

.page-index-latest-promotions__steps-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #1A237E; /* Main color for step cards */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    position: relative;
    border: 1px solid #3f51b5;
}

.page-index-latest-promotions__step-title {
    font-size: 2em;
    color: #FFD700; /* Gold for step titles */
    margin-bottom: 15px;
    position: relative;
    padding-left: 60px;
}

.page-index-latest-promotions__step-title::before {
    counter-increment: step-counter;
    content: "Bước " counter(step-counter);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #FFD700;
    color: #1A237E;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8em;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions__steps-list p {
    font-size: 1.1em;
    color: #B0B0B0;
    margin-bottom: 20px;
    max-width: 700px;
    text-align: center;
}

.page-index-latest-promotions__steps-list p a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-index-latest-promotions__steps-list p a:hover {
    text-decoration: underline;
}

.page-index-latest-promotions__step-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Why Choose Section */
.page-index-latest-promotions__why-choose {
    background-color: #0d123e;
}

.page-index-latest-promotions__feature-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    text-align: left;
}

.page-index-latest-promotions__feature-list li {
    background-color: #1A237E;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border: 1px solid #3f51b5;
}

.page-index-latest-promotions__feature-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-index-latest-promotions__feature-list p {
    color: #B0B0B0;
    font-size: 1em;
}

.page-index-latest-promotions__why-choose-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    margin-top: 50px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

/* Important Notes Section */
.page-index-latest-promotions__important-notes {
    background-color: #1A237E;
}

.page-index-latest-promotions__notes-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 800px;
    margin: 40px auto;
}

.page-index-latest-promotions__notes-list li {
    font-size: 1.1em;
    color: #E0E0E0;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.page-index-latest-promotions__notes-list li::before {
    content: '👉';
    position: absolute;
    left: 0;
    top: 0;
}

/* App Download Section */
.page-index-latest-promotions__app-download {
    background-color: #0d123e;
}

.page-index-latest-promotions__app-download-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
    text-align: left;
}

.page-index-latest-promotions__app-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.page-index-latest-promotions__app-content .page-index-latest-promotions__section-title {
    text-align: left;
    font-size: 2.2em;
}

.page-index-latest-promotions__app-content .page-index-latest-promotions__section-description {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.page-index-latest-promotions__app-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-index-latest-promotions__app-benefits li {
    color: #E0E0E0;
    font-size: 1.1em;
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.page-index-latest-promotions__app-benefits li::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 0;
    color: #FFD700;
}

.page-index-latest-promotions__app-image-wrapper {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    text-align: center;
}

.page-index-latest-promotions__app-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

/* Final CTA Section */
.page-index-latest-promotions__cta {
    background-color: #1A237E;
    padding: 80px 20px;
}

.page-index-latest-promotions__cta .page-index-latest-promotions__section-title {
    font-size: 3em;
    margin-bottom: 30px;
}

.page-index-latest-promotions__cta .page-index-latest-promotions__section-description {
    margin-bottom: 50px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .page-index-latest-promotions__hero-title {
        font-size: 3em;
    }
    .page-index-latest-promotions__section-title {
        font-size: 2.2em;
    }
    .page-index-latest-promotions__app-download-flex {
        flex-direction: column;
        text-align: center;
    }
    .page-index-latest-promotions__app-content .page-index-latest-promotions__section-title,
    .page-index-latest-promotions__app-content .page-index-latest-promotions__section-description {
        text-align: center;
    }
    .page-index-latest-promotions__app-benefits {
        text-align: left;
        margin: 0 auto 30px auto;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .page-index-latest-promotions__hero {
        padding: 80px 15px;
    }
    .page-index-latest-promotions__hero-title {
        font-size: 2.5em;
    }
    .page-index-latest-promotions__hero-subtitle {
        font-size: 1.2em;
    }
    .page-index-latest-promotions__section {
        padding: 40px 0;
    }
    .page-index-latest-promotions__section-title {
        font-size: 1.8em;
    }
    .page-index-latest-promotions__section-description {
        font-size: 1em;
    }
    .page-index-latest-promotions__promo-grid {
        grid-template-columns: 1fr;
    }
    .page-index-latest-promotions__promo-card {
        padding: 20px;
    }
    .page-index-latest-promotions__promo-title {
        font-size: 1.5em;
    }
    .page-index-latest-promotions__steps-list li {
        padding: 20px;
    }
    .page-index-latest-promotions__step-title {
        font-size: 1.5em;
        padding-left: 50px;
    }
    .page-index-latest-promotions__step-title::before {
        width: 40px;
        height: 40px;
        font-size: 0.7em;
    }
    .page-index-latest-promotions__notes-list {
        margin: 30px auto;
    }
    .page-index-latest-promotions__notes-list li {
        font-size: 1em;
        padding-left: 25px;
    }
    .page-index-latest-promotions__cta .page-index-latest-promotions__section-title {
        font-size: 2.2em;
    }
    .page-index-latest-promotions__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-index-latest-promotions__hero-title {
        font-size: 2em;
    }
    .page-index-latest-promotions__hero-subtitle {
        font-size: 1em;
    }
    .page-index-latest-promotions__section-title {
        font-size: 1.5em;
    }
    .page-index-latest-promotions__promo-title {
        font-size: 1.3em;
    }
    .page-index-latest-promotions__step-title {
        font-size: 1.3em;
    }
    .page-index-latest-promotions__feature-title {
        font-size: 1.3em;
    }
    .page-index-latest-promotions__app-content .page-index-latest-promotions__section-title {
        font-size: 1.8em;
    }
    .page-index-latest-promotions__cta .page-index-latest-promotions__section-title {
        font-size: 1.8em;
    }
}