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

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

.page-promotions__hero {
    position: relative;
    background: linear-gradient(135deg, #0A192F 0%, #3a0e0e 100%); /* Darker gradient for hero */
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.page-promotions__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.page-promotions__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Secondary gold for emphasis */
    margin-bottom: 20px;
    z-index: 2;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-subtitle {
    font-size: 1.5em;
    color: #f5e6d0;
    margin-bottom: 40px;
    max-width: 800px;
    z-index: 2;
    position: relative;
}

.page-promotions__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-promotions__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

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

.page-promotions__intro {
    background-color: #1a2a3f; /* Slightly lighter dark background */
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-promotions__text {
    font-size: 1.1em;
    color: #e0e0e0;
    margin-bottom: 20px;
    text-align: center;
    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, transform 0.3s ease;
    z-index: 2;
    position: relative;
    font-size: 1.1em;
}

.page-promotions__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0A192F;
    border: 2px solid #FFD700;
}

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

.page-promotions__btn--secondary {
    background-color: #2a3d54; /* Darker blue-grey */
    color: #FFD700;
    border: 1px solid #FFD700;
}

.page-promotions__btn--secondary:hover {
    background-color: #3e536b;
    transform: translateY(-2px);
}

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

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

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

.page-promotions__featured-promos {
    background-color: #0A192F;
}

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

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

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

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

.page-promotions__promo-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
    padding: 0 20px;
}

.page-promotions__promo-desc {
    font-size: 1em;
    color: #e0e0e0;
    margin-bottom: 25px;
    flex-grow: 1;
    padding: 0 20px;
}

.page-promotions__promo-card .page-promotions__btn {
    margin-top: auto;
}

.page-promotions__details-list {
    background-color: #1a2a3f;
    padding-bottom: 80px;
}

.page-promotions__detail-card {
    background-color: #0A192F;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin-top: 30px;
    text-align: center;
}

.page-promotions__detail-title {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.page-promotions__detail-title a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions__detail-title a:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-promotions__detail-desc {
    font-size: 1.1em;
    color: #e0e0e0;
    margin-bottom: 25px;
}

.page-promotions__how-to-claim {
    background-color: #0A192F;
}

.page-promotions__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__list-item {
    background-color: #1a2a3f;
    border-left: 5px solid #FFD700;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 1.1em;
    color: #f5e6d0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-promotions__list-item strong {
    color: #FFD700;
}

.page-promotions__responsible-gambling {
    background-color: #1a2a3f;
}

.page-promotions__cta {
    background-color: #0A192F;
    padding: 80px 0;
    text-align: center;
}

.page-promotions__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-promotions__cta-text {
    font-size: 1.3em;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__cta-small-text {
    font-size: 0.9em;
    color: #a0a0a0;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-promotions__hero {
        padding: 80px 0;
        min-height: 400px;
    }
    .page-promotions__hero-title {
        font-size: 2.5em;
    }
    .page-promotions__hero-subtitle {
        font-size: 1.2em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__grid {
        grid-template-columns: 1fr;
    }
    .page-promotions__promo-image {
        height: 180px;
    }
    .page-promotions__promo-title {
        font-size: 1.4em;
    }
    .page-promotions__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-promotions__cta-title {
        font-size: 2.2em;
    }
    .page-promotions__cta-text {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-title {
        font-size: 2em;
    }
    .page-promotions__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__promo-title {
        font-size: 1.2em;
    }
    .page-promotions__text, .page-promotions__promo-desc, .page-promotions__list-item, .page-promotions__detail-desc {
        font-size: 0.95em;
    }
}