/* style/index-featured-promotions.css */

:root {
    --page-primary-color: #1A202C;
    --page-secondary-color: #FFD700;
    --page-text-light: #F8F8F8;
    --page-text-dark: #333333;
    --page-background-dark: #1A202C;
    --page-background-light: #F0F2F5;
    --page-accent-gold-dark: #b39700;
    --page-accent-gold-light: #ffe033;
}

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

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

.page-index-featured-promotions .highlight {
    color: var(--page-secondary-color);
}

.page-index-featured-promotions__hero {
    background: linear-gradient(135deg, var(--page-primary-color) 0%, #3a475a 100%);
    color: var(--page-text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-index-featured-promotions__hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 500px;
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
}

.page-index-featured-promotions__hero .page-index-featured-promotions__container {
    position: relative;
    z-index: 1;
}

.page-index-featured-promotions__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: var(--page-text-light);
}

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

.page-index-featured-promotions__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-index-featured-promotions__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-index-featured-promotions__btn--primary {
    background-color: var(--page-secondary-color);
    color: var(--page-primary-color);
}

.page-index-featured-promotions__btn--primary:hover {
    background-color: var(--page-accent-gold-dark);
    transform: translateY(-2px);
}

.page-index-featured-promotions__btn--secondary {
    background-color: transparent;
    color: var(--page-secondary-color);
    border: 2px solid var(--page-secondary-color);
}

.page-index-featured-promotions__btn--secondary:hover {
    background-color: var(--page-secondary-color);
    color: var(--page-primary-color);
    transform: translateY(-2px);
}

.page-index-featured-promotions__section {
    padding: 60px 0;
}

.page-index-featured-promotions__section:nth-of-type(even) {
    background-color: #ffffff;
}

.page-index-featured-promotions__section-title {
    font-size: 2.5em;
    color: var(--page-primary-color);
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-index-featured-promotions__section-description {
    font-size: 1.1em;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-featured-promotions__text {
    font-size: 1.05em;
    margin-bottom: 15px;
    color: var(--page-text-dark);
}

.page-index-featured-promotions__text:last-child {
    margin-bottom: 0;
}

.page-index-featured-promotions__promotions-grid {
    background-color: var(--page-background-light);
}

.page-index-featured-promotions__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-index-featured-promotions__promotion-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-index-featured-promotions__promotion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.page-index-featured-promotions__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.page-index-featured-promotions__card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

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

.page-index-featured-promotions__card-description {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
}

.page-index-featured-promotions__card-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-index-featured-promotions__card-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.95em;
    color: #444;
}

.page-index-featured-promotions__card-features li .icon-check {
    color: var(--page-secondary-color);
    margin-right: 10px;
    font-size: 1.2em;
    /* Placeholder for a checkmark icon */
    content: '✓'; /* Fallback for actual icon font */
}

.page-index-featured-promotions__btn--card {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    font-size: 1em;
    border-radius: 6px;
}

.page-index-featured-promotions__why-choose {
    background-color: #ffffff;
}

.page-index-featured-promotions__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-featured-promotions__feature-item {
    text-align: center;
    padding: 30px;
    background-color: var(--page-background-light);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-index-featured-promotions__feature-item:hover {
    transform: translateY(-5px);
}

.page-index-featured-promotions__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-index-featured-promotions__feature-title {
    font-size: 1.4em;
    color: var(--page-primary-color);
    margin-bottom: 15px;
}

.page-index-featured-promotions__how-to-claim {
    background-color: var(--page-background-light);
}

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

.page-index-featured-promotions__step-item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-index-featured-promotions__step-number {
    width: 50px;
    height: 50px;
    background-color: var(--page-secondary-color);
    color: var(--page-primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-index-featured-promotions__step-title {
    font-size: 1.5em;
    color: var(--page-primary-color);
    margin-bottom: 15px;
}

.page-index-featured-promotions__btn--small {
    padding: 10px 20px;
    font-size: 0.95em;
    margin-top: 20px;
}

.page-index-featured-promotions__cta-banner {
    background: linear-gradient(90deg, var(--page-primary-color) 0%, #3a475a 100%);
    color: var(--page-text-light);
    padding: 80px 0;
}

.page-index-featured-promotions__cta-banner .page-index-featured-promotions__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.page-index-featured-promotions__cta-content {
    flex: 1;
    min-width: 300px;
}

.page-index-featured-promotions__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--page-text-light);
}

.page-index-featured-promotions__cta-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #cccccc;
}

.page-index-featured-promotions__cta-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.page-index-featured-promotions__cta-image {
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-index-featured-promotions__responsible-gaming {
    background-color: #ffffff;
}

.page-index-featured-promotions__faq {
    background-color: var(--page-background-light);
}

.page-index-featured-promotions__faq-list {
    margin-top: 40px;
}

.page-index-featured-promotions__faq-item {
    background-color: #ffffff;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-index-featured-promotions__faq-question {
    font-size: 1.3em;
    color: var(--page-primary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-index-featured-promotions__faq-answer {
    font-size: 1em;
    color: #555;
}

.page-index-featured-promotions__final-cta {
    background: var(--page-primary-color);
    color: var(--page-text-light);
    text-align: center;
    padding: 80px 0;
}

.page-index-featured-promotions__final-cta .page-index-featured-promotions__section-title {
    color: var(--page-text-light);
}

.page-index-featured-promotions__final-cta .page-index-featured-promotions__text {
    color: #cccccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.page-index-featured-promotions__final-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-index-featured-promotions__hero-title {
        font-size: 3em;
    }
    .page-index-featured-promotions__section-title {
        font-size: 2.2em;
    }
    .page-index-featured-promotions__cta-banner .page-index-featured-promotions__container {
        flex-direction: column;
        text-align: center;
    }
    .page-index-featured-promotions__cta-content {
        order: 2;
    }
    .page-index-featured-promotions__cta-image {
        order: 1;
        margin-bottom: 30px;
    }
    .page-index-featured-promotions__cta-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-index-featured-promotions__hero {
        padding: 80px 0;
    }
    .page-index-featured-promotions__hero-title {
        font-size: 2.5em;
    }
    .page-index-featured-promotions__hero-subtitle {
        font-size: 1.2em;
    }
    .page-index-featured-promotions__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-index-featured-promotions__btn {
        width: 80%;
        max-width: 300px;
    }
    .page-index-featured-promotions__section {
        padding: 40px 0;
    }
    .page-index-featured-promotions__section-title {
        font-size: 2em;
    }
    .page-index-featured-promotions__grid, .page-index-featured-promotions__features, .page-index-featured-promotions__steps {
        grid-template-columns: 1fr;
    }
    .page-index-featured-promotions__cta-title {
        font-size: 2.2em;
    }
    .page-index-featured-promotions__cta-description {
        font-size: 1em;
    }
    .page-index-featured-promotions__cta-image {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-index-featured-promotions__hero-title {
        font-size: 2em;
    }
    .page-index-featured-promotions__hero-subtitle {
        font-size: 1em;
    }
    .page-index-featured-promotions__btn {
        width: 100%;
    }
    .page-index-featured-promotions__section-title {
        font-size: 1.8em;
    }
    .page-index-featured-promotions__card-title {
        font-size: 1.4em;
    }
    .page-index-featured-promotions__feature-title, .page-index-featured-promotions__step-title, .page-index-featured-promotions__faq-question {
        font-size: 1.2em;
    }
}