/* style/promotions.css */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #F5F5F5; /* Light grey for general text on dark backgrounds */
    background-color: #0A1931; /* Deep blue primary background */
    line-height: 1.6;
}

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

.page-promotions__hero {
    background: linear-gradient(135deg, #0A1931 0%, #1a2a47 100%); /* Dark blue gradient */
    color: #F5F5F5;
    padding: 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.page-promotions__hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-promotions__hero-title {
    font-size: 3.2em;
    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,
.page-promotions__hero-text {
    font-size: 1.2em;
    margin-bottom: 25px;
    color: #E0E0E0;
}

.page-promotions__hero-image-wrapper {
    margin-top: 40px;
    width: 100%;
    max-width: 900px;
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin: 60px 0 30px;
    padding-bottom: 15px;
    position: relative;
}

.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__text {
    font-size: 1.1em;
    color: #E0E0E0;
    text-align: justify;
    margin-bottom: 20px;
}

.page-promotions__intro,
.page-promotions__categories,
.page-promotions__detail-list,
.page-promotions__faq,
.page-promotions__maximize-tips,
.page-promotions__responsible-gambling {
    padding: 60px 0;
}

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

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

.page-promotions__feature-item {
    background-color: #1A2B4C; /* Slightly lighter dark blue */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-promotions__feature-item:hover {
    transform: translateY(-10px);
    background-color: #2A3C5C;
}

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

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

.page-promotions__feature-description {
    font-size: 1em;
    color: #E0E0E0;
}

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

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

.page-promotions__category-item:hover {
    transform: translateY(-8px);
    background-color: #2A3C5C;
}

.page-promotions__category-image {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.page-promotions__category-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-promotions__category-description {
    font-size: 0.95em;
    color: #E0E0E0;
    margin-bottom: 20px;
}

.page-promotions__promo-item {
    background-color: #0F203E;
    border: 1px solid #1A2B4C;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions__promo-title {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.page-promotions__promo-title a {
    color: #FFD700; /* Gold for promo titles */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions__promo-title a:hover {
    color: #FFE566; /* Lighter gold on hover */
    text-decoration: underline;
}

.page-promotions__promo-description {
    color: #E0E0E0;
    font-size: 1em;
    margin-bottom: 15px;
}

.page-promotions__faq-item {
    background-color: #1A2B4C;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    padding: 20px 25px;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
}

.page-promotions__faq-question:hover {
    background-color: #2A3C5C;
}

.page-promotions__faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

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

.page-promotions__faq-answer {
    display: none;
    padding: 0 25px 20px;
    color: #E0E0E0;
    font-size: 1em;
    background-color: #0F203E;
}

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

.page-promotions__tip-list,
.page-promotions__responsible-gambling p {
    color: #E0E0E0;
    font-size: 1.1em;
}

.page-promotions__tip-list {
    list-style: disc inside;
    margin-top: 20px;
    padding-left: 20px;
}

.page-promotions__tip-list li {
    margin-bottom: 10px;
}

.page-promotions__tip-list strong {
    color: #FFD700;
}

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

.page-promotions__cta--bottom {
    margin-top: 60px;
    border-top: 1px solid #1A2B4C;
}

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

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

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

.page-promotions__btn--primary:hover {
    background-color: #FFE566; /* Lighter gold on hover */
    transform: translateY(-3px);
}

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

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

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-promotions__hero {
        padding: 60px 0;
    }

    .page-promotions__hero-title {
        font-size: 2.5em;
    }

    .page-promotions__hero-subtitle,
    .page-promotions__hero-text {
        font-size: 1em;
    }

    .page-promotions__section-title {
        font-size: 2em;
    }

    .page-promotions__features,
    .page-promotions__category-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions__feature-item,
    .page-promotions__category-item {
        padding: 20px;
    }

    .page-promotions__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-promotions__faq-question::after {
        right: 20px;
    }

    .page-promotions__faq-answer {
        padding: 0 20px 15px;
    }

    .page-promotions__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .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__text {
        font-size: 0.95em;
    }

    .page-promotions__promo-title {
        font-size: 1.5em;
    }

    .page-promotions__btn {
        width: 100%;
        max-width: 280px;
    }
}