/* style/index-latest-promotions-preview.css */
.page-index-latest-promotions-preview {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.page-index-latest-promotions-preview-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-index-latest-promotions-preview-hero {
    background: linear-gradient(135deg, #0A2463 0%, #3a5c9d 100%); /* Dark blue gradient */
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-latest-promotions-preview-hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: auto;
    opacity: 0.2;
    z-index: 0;
}

.page-index-latest-promotions-preview-hero .page-index-latest-promotions-preview-container {
    position: relative;
    z-index: 1;
}

.page-index-latest-promotions-preview-hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold accent for title */
    font-weight: bold;
}

.page-index-latest-promotions-preview-hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-latest-promotions-preview-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;
    margin: 0 10px;
    border: 2px solid transparent;
}

.page-index-latest-promotions-preview-btn-primary {
    background-color: #FFD700; /* Gold */
    color: #0A2463; /* Dark blue text */
}

.page-index-latest-promotions-preview-btn-primary:hover {
    background-color: #e6c200;
    color: #0A2463;
}

.page-index-latest-promotions-preview-btn-secondary {
    background-color: transparent;
    color: #FFD700;
    border-color: #FFD700;
}

.page-index-latest-promotions-preview-btn-secondary:hover {
    background-color: #FFD700;
    color: #0A2463;
}

.page-index-latest-promotions-preview-section {
    padding: 60px 0;
}

.page-index-latest-promotions-preview-section:nth-of-type(even) {
    background-color: #f0f2f5;
}

.page-index-latest-promotions-preview-section-title {
    font-size: 2.2em;
    color: #0A2463; /* Dark blue */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-index-latest-promotions-preview-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #FFD700; /* Gold accent */
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-index-latest-promotions-preview-text {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px;
    color: #555;
}

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

.page-index-latest-promotions-preview-list li {
    background-color: #fff;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid #0A2463;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    font-size: 1.05em;
}

.page-index-latest-promotions-preview-keyword {
    color: #0A2463;
    font-weight: bold;
}

.page-index-latest-promotions-preview-btn-accent {
    background-color: #0A2463;
    color: #FFD700;
    border-color: #0A2463;
}

.page-index-latest-promotions-preview-btn-accent:hover {
    background-color: #FFD700;
    color: #0A2463;
}

.page-index-latest-promotions-preview-current-promos {
    background-color: #FFFFFF;
}

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

.page-index-latest-promotions-preview-promo-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-index-latest-promotions-preview-promo-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 15px;
}

.page-index-latest-promotions-preview-promo-title {
    font-size: 1.4em;
    color: #0A2463;
    margin: 0 15px 10px;
}

.page-index-latest-promotions-preview-promo-description {
    font-size: 0.95em;
    color: #666;
    padding: 0 15px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-index-latest-promotions-preview-promo-features {
    list-style: none;
    padding: 0;
    margin: 0 15px 20px;
    text-align: left;
}

.page-index-latest-promotions-preview-promo-features li {
    font-size: 0.9em;
    color: #555;
    margin-bottom: 5px;
    padding-left: 20px;
    position: relative;
    border: none;
    background-color: transparent;
    box-shadow: none;
}

.page-index-latest-promotions-preview-promo-features li::before {
    content: '✓';
    color: #0A2463; /* Dark blue checkmark */
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-index-latest-promotions-preview-btn-small {
    padding: 8px 18px;
    font-size: 0.9em;
}

.page-index-latest-promotions-preview-note {
    font-size: 0.9em;
    color: #888;
    margin-top: 40px;
}

.page-index-latest-promotions-preview-how-to-claim {
    background-color: #f0f2f5;
}

.page-index-latest-promotions-preview-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    position: relative;
}

.page-index-latest-promotions-preview-steps-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background-color: #ccc;
    z-index: 0;
    display: none; /* Hide line on mobile */
}

@media (min-width: 768px) {
    .page-index-latest-promotions-preview-steps-grid::before {
        display: block;
    }
}

.page-index-latest-promotions-preview-step-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 30px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-index-latest-promotions-preview-step-icon {
    width: 60px;
    height: 60px;
    background-color: #0A2463; /* Dark blue */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    color: #FFFFFF;
    font-weight: bold;
    margin-bottom: 20px;
    border: 3px solid #FFD700;
}

.page-index-latest-promotions-preview-step-title {
    font-size: 1.3em;
    color: #0A2463;
    margin-bottom: 10px;
}

.page-index-latest-promotions-preview-step-description {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 20px;
}

