/* style/promo.css */
.page-promo {
    color: #333333; /* Dark text for light body background */
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

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

.page-promo__hero-section {
    position: relative;
    overflow: hidden;
    text-align: center;
    background-color: #000000; /* Main color for hero background */
    color: #ffffff;
}

.page-promo__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    filter: brightness(0.5); /* Darken image for text readability */
    z-index: 0;
}

.page-promo__hero-content {
    position: relative;
    z-index: 1;
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.page-promo__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FCBC45; /* Login button color for emphasis */
}

.page-promo__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #f0f0f0;
}

.page-promo__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-promo__hero-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-promo__hero-button--register {
    background-color: #FCBC45; /* Login button color */
    color: #000000;
}

.page-promo__hero-button--register:hover {
    background-color: #e0a53b;
    transform: translateY(-2px);
}

.page-promo__hero-button--login {
    background-color: #FFFFFF; /* Auxiliary color */
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-promo__hero-button--login:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.page-promo__section-title {
    font-size: 2.5em;
    color: #000000;
    text-align: center;
    margin-bottom: 30px;
    padding-top: 40px;
}

.page-promo__section-intro {
    font-size: 1.1em;
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #555555;
}

.page-promo__why-choose-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

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

.page-promo__feature-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.page-promo__feature-title {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 15px;
}

.page-promo__feature-description {
    font-size: 1em;
    color: #666666;
    line-height: 1.6;
}

.page-promo__featured-promos-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

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

.page-promo__promo-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.page-promo__promo-title {
    font-size: 1.6em;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.3;
}

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

.page-promo__promo-title a:hover {
    color: #FCBC45;
}

.page-promo__promo-description {
    font-size: 1em;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promo__promo-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #FCBC45;
    color: #000000;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    align-self: flex-start;
    transition: background-color 0.3s ease;
}

.page-promo__promo-button:hover {
    background-color: #e0a53b;
}

.page-promo__how-to-claim-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

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

.page-promo__step-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.page-promo__step-icon {
    width: 200px; /* Enforced min size */
    height: 150px; /* Enforced min size */
    object-fit: contain;
    margin-bottom: 20px;
}

.page-promo__step-title {
    font-size: 1.4em;
    color: #000000;
    margin-bottom: 10px;
}

.page-promo__step-description {
    font-size: 0.95em;
    color: #666666;
    line-height: 1.6;
}

.page-promo__call-to-action {
    text-align: center;
    margin-top: 50px;
}

.page-promo__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-promo__button--primary {
    background-color: #FCBC45;
    color: #000000;
}

.page-promo__button--primary:hover {
    background-color: #e0a53b;
    transform: translateY(-2px);
}

.page-promo__button--secondary {
    background-color: #000000;
    color: #FFFFFF;
    border: 2px solid #FCBC45;
}

.page-promo__button--secondary:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
}

.page-promo__responsible-gaming-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.page-promo__responsible-gaming-list {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    max-width: 800px;
    text-align: left;
}

.page-promo__responsible-gaming-item {
    background-color: #f9f9f9;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-left: 5px solid #FCBC45;
    border-radius: 5px;
    font-size: 1em;
    color: #444444;
}

.page-promo__responsible-gaming-text {
    text-align: center;
    font-size: 1.1em;
    color: #555555;
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-promo__faq-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

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

.page-promo__faq-question {
    font-size: 1.3em;
    color: #000000;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promo__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

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

.page-promo__faq-answer {
    font-size: 1em;
    color: #666666;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding-top: 0;
}

.page-promo__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding-top: 15px;
}

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

.page-promo__final-cta-section .page-promo__section-title {
    color: #FCBC45;
}

.page-promo__final-cta-section .page-promo__section-intro {
    color: #f0f0f0;
}

.page-promo__final-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

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

@media (max-width: 768px) {
    .page-promo__hero-content {
        padding: 60px 15px;
    }
    .page-promo__hero-title {
        font-size: 2.5em;
    }
    .page-promo__hero-description {
        font-size: 1em;
    }
    .page-promo__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-promo__hero-button {
        width: 80%;
        margin: 0 auto;
    }
    .page-promo__section-title {
        font-size: 1.8em;
        padding-top: 30px;
    }
    .page-promo__section-intro {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-promo__features-grid, .page-promo__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-promo__promo-list {
        grid-template-columns: 1fr;
    }
    .page-promo__promo-image {
        height: 200px;
    }
    .page-promo__promo-title {
        font-size: 1.4em;
    }
    .page-promo__promo-description {
        font-size: 0.9em;
    }
    .page-promo__step-icon {
        width: 150px;
        height: 112px;
    }
    .page-promo__button {
        width: 90%;
        margin: 0 auto;
    }
    .page-promo__final-actions {
        flex-direction: column;
    }
    .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: 12px 20px;
        font-size: 1em;
    }
    .page-promo__section-title {
        font-size: 1.5em;
    }
    .page-promo__promo-card {
        margin: 0 10px;
    }
    .page-promo__promo-image {
        height: 180px;
    }
    .page-promo__promo-title {
        font-size: 1.2em;
    }
    .page-promo__promo-description {
        font-size: 0.85em;
    }
    .page-promo__faq-question {
        font-size: 1.1em;
    }
    .page-promo__faq-answer {
        font-size: 0.9em;
    }
}