.page-promotions {
    background-color: #0A0A0A;
    color: #FFF6D6;
    padding-bottom: 40px;
}

.page-promotions__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 20px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 20px;
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.page-promotions__hero-content {
    max-width: 800px;
}

.page-promotions__main-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #F2C14E;
}

.page-promotions__description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.page-promotions__cta-button {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-width: 180px;
    text-align: center;
    border: none;
}

.page-promotions__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

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

.page-promotions__tabs-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid #3A2A12;
    padding-bottom: 10px;
}

.page-promotions__tab-button {
    background-color: #111111;
    color: #FFF6D6;
    border: 1px solid #3A2A12;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.page-promotions__tab-button:hover {
    background-color: #3A2A12;
    color: #FFD36B;
}

.page-promotions__tab-button--active {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    border-color: #FFD36B;
}

.page-promotions__tab-content {
    display: none;
}

.page-promotions__tab-content--active {
    display: block;
}

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

.page-promotions__promotion-card {
    background-color: #111111;
    border: 1px solid #3A2A12;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-promotions__promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-promotions__card-image {
    width: 100%;
    height: 225px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-promotions__card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-promotions__card-title {
    font-size: 1.4rem;
    color: #F2C14E;
    margin-bottom: 10px;
    line-height: 1.3;
}

.page-promotions__card-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #FFF6D6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.page-promotions__card-date {
    font-size: 0.85rem;
    color: #FFD36B;
    margin-bottom: 15px;
    display: block;
}

.page-promotions__card-button {
    display: block;
    width: 100%;
    padding: 12px 15px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1rem;
    text-align: center;
    transition: background-color 0.3s ease;
    border: none;
}

.page-promotions__card-button:hover {
    opacity: 0.9;
}

.page-promotions__faq-section {
    max-width: 900px;
    margin: 60px auto 40px;
    padding: 0 20px;
}

.page-promotions__faq-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: #F2C14E;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.page-promotions__faq-list {
    background-color: #111111;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #3A2A12;
}

.page-promotions__faq-item {
    border-bottom: 1px solid #3A2A12;
}

.page-promotions__faq-item:last-child {
    border-bottom: none;
}

.page-promotions__faq-question {
    width: 100%;
    background-color: transparent;
    color: #FFF6D6;
    border: none;
    text-align: left;
    padding: 18px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.page-promotions__faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

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

.page-promotions__faq-question:hover {
    color: #FFD36B;
}

.page-promotions__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions__faq-answer p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #FFF6D6;
    padding-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-promotions__hero-section {
        padding: 10px 15px 30px;
    }

    .page-promotions__main-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }

    .page-promotions__description {
        font-size: 1rem;
    }

    .page-promotions__tabs-nav {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 20px;
    }

    .page-promotions__tab-button {
        width: 100%;
        text-align: center;
    }

    .page-promotions__card-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions__promotion-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .page-promotions__card-image {
        min-height: 200px; /* Ensure images are not too small */
    }

    .page-promotions__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }

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

@media (max-width: 768px) {
    .page-promotions__hero-image {
        max-width: 100%;
        height: auto;
    }

    .page-promotions__card-image {
        max-width: 100%;
        height: auto;
    }

    .page-promotions__promotion-card img {
        max-width: 100% !important;
        height: auto !important;
    }

    .page-promotions__card-image {
        width: 100%;
        min-height: 200px; /* Ensure images are not too small */
        height: auto; /* Allow height to adjust */
    }

    .page-promotions__hero-image-wrapper img {
        min-width: 200px;
        min-height: 200px;
    }
}

@media (max-width: 549px) {
    .page-promotions__main-title {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
    }

    .page-promotions__tabs-section,
    .page-promotions__faq-section {
        padding: 0 15px;
    }

    .page-promotions__tab-button {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .page-promotions__faq-question {
        font-size: 0.95rem;
        padding: 12px 18px;
    }

    .page-promotions__faq-answer p {
        font-size: 0.9rem;
    }

    .page-promotions__card-title {
        font-size: 1.2rem;
    }

    .page-promotions__card-text {
        font-size: 0.9rem;
    }

    .page-promotions__card-button {
        font-size: 0.95rem;
    }
}

/* Ensure content images are not smaller than 200px */
.page-promotions img:not(.shared-header__logo):not(.shared-footer__payment-icon):not(.shared-footer__social-icon):not(.shared-footer__game-provider-icon) {
    min-width: 200px;
    min-height: 200px;
}

/* Override specific card image height for responsiveness if needed */
.page-promotions__card-image {
    height: auto; /* Allow height to be determined by aspect ratio */
    aspect-ratio: 16 / 9; /* Maintain aspect ratio */
    object-fit: cover;
    min-height: 200px; /* Enforce minimum height */
}