.page-index-latest-promotions-preview-btn-outline {
    background-color: transparent;
    color: #0A2463;
    border-color: #0A2463;
}

.page-index-latest-promotions-preview-btn-outline:hover {
    background-color: #0A2463;
    color: #FFD700;
}

.page-index-latest-promotions-preview-process-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.page-index-latest-promotions-preview-app-exclusive {
    background-color: #0A2463;
    color: #FFFFFF;
}

.page-index-latest-promotions-preview-app-exclusive .page-index-latest-promotions-preview-section-title,
.page-index-latest-promotions-preview-app-exclusive .page-index-latest-promotions-preview-text {
    color: #FFFFFF;
}

.page-index-latest-promotions-preview-app-exclusive .page-index-latest-promotions-preview-section-title::after {
    background-color: #FFD700;
}

.page-index-latest-promotions-preview-app-promo-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .page-index-latest-promotions-preview-app-promo-content {
        flex-direction: row;
        text-align: left;
    }
}

.page-index-latest-promotions-preview-app-text-content {
    flex: 1;
}

.page-index-latest-promotions-preview-app-text-content .page-index-latest-promotions-preview-list li {
    background-color: rgba(255,255,255,0.1);
    border-left-color: #FFD700;
    color: #FFFFFF;
}

.page-index-latest-promotions-preview-app-image {
    flex: 1;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.page-index-latest-promotions-preview-promo-types {
    background-color: #FFFFFF;
}

.page-index-latest-promotions-preview-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.page-index-latest-promotions-preview-type-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    border-top: 4px solid #0A2463;
}

.page-index-latest-promotions-preview-type-title {
    font-size: 1.3em;
    color: #0A2463;
    margin-bottom: 10px;
}

.page-index-latest-promotions-preview-type-description {
    font-size: 0.95em;
    color: #666;
}

.page-index-latest-promotions-preview-types-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.page-index-latest-promotions-preview-terms {
    background-color: #f0f2f5;
}

.page-index-latest-promotions-preview-terms-list {
    list-style: decimal;
    padding-left: 20px;
    text-align: left;
}

.page-index-latest-promotions-preview-terms-list li {
    border-left: none;
    background-color: transparent;
    box-shadow: none;
    padding: 10px 0;
    margin-bottom: 5px;
}

.page-index-latest-promotions-preview-faq {
    background-color: #FFFFFF;
}

.page-index-latest-promotions-preview-faq-item {
    background-color: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
}

.page-index-latest-promotions-preview-faq-question {
    font-size: 1.15em;
    color: #0A2463;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-index-latest-promotions-preview-faq-answer {
    font-size: 1em;
    color: #555;
}

.page-index-latest-promotions-preview-faq-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.page-index-latest-promotions-preview-cta {
    background-color: #0A2463;
    color: #FFFFFF;
    text-align: center;
    padding: 80px 0;
}

.page-index-latest-promotions-preview-cta .page-index-latest-promotions-preview-section-title {
    color: #FFD700;
}

.page-index-latest-promotions-preview-cta .page-index-latest-promotions-preview-section-title::after {
    background-color: #FFD700;
}

.page-index-latest-promotions-preview-cta .page-index-latest-promotions-preview-text {
    color: #FFFFFF;
    margin-bottom: 40px;
}

.page-index-latest-promotions-preview-btn-large {
    padding: 15px 35px;
    font-size: 1.2em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-index-latest-promotions-preview-hero-title {
        font-size: 2em;
    }
    .page-index-latest-promotions-preview-hero-subtitle {
        font-size: 1em;
    }
    .page-index-latest-promotions-preview-section-title {
        font-size: 1.8em;
    }
    .page-index-latest-promotions-preview-promo-grid,
    .page-index-latest-promotions-preview-steps-grid,
    .page-index-latest-promotions-preview-type-grid {
        grid-template-columns: 1fr;
    }
    .page-index-latest-promotions-preview-hero-image {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .page-index-latest-promotions-preview-hero-title {
        font-size: 1.6em;
    }
    .page-index-latest-promotions-preview-btn {
        margin: 5px 0;
        width: 100%;
        box-sizing: border-box;
    }
    .page-index-latest-promotions-preview-hero .page-index-latest-promotions-preview-btn-secondary {
        display: none; /* Hide secondary button on very small screens if space is an issue */
    }
    .page-index-latest-promotions-preview-hero-image {
        display: none; /* Hide decorative image on smallest screens */
    }
    .page-index-latest-promotions-preview-app-image {
        max-width: 100%;
    }
}