.page-resources-app-features {
    color: #333333; /* Dark text for light body background */
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

.page-resources-app-features__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
    background-color: #000000; /* Main color */
    color: #FFFFFF;
    text-align: center;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-resources-app-features__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3;
}

.page-resources-app-features__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.page-resources-app-features__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFFFFF;
}

.page-resources-app-features__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-resources-app-features__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-resources-app-features__button {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-resources-app-features__button--register {
    background-color: #FFFFFF;
    color: #000000;
}

.page-resources-app-features__button--register:hover {
    background-color: #f0f0f0;
}

.page-resources-app-features__button--download {
    background-color: #FCBC45; /* Login color */
    color: #000000;
}

.page-resources-app-features__button--download:hover {
    background-color: #e0a53a;
}

.page-resources-app-features__content-area {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.page-resources-app-features__section-title {
    font-size: 2.2em;
    color: #000000;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.page-resources-app-features__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 80px;
    height: 4px;
    background-color: #FCBC45;
    border-radius: 2px;
}

.page-resources-app-features__paragraph {
    font-size: 1.05em;
    margin-bottom: 20px;
    line-height: 1.7;
    text-align: justify;
}

.page-resources-app-features__feature-grid, 
.page-resources-app-features__security-features, 
.page-resources-app-features__payment-methods, 
.page-resources-app-features__ux-features, 
.page-resources-app-features__promo-grid, 
.page-resources-app-features__support-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-resources-app-features__feature-card, 
.page-resources-app-features__security-item, 
.page-resources-app-features__payment-item, 
.page-resources-app-features__ux-item, 
.page-resources-app-features__promo-card, 
.page-resources-app-features__support-item {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-resources-app-features__feature-card:hover, 
.page-resources-app-features__security-item:hover, 
.page-resources-app-features__payment-item:hover, 
.page-resources-app-features__ux-item:hover, 
.page-resources-app-features__promo-card:hover, 
.page-resources-app-features__support-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-resources-app-features__feature-card img, 
.page-resources-app-features__security-item img, 
.page-resources-app-features__payment-item img, 
.page-resources-app-features__ux-item img, 
.page-resources-app-features__promo-card img, 
.page-resources-app-features__support-item img {
    width: 100%; /* Ensure images take full width of card */
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-app-features__card-title, 
.page-resources-app-features__item-title {
    font-size: 1.4em;
    color: #000000;
    margin-bottom: 15px;
}

.page-resources-app-features__card-description, 
.page-resources-app-features__item-description {
    font-size: 0.95em;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-resources-app-features__card-link, 
.page-resources-app-features__button--more-security, 
.page-resources-app-features__button--view-promos, 
.page-resources-app-features__button--contact-support, 
.page-resources-app-features__button--getting-started-guide, 
.page-resources-app-features__button--return-resources {
    background-color: #000000;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: inline-block;
    margin-top: auto; /* Push link to bottom of card */
}

.page-resources-app-features__card-link:hover, 
.page-resources-app-features__button--more-security:hover, 
.page-resources-app-features__button--view-promos:hover, 
.page-resources-app-features__button--contact-support:hover, 
.page-resources-app-features__button--getting-started-guide:hover, 
.page-resources-app-features__button--return-resources:hover {
    background-color: #333333;
}

.page-resources-app-features__step-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-resources-app-features__step-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-left: 5px solid #FCBC45;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-resources-app-features__step-item .page-resources-app-features__item-title {
    font-size: 1.3em;
    color: #000000;
    margin-bottom: 10px;
    text-align: left;
}

.page-resources-app-features__step-item .page-resources-app-features__item-description {
    font-size: 1em;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left;
}

.page-resources-app-features__button--download-step, 
.page-resources-app-features__button--register-step, 
.page-resources-app-features__button--deposit-step, 
.page-resources-app-features__button--play-step {
    background-color: #FCBC45;
    color: #000000;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.page-resources-app-features__button--download-step:hover, 
.page-resources-app-features__button--register-step:hover, 
.page-resources-app-features__button--deposit-step:hover, 
.page-resources-app-features__button--play-step:hover {
    background-color: #e0a53a;
}

.page-resources-app-features__call-to-action {
    text-align: center;
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-resources-app-features__button--final-download {
    background-color: #FCBC45;
    color: #000000;
}

.page-resources-app-features__button--final-download:hover {
    background-color: #e0a53a;
}

.page-resources-app-features__button--final-register {
    background-color: #000000;
    color: #FFFFFF;
}

.page-resources-app-features__button--final-register:hover {
    background-color: #333333;
}

.page-resources-app-features__related-list {
    list-style: disc;
    padding-left: 25px;
    margin-top: 20px;
}

.page-resources-app-features__related-item {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-resources-app-features__related-item a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-resources-app-features__related-item a:hover {
    color: #FCBC45;
    text-decoration: underline;
}

.page-resources-app-features__button--return-resources {
    margin-top: 30px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .page-resources-app-features__hero-title {
        font-size: 2.2em;
    }

    .page-resources-app-features__hero-description {
        font-size: 1em;
    }

    .page-resources-app-features__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-resources-app-features__button {
        width: 100%;
        max-width: 280px;
    }

    .page-resources-app-features__section-title {
        font-size: 1.8em;
    }

    .page-resources-app-features__feature-grid, 
    .page-resources-app-features__security-features, 
    .page-resources-app-features__payment-methods, 
    .page-resources-app-features__ux-features, 
    .page-resources-app-features__promo-grid, 
    .page-resources-app-features__support-features {
        grid-template-columns: 1fr;
    }

    .page-resources-app-features__feature-card img, 
    .page-resources-app-features__security-item img, 
    .page-resources-app-features__payment-item img, 
    .page-resources-app-features__ux-item img, 
    .page-resources-app-features__promo-card img, 
    .page-resources-app-features__support-item img,
    .page-resources-app-features__content-area img { /* Target all content area images */
        max-width: 100%;
        height: auto;
    }

    .page-resources-app-features__content-area {
        padding: 0 15px;
    }

    .page-resources-app-features__call-to-action {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources-app-features__button--final-download, 
    .page-resources-app-features__button--final-register {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .page-resources-app-features__hero-title {
        font-size: 1.8em;
    }

    .page-resources-app-features__hero-description {
        font-size: 0.9em;
    }

    .page-resources-app-features__section-title {
        font-size: 1.5em;
    }

    .page-resources-app-features__button {
        padding: 12px 20px;
        font-size: 1em;
    }
}