/* style/promotions.css */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #e5dfd3; /* Light grey for text, contrasting with dark background */
    background-color: #1A202C; /* Main dark background */
}

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

.page-promotions__hero {
    position: relative;
    background: linear-gradient(135deg, #1A202C 0%, #3a455a 100%);
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-promotions__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

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

.page-promotions__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-subtitle {
    font-size: 1.5em;
    color: #e5dfd3;
    margin-bottom: 40px;
}

.page-promotions__btn {
    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, color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    margin: 10px;
}

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

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

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

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

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

.page-promotions__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 50px;
    padding-top: 60px;
    position: relative;
}

.page-promotions__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-promotions__introduction, .page-promotions__categories, .page-promotions__details-list, .page-promotions__how-to-claim, .page-promotions__cta-section, .page-promotions__responsible-gambling {
    padding: 80px 0;
}

.page-promotions__text {
    font-size: 1.1em;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 20px;
    color: #e5dfd3;
}

.page-promotions__text a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions__text a:hover {
    text-decoration: underline;
}

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

.page-promotions__card {
    background-color: #2D3748; /* Darker grey for cards */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-promotions__card:hover {
    transform: translateY(-10px);
    background-color: #3a455a;
}

.page-promotions__card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: invert(80%) sepia(50%) saturate(2000%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Gold tint */
}

.page-promotions__card-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions__card-description {
    font-size: 1em;
    color: #e5dfd3;
    line-height: 1.6;
}

.page-promotions__offer-card {
    display: flex;
    background-color: #2D3748;
    border-radius: 10px;
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-promotions__offer-card:hover {
    transform: translateY(-5px);
}

.page-promotions__offer-image {
    width: 35%;
    height: auto;
    object-fit: cover;
}

.page-promotions__offer-content {
    padding: 30px;
    width: 65%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-promotions__offer-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions__offer-title a {
    color: #FFD700;
    text-decoration: none;
}

.page-promotions__offer-title a:hover {
    text-decoration: underline;
}

.page-promotions__offer-description {
    font-size: 1.05em;
    color: #e5dfd3;
    line-height: 1.7;
    margin-bottom: 25px;
}

.page-promotions__offer-content .page-promotions__btn {
    margin-right: 15px;
    margin-bottom: 10px; /* For stacking on smaller screens */
}

.page-promotions__offer-content .page-promotions__btn--claim {
    background-color: #FFD700;
    color: #1A202C;
    border: 2px solid #FFD700;
}

.page-promotions__offer-content .page-promotions__btn--claim:hover {
    background-color: #e5c100;
}

.page-promotions__steps {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-promotions__steps li {
    background-color: #2D3748;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-size: 1.1em;
    line-height: 1.8;
    color: #e5dfd3;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__steps li strong {
    color: #FFD700;
    font-size: 1.2em;
    display: block;
    margin-bottom: 10px;
}

.page-promotions__cta-section {
    background: linear-gradient(90deg, #1A202C 0%, #0d1016 100%);
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

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

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

.page-promotions__responsible-gambling {
    padding: 80px 0;
    text-align: center;
    background-color: #1A202C;
}

.page-promotions__responsible-image {
    max-width: 200px;
    margin-top: 30px;
    opacity: 0.8;
    filter: invert(80%) sepia(50%) saturate(2000%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Gold tint */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-promotions__hero-title {
        font-size: 2.8em;
    }
    .page-promotions__hero-subtitle {
        font-size: 1.2em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__offer-card {
        flex-direction: column;
    }
    .page-promotions__offer-image {
        width: 100%;
        height: 250px;
    }
    .page-promotions__offer-content {
        width: 100%;
        padding: 20px;
    }
    .page-promotions__offer-title {
        font-size: 1.5em;
    }
    .page-promotions__cta-title {
        font-size: 2.2em;
    }
    .page-promotions__cta-description {
        font-size: 1.1em;
    }
    .page-promotions__offer-content .page-promotions__btn {
        margin-right: 10px;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero {
        padding: 80px 0;
    }
    .page-promotions__hero-title {
        font-size: 2.2em;
    }
    .page-promotions__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-promotions__introduction, .page-promotions__categories, .page-promotions__details-list, .page-promotions__how-to-claim, .page-promotions__cta-section, .page-promotions__responsible-gambling {
        padding: 60px 0;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-promotions__text {
        font-size: 0.95em;
    }
    .page-promotions__card {
        padding: 20px;
    }
    .page-promotions__card-icon {
        width: 60px;
        height: 60px;
    }
    .page-promotions__card-title {
        font-size: 1.4em;
    }
    .page-promotions__offer-content .page-promotions__btn {
        display: block;
        width: fit-content;
        margin: 10px auto;
    }
    .page-promotions__cta-title {
        font-size: 1.8em;
    }
    .page-promotions__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-title {
        font-size: 1.8em;
    }
    .page-promotions__hero-subtitle {
        font-size: 0.9em;
    }
    .page-promotions__btn {
        margin: 5px;
    }
    .page-promotions__section-title {
        font-size: 1.5em;
    }
    .page-promotions__offer-image {
        height: 180px;
    }
    .page-promotions__offer-title {
        font-size: 1.3em;
    }
    .page-promotions__cta-title {
        font-size: 1.5em;
    }
    .page-promotions__cta-description {
        font-size: 0.9em;
    }
    .page-promotions__offer-content .page-promotions__btn {
        width: 100%;
    }
}