.page-promo {
    color: #ffffff; /* Light text on dark body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px);
}

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

.page-promo__hero-section {
    background-color: #1A1A2E;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-promo__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

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

.page-promo__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-promo__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promo__hero-description {
    font-size: 1.3em;
    color: #f0f0f0;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promo__hero-button,
.page-promo__card-button,
.page-promo__step-button,
.page-promo__button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A1A2E;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-promo__hero-button:hover,
.page-promo__card-button:hover,
.page-promo__step-button:hover,
.page-promo__button:hover {
    background-color: #e5c100;
    transform: translateY(-3px);
}

.page-promo__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 60px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-promo__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #e0e0e0;
}

.page-promo__overview-section {
    padding: 60px 0;
    background-color: #0d0d0d;
}

.page-promo__promotions-grid {
    padding: 60px 0;
    background-color: #1A1A2E;
}

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

.page-promo__promo-card {
    background-color: #0d0d0d;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    text-align: center;
    padding-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

.page-promo__card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
}

.page-promo__card-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
    padding: 0 20px;
}

.page-promo__card-description {
    color: #cccccc;
    font-size: 1em;
    margin-bottom: 25px;
    padding: 0 20px;
}

.page-promo__how-to-claim {
    padding: 80px 0;
    background-color: #0d0d0d;
}

.page-promo__steps-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.page-promo__step-item {
    background-color: #1A1A2E;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-promo__step-item:hover {
    transform: translateY(-5px);
}

.page-promo__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #FFD700;
    color: #1A1A2E;
    border-radius: 50%;
    font-size: 2.2em;
    font-weight: bold;
    margin-bottom: 20px;
}

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

.page-promo__step-description {
    color: #cccccc;
    margin-bottom: 25px;
}

.page-promo__terms-conditions,
.page-promo__responsible-gaming,
.page-promo__faq-section {
    padding: 60px 0;
    background-color: #1A1A2E;
}

.page-promo__terms-list,
.page-promo__responsible-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 900px;
}

.page-promo__term-item,
.page-promo__responsible-item {
    background-color: #0d0d0d;
    border-left: 5px solid #FFD700;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 1.05em;
}

.page-promo__term-item strong {
    color: #FFD700;
}

.page-promo__terms-outro {
    text-align: center;
    margin-top: 30px;
    color: #cccccc;
}

.page-promo__button--secondary {
    background-color: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
    padding: 12px 25px;
    margin-top: 20px;
}

.page-promo__button--secondary:hover {
    background-color: #FFD700;
    color: #1A1A2E;
    transform: translateY(-3px);
}

.page-promo__faq-item {
    background-color: #0d0d0d;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promo__faq-question {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-promo__faq-answer {
    color: #cccccc;
    margin-bottom: 15px;
}

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

.page-promo__button--tertiary:hover {
    background-color: #FFD700;
    color: #1A1A2E;
}

.page-promo__final-cta {
    background-color: #0d0d0d;
    padding: 80px 0;
    text-align: center;
}

.page-promo__final-cta-content .page-promo__section-title {
    margin-top: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promo__hero-title {
        font-size: 3em;
    }
    .page-promo__hero-description {
        font-size: 1.15em;
    }
    .page-promo__section-title {
        font-size: 2em;
    }
    .page-promo__grid-wrapper,
    .page-promo__steps-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promo__hero-section {
        padding: 60px 0;
    }
    .page-promo__hero-title {
        font-size: 2.5em;
    }
    .page-promo__hero-description {
        font-size: 1em;
    }
    .page-promo__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promo__section-title {
        font-size: 1.8em;
        margin-top: 40px;
        margin-bottom: 30px;
    }
    .page-promo__section-intro {
        font-size: 0.95em;
        margin-bottom: 40px;
    }
    .page-promo__grid-wrapper,
    .page-promo__steps-wrapper {
        grid-template-columns: 1fr;
    }
    .page-promo__promo-card,
    .page-promo__step-item,
    .page-promo__faq-item {
        margin-left: 10px;
        margin-right: 10px;
    }
    .page-promo__card-image {
        height: 200px;
    }
    .page-promo__card-title {
        font-size: 1.5em;
    }
    .page-promo__faq-question {
        font-size: 1.2em;
    }
    /* Ensure images do not overflow on mobile */
    .page-promo img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-promo__hero-title {
        font-size: 2em;
    }
    .page-promo__hero-description {
        font-size: 0.9em;
    }
    .page-promo__hero-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-promo__section-title {
        font-size: 1.6em;
    }
    .page-promo__container {
        padding: 0 15px;
    }
}

/* Ensure content area images are never smaller than 200px (except shared header/footer controlled icons) */
.page-promo img {
    min-width: 200px; /* Enforce minimum width */
    min-height: 200px; /* Enforce minimum height */
    width: auto; /* Allow width to adjust based on layout */
    height: auto; /* Allow height to adjust based on layout */
    object-fit: cover; /* Ensure image covers its container */
}

/* Specific overrides for card images to fit layout while maintaining min size */
.page-promo__promo-card .page-promo__card-image {
    width: 100%; /* Take full width of card */
    height: 250px; /* Fixed height for consistency, will be at least 200px */
    min-width: 200px;
    min-height: 200px;
}

/* Specific overrides for hero image */
.page-promo__hero-image {
    min-width: 200px;
    min-height: 200px;
}

/* Responsive adjustments for min-width to prevent overflow on very small screens */
@media (max-width: 768px) {
    .page-promo img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure images are still at least 200px, but scale down if needed */
        min-height: 200px;
    }
    .page-promo__promo-card .page-promo__card-image {
        height: 200px; /* Adjust height for mobile */
    }
}