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

.page-promotions__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 40px;
    position: relative;
    overflow: hidden;
    padding-top: 10px; /* Small top padding for non-body elements */
}

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

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 200px; /* Ensure minimum size */
}

.page-promotions__hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

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

.page-promotions__description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #E5E5E5;
}

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

.page-promotions__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    color: #0A0A0A; /* Dark text for light button */
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    border: 1px solid #DDA11D;
    box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
    min-width: 200px; /* Ensure button minimum size */
    text-align: center;
    color: #FFF6D6; /* Ensure text is visible on gradient */
}

.page-promotions__cta-button--secondary {
    background: none;
    border: 1px solid #F2C14E;
    color: #F2C14E;
    box-shadow: none;
}

.page-promotions__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 211, 107, 0.6);
}

.page-promotions__cta-button--secondary:hover {
    background-color: rgba(242, 193, 78, 0.1);
    box-shadow: none;
}

.page-promotions__overview-section,
.page-promotions__featured-promotions,
.page-promotions__how-to-claim-section,
.page-promotions__faq-section,
.page-promotions__cta-banner {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-promotions__section-title {
    font-size: 2.5rem;
    color: #F2C14E;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 600;
    line-height: 1.3;
}

.page-promotions__section-description {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #E5E5E5;
}

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

.page-promotions__promo-item {
    background-color: #111111;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    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;
    justify-content: space-between;
}

.page-promotions__promo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 211, 107, 0.2);
}

.page-promotions__promo-image {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

.page-promotions__promo-title {
    font-size: 1.5rem;
    color: #FFD36B;
    margin-bottom: 15px;
}

.page-promotions__promo-text {
    font-size: 1rem;
    color: #CCC;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-promotions__promo-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #0A0A0A;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
    border: none;
    min-width: 150px; /* Ensure button minimum size */
    text-align: center;
    color: #FFF6D6; /* Ensure text is visible on gradient */
}

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

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

.page-promotions__promotion-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;
}

.page-promotions__promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 211, 107, 0.2);
}

.page-promotions__card-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

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

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

.page-promotions__card-title a {
    color: #FFD36B;
    text-decoration: none;
}

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

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

.page-promotions__card-button {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #0A0A0A;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
    border: none;
    text-align: center;
    color: #FFF6D6; /* Ensure text is visible on gradient */
}

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

.page-promotions__steps-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

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

.page-promotions__step-item:nth-child(even) {
    background-color: #1A1A1A;
}

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

.page-promotions__step-text {
    font-size: 1rem;
    color: #CCC;
    margin-bottom: 15px;
    flex-grow: 1;
}

.page-promotions__step-button {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #0A0A0A;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
    border: none;
    align-self: flex-start;
    color: #FFF6D6; /* Ensure text is visible on gradient */
}

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

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

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

.page-promotions__faq-question {
    font-size: 1.2rem;
    color: #F2C14E;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.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-answer {
    font-size: 1rem;
    color: #CCC;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding-top: 0;
}

.page-promotions__faq-answer.open {
    max-height: 200px; /* Adjust as needed */
    padding-top: 10px;
}

.page-promotions__info-section {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 0.95rem;
    color: #AAA;
}

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

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

.page-promotions__cta-banner {
    background-color: #1A1A1A;
    padding: 80px 20px;
    text-align: center;
    border-top: 2px solid #3A2A12;
    border-bottom: 2px solid #3A2A12;
    margin-top: 60px;
}

.page-promotions__cta-banner-title {
    font-size: 2.8rem;
    color: #FFD36B;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-promotions__cta-banner-text {
    font-size: 1.2rem;
    color: #E5E5E5;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.page-promotions__cta-banner-button {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #0A0A0A;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 211, 107, 0.5);
    min-width: 220px; /* Ensure button minimum size */
    text-align: center;
    color: #FFF6D6; /* Ensure text is visible on gradient */
}

.page-promotions__cta-banner-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 211, 107, 0.7);
}

@media (max-width: 1024px) {
    .page-promotions__main-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .page-promotions__section-title {
        font-size: 2.2rem;
    }

    .page-promotions__cta-banner-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-section {
        padding-bottom: 30px;
    }

    .page-promotions__hero-image-wrapper {
        max-height: 400px;
    }

    .page-promotions__hero-image {
        min-height: 200px; /* Ensure minimum size */
    }

    .page-promotions__main-title {
        font-size: clamp(1.8rem, 7vw, 2.8rem);
    }

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

    .page-promotions__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

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

    .page-promotions__overview-section,
    .page-promotions__featured-promotions,
    .page-promotions__how-to-claim-section,
    .page-promotions__faq-section,
    .page-promotions__cta-banner {
        padding: 40px 15px;
    }

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

    .page-promotions__section-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .page-promotions__promo-grid,
    .page-promotions__card-container,
    .page-promotions__steps-list {
        grid-template-columns: 1fr;
    }

    .page-promotions__promo-item,
    .page-promotions__promotion-card,
    .page-promotions__step-item {
        padding: 20px;
    }

    .page-promotions__promo-image,
    .page-promotions__card-image {
        min-width: 200px; /* Ensure minimum size */
        min-height: 200px; /* Ensure minimum size */
        max-width: 100%;
        height: auto;
    }

    .page-promotions__promo-title {
        font-size: 1.3rem;
    }

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

    .page-promotions__cta-banner-title {
        font-size: 2rem;
    }

    .page-promotions__cta-banner-text {
        font-size: 1rem;
    }

    .page-promotions__cta-banner-button {
        padding: 15px 30px;
        font-size: 1.1rem;
        width: 80%;
        max-width: 300px;
    }

    .page-promotions__faq-question {
        font-size: 1.1rem;
    }

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

    /* Enforce min-size for all images within .page-promotions */
    .page-promotions img {
        min-width: 200px; 
        min-height: 200px; 
        max-width: 100%;
        height: auto;
    }

    /* Mobile image overflow prevention */
    .page-promotions__hero-section img,
    .page-promotions__promo-item img,
    .page-promotions__promotion-card img {
        max-width: 100% !important;
        height: auto !important;
    }
}

@media (max-width: 480px) {
    .page-promotions__main-title {
        font-size: clamp(1.6rem, 8vw, 2.5rem);
    }

    .page-promotions__section-title {
        font-size: 1.8rem;
    }

    .page-promotions__cta-banner-title {
        font-size: 1.8rem;
    }

    .page-promotions__cta-button,
    .page-promotions__cta-banner-button {
        padding: 12px 20px;
        font-size: 1rem;
    }
}