.page-promotions {
    --primary-color: #F2C14E;
    --secondary-color: #FFD36B;
    --card-bg: #111111;
    --background-color: #0A0A0A;
    --text-main: #FFF6D6;
    --border-color: #3A2A12;
    --glow-color: #FFD36B;

    background-color: var(--background-color);
    color: var(--text-main);
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    padding-top: 10px; /* Minimal top padding */
}

.page-promotions__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 20px;
}

.page-promotions__hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 1;
}

.page-promotions__hero-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-promotions__hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 30px;
    color: var(--text-main);
}

.page-promotions__hero-cta {
    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: background-color 0.3s ease, transform 0.2s ease;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #333333;
    border: none;
    cursor: pointer;
    min-width: 150px;
    text-align: center;
}

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

.page-promotions__button--secondary {
    background: var(--card-bg);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.page-promotions__button--secondary:hover {
    background: var(--primary-color);
    color: #333333;
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-promotions__button--small {
    padding: 8px 18px;
    font-size: 0.9em;
    min-width: unset;
}

.page-promotions__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--primary-color);
    text-align: center;
    margin-top: 50px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__section-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: var(--text-main);
}

.page-promotions__featured-promos,
.page-promotions__how-to-claim,
.page-promotions__terms-overview,
.page-promotions__why-winph {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto 60px auto;
}

.page-promotions__promo-grid,
.page-promotions__steps-container,
.page-promotions__benefits-grid {
    display: grid;
    gap: 30px;
    margin-top: 30px;
}

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

.page-promotions__promo-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.page-promotions__promo-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.page-promotions__promo-details {
    padding: 20px;
    text-align: center;
}

.page-promotions__promo-title {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions__promo-text {
    font-size: 0.95em;
    color: var(--text-main);
    margin-bottom: 20px;
}

.page-promotions__steps-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.page-promotions__step-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__step-number {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #333333;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(255, 211, 107, 0.5);
}

.page-promotions__step-title {
    font-size: 1.3em;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions__step-description {
    font-size: 0.95em;
    color: var(--text-main);
    margin-bottom: 20px;
}

.page-promotions__terms-overview {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__terms-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-promotions__term-item {
    background-color: #1a1a1a;
    border-left: 5px solid var(--primary-color);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions__term-heading {
    font-size: 1.2em;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-weight: bold;
}

.page-promotions__term-text {
    font-size: 0.9em;
    color: var(--text-main);
}

.page-promotions__full-terms-cta {
    text-align: center;
    margin-top: 30px;
}

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

.page-promotions__benefit-item {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__benefit-icon {
    width: 200px; /* Ensure minimum size */
    height: 200px; /* Ensure minimum size */
    object-fit: contain;
    margin-bottom: 15px;
    filter: none; /* No CSS filter */
}

.page-promotions__benefit-title {
    font-size: 1.3em;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions__benefit-text {
    font-size: 0.9em;
    color: var(--text-main);
}

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

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

    .page-promotions__hero-description {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }

    .page-promotions__hero-cta {
        flex-direction: column;
        gap: 10px;
    }

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

    .page-promotions__section-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
        margin-top: 30px;
    }

    .page-promotions__section-subtitle {
        font-size: clamp(0.9rem, 3vw, 1rem);
        margin-bottom: 30px;
    }

    .page-promotions__featured-promos,
    .page-promotions__how-to-claim,
    .page-promotions__terms-overview,
    .page-promotions__why-winph {
        padding: 15px;
        margin-bottom: 40px;
    }

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

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

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

    .page-promotions__terms-overview {
        padding: 25px;
    }

    .page-promotions__term-item {
        padding: 15px;
    }
}

/* Ensure all content area images are not smaller than 200px */
.page-promotions img {
    min-width: 200px;
    min-height: 200px;
    width: auto; /* Allow natural sizing or flex */
    height: auto; /* Allow natural sizing or flex */
}

/* Override specific images that have explicit width/height in HTML to adhere to min-size */
.page-promotions__hero-image {
    min-width: unset;
    min-height: unset;
}

.page-promotions__promo-image {
    min-width: unset;
    min-height: unset;
}

.page-promotions__benefit-icon {
    width: 200px;
    height: 200px;
    min-width: 200px; /* Explicitly set for icons */
    min-height: 200px; /* Explicitly set for icons */
}

@media (max-width: 768px) {
    .page-promotions img {
        max-width: 100% !important;
        height: auto !important;
    }
    .page-promotions__benefit-icon {
        max-width: 200px !important;
        height: auto !important;
    }
}