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

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

.page-promotions__hero {
    background: linear-gradient(135deg, #0A1931 0%, #1a3a6b 100%);
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

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

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

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

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

.page-promotions__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__hero-button {
    display: inline-block;
    background-color: #FFC107; /* Auxiliary color for CTA */
    color: #0A1931;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__hero-button:hover {
    background-color: #e6b000;
    transform: translateY(-3px);
}

.page-promotions__intro, .page-promotions__how-to-claim, .page-promotions__faq, .page-promotions__call-to-action, .page-promotions__responsible-gaming {
    padding: 60px 0;
    text-align: center;
}

.page-promotions__intro {
    background-color: #0F284B;
}

.page-promotions__section-title {
    font-size: 2.8em;
    color: #FFC107; /* Auxiliary color for titles */
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-promotions__section-description {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #f5e6ce;
}

.page-promotions__text-block {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 20px auto;
    text-align: left;
    color: #e0e0e0;
}

.page-promotions__cta-button {
    display: inline-block;
    background-color: #FFC107;
    color: #0A1931;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 30px;
    transition: background-color 0.3s ease;
}

.page-promotions__cta-button:hover {
    background-color: #e6b000;
}

.page-promotions__featured-promos {
    background-color: #0A1931;
    padding: 80px 0;
}

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

.page-promotions__promo-card {
    background-color: #0F284B;
    border-radius: 10px;
    overflow: hidden;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.page-promotions__promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #FFC107;
}

.page-promotions__promo-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.6em;
    color: #FFC107;
    margin: 0;
}

.page-promotions__promo-card h3 a {
    color: #FFC107;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions__promo-card h3 a:hover {
    color: #FFFFFF;
}

.page-promotions__promo-description {
    padding: 0 20px 20px;
    color: #e0e0e0;
    flex-grow: 1;
}

.page-promotions__promo-button {
    display: inline-block;
    background-color: #FFC107;
    color: #0A1931;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin: 0 20px 20px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.page-promotions__promo-button:hover {
    background-color: #e6b000;
}

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

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

.page-promotions__step-item {
    background-color: #0A1931;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-promotions__step-item:hover {
    transform: translateY(-5px);
}

.page-promotions__step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFC107;
    border-radius: 50%;
}

.page-promotions__step-icon img {
    width: 50px;
    height: 50px;
}

.page-promotions__step-title {
    font-size: 1.5em;
    color: #FFC107;
    margin-bottom: 15px;
}

.page-promotions__step-text {
    color: #e0e0e0;
    font-size: 1em;
}

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

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

.page-promotions__faq {
    background-color: #0A1931;
}

.page-promotions__accordion {
    max-width: 900px;
    margin: 50px auto 0 auto;
    text-align: left;
}

.page-promotions__accordion-item {
    margin-bottom: 15px;
    border: 1px solid #1a3a6b;
    border-radius: 8px;
    overflow: hidden;
}

.page-promotions__accordion-header {
    background-color: #0F284B;
    color: #FFC107;
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-promotions__accordion-header:hover {
    background-color: #1a3a6b;
}

.page-promotions__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    color: #FFC107;
    transition: transform 0.3s ease;
}

.page-promotions__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions__accordion-content {
    padding: 0 25px;
    background-color: #0A1931;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions__accordion-content p {
    padding: 15px 0;
    margin: 0;
    color: #e0e0e0;
}

.page-promotions__accordion-content a {
    color: #FFC107;
    text-decoration: none;
    font-weight: bold;
}

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

.page-promotions__call-to-action {
    background-color: #0F284B;
    padding: 80px 0;
}

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

.page-promotions__cta-main-button,
.page-promotions__cta-secondary-button {
    display: inline-block;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__cta-main-button {
    background-color: #FFC107;
    color: #0A1931;
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.page-promotions__cta-main-button:hover {
    background-color: #e6b000;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.6);
}

.page-promotions__cta-secondary-button {
    background-color: transparent;
    border: 2px solid #FFC107;
    color: #FFC107;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__cta-secondary-button:hover {
    background-color: #FFC107;
    color: #0A1931;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.6);
}

.page-promotions__responsible-gaming {
    background-color: #0A1931;
    padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions__hero-title {
        font-size: 3em;
    }
    .page-promotions__section-title {
        font-size: 2.2em;
    }
    .page-promotions__promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions__hero {
        padding: 60px 0;
    }
    .page-promotions__hero-title {
        font-size: 2.5em;
    }
    .page-promotions__hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions__intro, .page-promotions__how-to-claim, .page-promotions__faq, .page-promotions__call-to-action, .page-promotions__responsible-gaming {
        padding: 40px 0;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__section-description,
    .page-promotions__text-block {
        font-size: 1em;
    }
    .page-promotions__promo-card {
        margin-bottom: 20px;
    }
    .page-promotions__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions__cta-main-button,
    .page-promotions__cta-secondary-button {
        font-size: 1.1em;
        padding: 15px 30px;
    }
    .page-promotions__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-title {
        font-size: 2em;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__promo-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions__hero-button,
    .page-promotions__cta-main-button,
    .page-promotions__cta-secondary-button {
        width: 90%;
        max-width: 300px;
    }
}