/* style/promotions.css */
.page-promotions {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #f5e6d0; /* Light text for dark background */
    background-color: #0A192F;
}

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

.page-promotions__hero {
    background: linear-gradient(135deg, #0A192F 0%, #2a3d5e 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
}

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

.page-promotions__title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-promotions__subtitle,
.page-promotions__description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__heading {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
    font-weight: bold;
}

.page-promotions__intro-text {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promotions__btn--primary {
    background-color: #FFD700;
    color: #0A192F;
}

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

.page-promotions__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    margin-left: 20px;
}

.page-promotions__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-3px);
}

.page-promotions__btn--link {
    background-color: transparent;
    color: #FFD700;
    border: 1px solid #FFD700;
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-promotions__btn--link:hover {
    background-color: #FFD700;
    color: #0A192F;
}

.page-promotions__categories,
.page-promotions__why-choose,
.page-promotions__how-to-claim,
.page-promotions__responsible-gambling,
.page-promotions__detail-pages,
.page-promotions__final-cta {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-promotions__category-card,
.page-promotions__step-card,
.page-promotions__detail-card {
    background-color: #1a2a47;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions__category-card:hover,
.page-promotions__detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
}

.page-promotions__card-image {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-promotions__card-title,
.page-promotions__step-title,
.page-promotions__detail-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__card-title a,
.page-promotions__detail-title a {
    color: #FFD700;
    text-decoration: none;
}

.page-promotions__card-title a:hover,
.page-promotions__detail-title a:hover {
    text-decoration: underline;
}

.page-promotions__card-text,
.page-promotions__step-text,
.page-promotions__detail-description {
    font-size: 1em;
    color: #c0c0c0;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__content-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

.page-promotions__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-promotions__text-content {
    flex: 1;
}

.page-promotions__image-right,
.page-promotions__image-left {
    flex: 1;
    max-width: 50%;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-promotions__list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.page-promotions__list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    color: #f5e6d0;
}

.page-promotions__list li::before {
    content: '✓';
    color: #FFD700;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-promotions__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #FFD700;
    color: #0A192F;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
}

.page-promotions__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions__title {
        font-size: 2.8em;
    }

    .page-promotions__heading {
        font-size: 2em;
    }

    .page-promotions__content-wrapper {
        flex-direction: column;
    }

    .page-promotions__content-wrapper--reverse {
        flex-direction: column;
    }

    .page-promotions__image-right,
    .page-promotions__image-left {
        max-width: 100%;
    }

    .page-promotions__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .page-promotions__cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero {
        padding: 80px 0;
    }

    .page-promotions__title {
        font-size: 2.2em;
    }

    .page-promotions__subtitle,
    .page-promotions__description {
        font-size: 1em;
    }

    .page-promotions__heading {
        font-size: 1.8em;
        margin-bottom: 30px;
        padding-top: 40px;
    }

    .page-promotions__intro-text {
        font-size: 0.95em;
        margin-bottom: 40px;
    }

    .page-promotions__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-promotions__categories,
    .page-promotions__why-choose,
    .page-promotions__how-to-claim,
    .page-promotions__responsible-gambling,
    .page-promotions__detail-pages,
    .page-promotions__final-cta {
        padding: 60px 0;
    }

    .page-promotions__category-card,
    .page-promotions__step-card,
    .page-promotions__detail-card {
        padding: 25px;
    }

    .page-promotions__card-title,
    .page-promotions__step-title,
    .page-promotions__detail-title {
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    .page-promotions__title {
        font-size: 1.8em;
    }

    .page-promotions__heading {
        font-size: 1.5em;
    }

    .page-promotions__btn {
        width: 100%;
        box-sizing: border-box;
        margin-left: 0 !important;
    }

    .page-promotions__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-promotions__category-grid,
    .page-promotions__steps-grid,
    .page-promotions__detail-grid {
        gap: 20px;
    }
}