/* style/promotions.css */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0A1A3A; /* Primary dark blue background */
    line-height: 1.6;
}

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

.page-promotions__hero {
    background: linear-gradient(135deg, #0A1A3A 0%, #1A3A6A 100%); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700; /* Gold accent */
}

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

.page-promotions__hero-subtitle {
    font-size: 1.4em;
    color: #C0C0C0; /* Lighter gray for subtitle */
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promotions__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for section titles */
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

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

.page-promotions__text {
    font-size: 1.1em;
    color: #E0E0E0;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__text a {
    color: #FFD700; /* Gold for links in text */
    text-decoration: none;
    font-weight: bold;
}

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

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

.page-promotions__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A1A3A; /* Dark blue text */
}

.page-promotions__btn--primary:hover {
    background-color: #E6C200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.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: #0A1A3A;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions__btn--small {
    padding: 10px 20px;
    font-size: 1em;
    margin-top: 20px;
}

.page-promotions__btn--link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    display: inline-block;
    margin-top: 15px;
}

.page-promotions__btn--link:hover {
    text-decoration: underline;
}

.page-promotions__overview {
    background-color: #1A2B4C;
}

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

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

.page-promotions__grid-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions__icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

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

.page-promotions__grid-item p {
    color: #C0C0C0;
    font-size: 1em;
}

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

.page-promotions__promo-card {
    display: flex;
    flex-wrap: wrap;
    background-color: #1A2B4C;
    border-radius: 10px;
    margin-bottom: 40px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    text-align: left;
}

.page-promotions__promo-card:nth-child(even) {
    flex-direction: row-reverse; /* Alternate image and text */
}

.page-promotions__promo-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: cover;
}

.page-promotions__promo-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.page-promotions__promo-description {
    color: #E0E0E0;
    margin-bottom: 20px;
}

.page-promotions__promo-details {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-promotions__promo-details li {
    color: #C0C0C0;
    margin-bottom: 8px;
}

.page-promotions__highlight {
    color: #FFD700;
}

.page-promotions__detail-list {
    background-color: #1A2B4C;
}

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

.page-promotions__list-item {
    background-color: #0A1A3A;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
    display: flex;
    flex-direction: column;
}

.page-promotions__list-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    flex-grow: 1;
}

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

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

.page-promotions__list-description {
    color: #C0C0C0;
    margin-bottom: 20px;
}

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

.page-promotions__steps {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 800px;
    margin: 40px auto;
}

.page-promotions__steps li {
    background-color: #1A2B4C;
    color: #E0E0E0;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    font-size: 1.1em;
    position: relative;
    padding-left: 60px;
}

.page-promotions__steps li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #FFD700;
    color: #0A1A3A;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2em;
}

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

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

.page-promotions__why-8win55 {
    background-color: #1A2B4C;
}

.page-promotions__image-full-width {
    width: 100%;
    max-width: 800px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-promotions__benefits-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 900px;
    margin: 40px auto;
}

.page-promotions__benefits-list li {
    background-color: #0A1A3A;
    color: #E0E0E0;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    font-size: 1.1em;
    border-left: 5px solid #FFD700;
}

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

.page-promotions__faq-item {
    background-color: #1A2B4C;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    text-align: left;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-question {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
}

.page-promotions__faq-answer {
    color: #C0C0C0;
    font-size: 1.1em;
    display: block; /* Ensure answer is visible by default for static page */
}

/* Responsive Design */
@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: 2.2em;
    }
    .page-promotions__promo-card {
        flex-direction: column;
    }
    .page-promotions__promo-card:nth-child(even) {
        flex-direction: column; 
    }
    .page-promotions__promo-img {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .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--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__text, .page-promotions__promo-description, .page-promotions__grid-item p, .page-promotions__faq-answer {
        font-size: 0.95em;
    }
    .page-promotions__item-title {
        font-size: 1.5em;
    }
    .page-promotions__promo-title {
        font-size: 1.6em;
    }
    .page-promotions__list-title {
        font-size: 1.3em;
    }
    .page-promotions__steps li {
        padding: 15px 20px 15px 50px;
        font-size: 1em;
    }
    .page-promotions__steps li::before {
        left: 15px;
        width: 25px;
        height: 25px;
        font-size: 1em;
    }
    .page-promotions__faq-question {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero {
        padding: 60px 0;
    }
    .page-promotions__hero-title {
        font-size: 1.8em;
    }
    .page-promotions__section {
        padding: 40px 0;
    }
    .page-promotions__section-title {
        font-size: 1.5em;
    }
    .page-promotions__btn {
        width: 100%;
        margin-left: 0 !important;
        margin-bottom: 10px;
    }
    .page-promotions__grid, .page-promotions__list {
        grid-template-columns: 1fr;
    }
    .page-promotions__promo-card {
        padding: 0;
    }
    .page-promotions__promo-content {
        padding: 20px;
    }
    .page-promotions__promo-img {
        border-radius: 10px 10px 0 0;
    }
    .page-promotions__list-item {
        padding: 20px;
    }
    .page-promotions__faq-item {
        padding: 15px;
    }
    .page-promotions__faq-question {
        font-size: 1.1em;
    }
}