/* style/app-download-app-features-introduction.css */

.page-app-download-app-features-introduction {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for text */
    background-color: #1A1A2E; /* Dark blue/near black background */
    line-height: 1.6;
    padding-bottom: 50px; /* Add some padding at the bottom before footer */
}

.page-app-download-app-features-introduction__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-app-download-app-features-introduction__hero {
    background: linear-gradient(135deg, #DC143C 0%, #FFD700 100%); /* Crimson to Gold gradient */
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-app-download-app-features-introduction__hero-content {
    max-width: 900px;
    z-index: 1;
    position: relative;
}

.page-app-download-app-features-introduction__hero-image-wrapper {
    position: absolute;
    bottom: -50px; /* Adjust to make it look like the phone is popping out */
    right: 5%;
    width: 300px; /* Example size */
    height: auto;
    z-index: 0;
    opacity: 0.8;
    transform: rotate(15deg);
    display: none; /* Hide on smaller screens initially */
}

@media (min-width: 768px) {
    .page-app-download-app-features-introduction__hero-image-wrapper {
        display: block;
        width: 400px;
        bottom: -80px;
    }
}

@media (min-width: 1024px) {
    .page-app-download-app-features-introduction__hero-image-wrapper {
        width: 500px;
        bottom: -100px;
        right: 10%;
    }
}

.page-app-download-app-features-introduction__hero-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}


.page-app-download-app-features-introduction__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-app-download-app-features-introduction__subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #F0F0F0;
}

.page-app-download-app-features-introduction__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-app-download-app-features-introduction__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #1A1A2E; /* Dark text on gold */
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-app-download-app-features-introduction__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-app-download-app-features-introduction__btn--secondary {
    background-color: #DC143C; /* Crimson */
    color: #FFFFFF;
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.4);
    margin-top: 20px;
}

.page-app-download-app-features-introduction__btn--secondary:hover {
    background-color: #b31031;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.6);
}

.page-app-download-app-features-introduction__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-app-download-app-features-introduction__section:last-of-type {
    border-bottom: none;
}

.page-app-download-app-features-introduction__heading {
    font-size: 2.5em;
    color: #FFD700; /* Gold for headings */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-app-download-app-features-introduction__heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #DC143C; /* Crimson underline */
    border-radius: 2px;
}

.page-app-download-app-features-introduction__sub-heading {
    font-size: 1.8em;
    color: #FFD700; /* Gold for sub-headings */
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-app-download-app-features-introduction__content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.page-app-download-app-features-introduction__text-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.page-app-download-app-features-introduction__image-wrapper {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: center;
}

.page-app-download-app-features-introduction__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-app-download-app-features-introduction__content-wrapper--reverse {
    flex-direction: row-reverse;
}

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

.page-app-download-app-features-introduction__game-item {
    background-color: #2A2A4A; /* Slightly lighter dark background */
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-app-download-app-features-introduction__game-item:hover {
    transform: translateY(-5px);
    background-color: #3A3A5A;
}

.page-app-download-app-features-introduction__game-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

.page-app-download-app-features-introduction__game-item .page-app-download-app-features-introduction__sub-heading {
    font-size: 1.5em;
    margin-top: 0;
    color: #FFD700;
}

.page-app-download-app-features-introduction__feature-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-app-download-app-features-introduction__feature-item {
    background-color: #2A2A4A;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-app-download-app-features-introduction__feature-item:hover {
    transform: translateY(-5px);
    background-color: #3A3A5A;
}

.page-app-download-app-features-introduction__feature-item .page-app-download-app-features-introduction__sub-heading {
    font-size: 1.6em;
    margin-top: 0;
    color: #FFD700;
}

.page-app-download-app-features-introduction__download-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-top: 40px;
    text-align: left;
}

.page-app-download-app-features-introduction__download-platform {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background-color: #2A2A4A;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-app-download-app-features-introduction__download-platform ol {
    padding-left: 25px;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-app-download-app-features-introduction__download-platform li {
    margin-bottom: 10px;
}

.page-app-download-app-features-introduction__download-image {
    max-width: 150px; /* Smaller QR code / icon */
    height: auto;
    display: block;
    margin: 20px auto 0;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-app-download-app-features-introduction__cta {
    text-align: center;
    padding: 80px 0;
    background-color: #1A1A2E; /* Consistent dark background */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-app-download-app-features-introduction__title {
        font-size: 2.5em;
    }
    .page-app-download-app-features-introduction__heading {
        font-size: 2em;
    }
    .page-app-download-app-features-introduction__sub-heading {
        font-size: 1.5em;
    }
    .page-app-download-app-features-introduction__hero {
        padding: 60px 0;
    }
    .page-app-download-app-features-introduction__content-wrapper,
    .page-app-download-app-features-introduction__content-wrapper--reverse {
        flex-direction: column;
    }
    .page-app-download-app-features-introduction__text-content,
    .page-app-download-app-features-introduction__image-wrapper {
        max-width: 100%;
    }
    .page-app-download-app-features-introduction__game-grid,
    .page-app-download-app-features-introduction__feature-list {
        grid-template-columns: 1fr;
    }
    .page-app-download-app-features-introduction__download-platform {
        max-width: 100%;
    }
}

/* Ensure contrast for all text */
.page-app-download-app-features-introduction p,
.page-app-download-app-features-introduction li {
    color: #E0E0E0; /* Light grey on dark background for high contrast */
}

.page-app-download-app-features-introduction a {
    color: #FFD700; /* Gold for links */
    text-decoration: none;
}

.page-app-download-app-features-introduction a:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-app-download-app-features-introduction__btn {
    /* Defined above, ensuring good contrast */
}