/* style/index-latest-promotions-entry.css */
.page-index-latest-promotions-entry {
    --primary-color: #0A192F;
    --accent-color: #FFD700;
    --text-on-dark: #FFFFFF;
    --text-on-light: #0A192F;
    --light-bg: #F0F2F5; /* A light grey for contrast with dark text */
    --dark-bg-text-contrast: #6c7582; /* Lighter variant of primary for text on light bg */
    --accent-bg-text-contrast: #998100; /* Darker variant of accent for text on accent bg */
    font-family: 'Arial', sans-serif;
    color: var(--text-on-light); /* Default text color for light backgrounds */
    line-height: 1.6;
}

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

.page-index-latest-promotions-entry__hero {
    background: linear-gradient(135deg, var(--primary-color), #2c3e50);
    color: var(--text-on-dark);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

.page-index-latest-promotions-entry__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}

.page-index-latest-promotions-entry__hero .page-index-latest-promotions-entry__container {
    position: relative;
    z-index: 1;
}

.page-index-latest-promotions-entry__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-index-latest-promotions-entry__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-on-dark);
}

.page-index-latest-promotions-entry__button {
    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;
}

.page-index-latest-promotions-entry__button--primary {
    background-color: var(--accent-color);
    color: var(--primary-color); /* Dark text on accent background */
}

.page-index-latest-promotions-entry__button--primary:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-2px);
}

.page-index-latest-promotions-entry__button--secondary {
    background-color: var(--primary-color);
    color: var(--accent-color); /* Accent text on primary background */
    border: 1px solid var(--accent-color);
}

.page-index-latest-promotions-entry__button--secondary:hover {
    background-color: #050d1a; /* Slightly darker primary */
    transform: translateY(-2px);
}

.page-index-latest-promotions-entry__section {
    padding: 60px 0;
    background-color: var(--light-bg); /* Default section background */
    color: var(--text-on-light);
}

.page-index-latest-promotions-entry__section:nth-of-type(even) {
    background-color: #e9ecef; /* Slightly different light background for alternating sections */
}

.page-index-latest-promotions-entry__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-index-latest-promotions-entry__section-text {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: var(--primary-color); /* Dark text on light background */
}

.page-index-latest-promotions-entry__why-choose .page-index-latest-promotions-entry__section-text,
.page-index-latest-promotions-entry__how-to-claim .page-index-latest-promotions-entry__section-text,
.page-index-latest-promotions-entry__security .page-index-latest-promotions-entry__section-text,
.page-index-latest-promotions-entry__cta .page-index-latest-promotions-entry__section-text {
    color: var(--text-on-light);
}

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

.page-index-latest-promotions-entry__feature-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: var(--text-on-light);
    transition: transform 0.3s ease;
}

.page-index-latest-promotions-entry__feature-item:hover {
    transform: translateY(-5px);
}

.page-index-latest-promotions-entry__feature-title {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-latest-promotions-entry__feature-description {
    font-size: 1em;
    color: #555;
}

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

.page-index-latest-promotions-entry__promo-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    color: var(--text-on-light);
}

.page-index-latest-promotions-entry__promo-card:hover {
    transform: translateY(-5px);
}

.page-index-latest-promotions-entry__promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-index-latest-promotions-entry__promo-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.page-index-latest-promotions-entry__promo-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-index-latest-promotions-entry__promo-description {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-index-latest-promotions-entry__promo-content .page-index-latest-promotions-entry__button {
    align-self: flex-start;
    background-color: var(--primary-color);
    color: var(--accent-color); /* Accent text on primary background */
    padding: 10px 20px;
    font-size: 1em;
    border: 1px solid var(--accent-color);
}

.page-index-latest-promotions-entry__promo-content .page-index-latest-promotions-entry__button:hover {
    background-color: #050d1a;
}

.page-index-latest-promotions-entry__how-to-claim .page-index-latest-promotions-entry__section-text {
    margin-bottom: 40px;
}

.page-index-latest-promotions-entry__steps-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-index-latest-promotions-entry__steps-list li {
    background-color: #FFFFFF;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--text-on-light);
}

.page-index-latest-promotions-entry__step-title {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-index-latest-promotions-entry__step-description {
    font-size: 1em;
    color: #555;
}

.page-index-latest-promotions-entry__link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-index-latest-promotions-entry__link:hover {
    color: var(--accent-color);
}

.page-index-latest-promotions-entry__security {
    background-color: var(--primary-color);
    color: var(--text-on-dark);
    text-align: center;
    padding: 80px 0;
}

.page-index-latest-promotions-entry__security .page-index-latest-promotions-entry__section-title {
    color: var(--accent-color);
}

.page-index-latest-promotions-entry__security .page-index-latest-promotions-entry__section-text {
    color: var(--text-on-dark);
    max-width: 900px;
    margin: 0 auto 30px auto;
}

.page-index-latest-promotions-entry__security-image {
    max-width: 150px;
    height: auto;
    margin: 30px auto;
    display: block;
}

.page-index-latest-promotions-entry__cta {
    text-align: center;
    padding: 80px 0;
    background-color: var(--light-bg);
    color: var(--text-on-light);
}

.page-index-latest-promotions-entry__cta .page-index-latest-promotions-entry__section-title {
    color: var(--primary-color);
}

.page-index-latest-promotions-entry__cta .page-index-latest-promotions-entry__section-text {
    color: var(--primary-color);
}

.page-index-latest-promotions-entry .highlight {
    color: var(--accent-color);
}

.page-index-latest-promotions-entry .keyword {
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-latest-promotions-entry__hero-title {
        font-size: 2.8em;
    }
    .page-index-latest-promotions-entry__hero-description {
        font-size: 1.1em;
    }
    .page-index-latest-promotions-entry__section-title {
        font-size: 2em;
    }
    .page-index-latest-promotions-entry__features-grid,
    .page-index-latest-promotions-entry__promotions-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-index-latest-promotions-entry__hero {
        padding: 60px 0;
    }
    .page-index-latest-promotions-entry__hero-title {
        font-size: 2.2em;
    }
    .page-index-latest-promotions-entry__hero-description {
        font-size: 1em;
    }
    .page-index-latest-promotions-entry__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-index-latest-promotions-entry__section {
        padding: 40px 0;
    }
    .page-index-latest-promotions-entry__section-title {
        font-size: 1.8em;
    }
    .page-index-latest-promotions-entry__feature-title {
        font-size: 1.4em;
    }
    .page-index-latest-promotions-entry__promo-title {
        font-size: 1.3em;
    }
    .page-index-latest-promotions-entry__promo-image {
        height: 180px;
    }
    .page-index-latest-promotions-entry__steps-list li {
        padding: 20px;
    }
    .page-index-latest-promotions-entry__step-title {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-index-latest-promotions-entry__hero-title {
        font-size: 1.8em;
    }
    .page-index-latest-promotions-entry__hero-description {
        font-size: 0.9em;
    }
    .page-index-latest-promotions-entry__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-index-latest-promotions-entry__section-title {
        font-size: 1.5em;
    }
    .page-index-latest-promotions-entry__features-grid,
    .page-index-latest-promotions-entry__promotions-grid {
        grid-template-columns: 1fr;
    }
    .page-index-latest-promotions-entry__feature-item,
    .page-index-latest-promotions-entry__promo-card {
        margin: 0 10px;
    }
    .page-index-latest-promotions-entry__container {
        padding: 0 15px;
    }
}