.page-promotions {
    background-color: #0A0A0A;
    color: #FFF6D6;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    padding-bottom: 20px;
}

.page-promotions__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 40px 0;
    background-color: #0A0A0A;
    text-align: center;
    position: relative;
}

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

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

.page-promotions__hero-content {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 15px;
}

.page-promotions__main-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: #FFD36B;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-promotions__hero-description {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #FFF6D6;
}

.page-promotions__hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-promotions__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    border: none;
}

.page-promotions__button--primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-promotions__button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-promotions__button--secondary {
    background-color: transparent;
    border: 2px solid #F2C14E;
    color: #F2C14E;
}

.page-promotions__button--secondary:hover {
    background-color: rgba(242, 193, 78, 0.1);
    color: #FFD36B;
}

.page-promotions__section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #FFD36B;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 20px;
    text-shadow: 0 0 8px rgba(255, 211, 107, 0.3);
}

.page-promotions__section-description {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #FFF6D6;
}

.page-promotions__featured-promos-section,
.page-promotions__bonus-categories-section,
.page-promotions__how-to-claim-section,
.page-promotions__terms-summary-section,
.page-promotions__faq-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.page-promotions__promo-card {
    background-color: #111111;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #3A2A12;
    display: flex;
    flex-direction: column;
    min-height: 450px; /* Ensure cards have a minimum height */
}

.page-promotions__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 15px #FFD36B;
}

.page-promotions__promo-image {
    width: 100%;
    height: 225px; /* Fixed height for consistent card appearance */
    object-fit: cover;
    display: block;
}

.page-promotions__promo-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions__card-title {
    font-size: 1.4rem;
    color: #F2C14E;
    margin-bottom: 10px;
    min-height: 40px; /* Ensure consistent title height */
}

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

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

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

.page-promotions__button--card {
    width: 100%;
    text-align: center;
    padding: 10px 15px;
    font-size: 0.9rem;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    box-shadow: 0 2px 10px rgba(242, 193, 78, 0.3);
}

.page-promotions__button--card:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(242, 193, 78, 0.5);
}

.page-promotions__category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.page-promotions__category-tab {
    background-color: #111111;
    color: #F2C14E;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #3A2A12;
    font-weight: bold;
}

.page-promotions__category-tab:hover {
    background-color: rgba(242, 193, 78, 0.1);
    color: #FFD36B;
}

.page-promotions__category-tab--active {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    border-color: #F2C14E;
    box-shadow: 0 2px 10px rgba(242, 193, 78, 0.4);
}

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

.page-promotions__category-item {
    background-color: #111111;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #3A2A12;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__item-title {
    font-size: 1.3rem;
    color: #FFD36B;
    margin-bottom: 10px;
}

.page-promotions__item-text {
    font-size: 0.95rem;
    color: #FFF6D6;
    margin-bottom: 20px;
}

.page-promotions__button--small {
    padding: 8px 18px;
    font-size: 0.85rem;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    border-radius: 6px;
}

.page-promotions__button--small:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(242, 193, 78, 0.4);
}

.page-promotions__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 30px;
    text-align: center;
}

.page-promotions__step-card {
    background-color: #111111;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #3A2A12;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-promotions__step-icon-wrapper {
    background-color: rgba(242, 193, 78, 0.1);
    border-radius: 50%;
    padding: 15px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px; /* Ensure icon wrapper is large enough */
    height: 90px;
}

.page-promotions__step-icon {
    width: 64px;
    height: 64px;
    display: block;
}

.page-promotions__step-title {
    font-size: 1.25rem;
    color: #F2C14E;
    margin-bottom: 10px;
}

.page-promotions__step-text {
    font-size: 0.95rem;
    color: #FFF6D6;
}

.page-promotions__claim-cta {
    text-align: center;
    margin-top: 50px;
}

.page-promotions__terms-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    background-color: #111111;
    border-radius: 10px;
    border: 1px solid #3A2A12;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__terms-item {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(58, 42, 18, 0.5);
    font-size: 0.95rem;
    color: #FFF6D6;
}

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

.page-promotions__terms-summary-section a {
    color: #F2C14E;
    text-decoration: none;
}

.page-promotions__terms-summary-section a:hover {
    text-decoration: underline;
}

.page-promotions__terms-cta {
    text-align: center;
    margin-top: 40px;
}

.page-promotions__faq-item {
    background-color: #111111;
    border: 1px solid #3A2A12;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-question {
    font-size: 1.2rem;
    color: #F2C14E;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promotions__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #FFD36B;
}

.page-promotions__faq-question--active::after {
    content: '-';
}

.page-promotions__faq-answer {
    font-size: 0.95rem;
    color: #FFF6D6;
    display: block; /* Initially shown for static page */
}

@media (max-width: 768px) {
    .page-promotions__hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .page-promotions__button {
        width: 80%;
        max-width: 300px;
    }

    .page-promotions__promo-grid,
    .page-promotions__category-content,
    .page-promotions__steps-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions__promo-card {
        min-height: auto;
    }

    .page-promotions__promo-image {
        height: 180px;
    }

    .page-promotions__category-tab {
        width: 100%;
        text-align: center;
    }

    .page-promotions__hero-image,
    .page-promotions__promo-image,
    .page-promotions__step-icon {
        max-width: 100%;
        height: auto;
    }

    .page-promotions__featured-promos-section img,
    .page-promotions__how-to-claim-section img {
        max-width: 100%;
        height: auto;
    }
}