/* style/promotions.css */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text on dark background */
    background-color: #0A2342; /* Primary deep blue */
}

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

.page-promotions__hero {
    position: relative;
    background: linear-gradient(135deg, #0A2342 0%, #1A3F6D 100%);
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.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__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Secondary gold for titles */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

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

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

.page-promotions__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A2342; /* Deep blue text on gold */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

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

.page-promotions__btn--secondary:hover {
    background-color: #e6c200;
    color: #0A2342;
    border-color: #e6c200;
}

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

.page-promotions__btn--outline:hover {
    background-color: #FFD700;
    color: #0A2342;
    transform: translateY(-2px);
}

.page-promotions__btn--text {
    background-color: transparent;
    color: #FFD700;
    padding: 8px 15px;
    border: 1px solid #FFD700;
    font-size: 0.9em;
}

.page-promotions__btn--text:hover {
    background-color: rgba(255, 215, 0, 0.1);
    color: #e6c200;
    border-color: #e6c200;
}

.page-promotions__section {
    padding: 80px 0;
    text-align: center;
}

.page-promotions__section:nth-of-type(even) {
    background-color: #1A3F6D; /* Slightly lighter blue for contrast */
}

.page-promotions__section-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.page-promotions__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-promotions__section-description {
    font-size: 1.1em;
    color: #c0c0c0;
    max-width: 900px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

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

.page-promotions__feature-item {
    background-color: #0A2342;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-promotions__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: #FFD700;
}

.page-promotions__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-promotions__feature-item h3 {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions__feature-item p {
    font-size: 1em;
    color: #a0a0a0;
    line-height: 1.5;
}

.page-promotions__main-promo .page-promotions__promo-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: left;
}

.page-promotions__main-promo .page-promotions__promo-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border: 3px solid #FFD700;
}

.page-promotions__main-promo .page-promotions__promo-content {
    background-color: #0A2342;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-promotions__main-promo .page-promotions__promo-content h3 {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 25px;
}

.page-promotions__main-promo .page-promotions__promo-content ol {
    list-style: none;
    counter-reset: promo-step;
    padding-left: 0;
    margin-bottom: 30px;
}

.page-promotions__main-promo .page-promotions__promo-content ol li {
    counter-increment: promo-step;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #e0e0e0;
    line-height: 1.6;
    position: relative;
    padding-left: 40px;
}

.page-promotions__main-promo .page-promotions__promo-content ol li::before {
    content: counter(promo-step);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #FFD700;
    color: #0A2342;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1em;
}

.page-promotions__main-promo .page-promotions__promo-content p {
    font-size: 1.1em;
    color: #c0c0c0;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.page-promotions__promo-card {
    background-color: #0A2342;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions__promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: #FFD700;
}

.page-promotions__card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.page-promotions__card-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.page-promotions__card-title a:hover {
    color: #e6c200;
}

.page-promotions__card-description {
    font-size: 0.95em;
    color: #a0a0a0;
    line-height: 1.5;
    margin-bottom: 25px;
    flex-grow: 1;
}

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

.page-promotions__step-item {
    background-color: #1A3F6D;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 280px;
}

.page-promotions__step-number {
    background-color: #FFD700;
    color: #0A2342;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 25px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.page-promotions__step-item h3 {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions__step-item p {
    font-size: 1em;
    color: #a0a0a0;
    line-height: 1.5;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-promotions__cta-bottom {
    margin-top: 60px;
    padding: 40px;
    background-color: #0A2342;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid #FFD700;
}

.page-promotions__cta-bottom p {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-promotions__cta-bottom .page-promotions__btn {
    margin: 0 15px;
}

.page-promotions__faqs .page-promotions__faq-items {
    margin-top: 50px;
    text-align: left;
}

.page-promotions__faq-item {
    background-color: #1A3F6D;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-promotions__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    padding: 20px 30px;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0A2342;
    transition: background-color 0.3s ease;
}

.page-promotions__faq-question:hover {
    background-color: #1A3F6D;
}

.page-promotions__faq-question::after {
    content: '+';
    font-size: 1.5em;
    font-weight: bold;
    color: #FFD700;
    transition: transform 0.3s ease;
}

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

.page-promotions__faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    color: #c0c0c0;
    line-height: 1.6;
}

.page-promotions__faq-answer.active {
    max-height: 500px; /* Adjust as needed for content */
    padding: 20px 30px;
}

.page-promotions__faq-answer p {
    margin-bottom: 15px;
}

.page-promotions__faq-answer .page-promotions__btn--text {
    margin-top: 10px;
}

.page-promotions__responsible-gaming {
    background-color: #0A2342;
    padding: 80px 0;
    border-top: 5px solid #FFD700;
}

.page-promotions__responsible-gaming .page-promotions__section-title {
    color: #FFD700;
}

.page-promotions__responsible-gaming .page-promotions__section-description {
    color: #c0c0c0;
    margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions__hero-title {
        font-size: 2.8em;
    }
    .page-promotions__section-title {
        font-size: 2.2em;
    }
    .page-promotions__main-promo .page-promotions__promo-details {
        flex-direction: column;
    }
    .page-promotions__main-promo .page-promotions__promo-image {
        max-width: 80%;
    }
    .page-promotions__cta-bottom .page-promotions__btn {
        margin: 10px 0;
        width: 80%;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero {
        padding: 80px 0;
    }
    .page-promotions__hero-title {
        font-size: 2.2em;
    }
    .page-promotions__hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions__section {
        padding: 60px 0;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__section-description {
        font-size: 1em;
    }
    .page-promotions__features, .page-promotions__promo-list, .page-promotions__steps {
        grid-template-columns: 1fr;
    }
    .page-promotions__main-promo .page-promotions__promo-content ol li {
        padding-left: 30px;
    }
    .page-promotions__main-promo .page-promotions__promo-content ol li::before {
        width: 25px;
        height: 25px;
        font-size: 1em;
    }
    .page-promotions__cta-bottom .page-promotions__btn {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-title {
        font-size: 1.8em;
    }
    .page-promotions__hero-subtitle {
        font-size: 0.95em;
    }
    .page-promotions__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-promotions__section-title {
        font-size: 1.6em;
    }
    .page-promotions__promo-card, .page-promotions__feature-item, .page-promotions__step-item {
        padding: 20px;
    }
    .page-promotions__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-promotions__faq-answer {
        padding: 15px 20px;
    }
}