/* Mobile devices (extra small) */
@media (max-width: 575.98px) {
    .left-overlay {
        width: 100%;
        height: 55%;
        position: fixed;
        top: 32%;
        left: 0;
        z-index: 1;
    }

    .right-overlay {
        width: 100%;
        order: 2;
        position: relative;
        margin-top: 20px;
    }

    .overlay-text {
        font-size: 12px;
        top: 40%;
        padding: 0 10px;
        line-height: 1.3;
    }

    .download-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        position: fixed;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100vw;
        z-index: 2;
        justify-items: center;
        padding: 10px 0 8px 0;
    }

    .download-button {
        width: 95%;
        max-width: 140px;
        padding: 8px 0;
        font-size: 12px;
        text-align: center;
    }

    .download-button .button-icon {
        width: 30px;
        height: 30px;
    }
}

/* Small devices (portrait tablets, 576px - 767px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .left-overlay {
        width: 100%;
        height: 55%;
        position: fixed;
        top: 32%;
        left: 0;
        z-index: 1;
    }

    .right-overlay {
        width: 100%;
        order: 2;
        position: relative;
        margin-top: 20px;
    }

    .overlay-text {
        font-size: 14px;
        top: 45%;
        padding: 0 10px;
    }

    .download-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        position: fixed;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80vw;
        z-index: 2;
        justify-items: center;
        padding: 12px 0 10px 0;
    }

    .download-button {
        width: 95%;
        max-width: 160px;
        padding: 10px 0;
        font-size: 14px;
        text-align: center;
    }

    .download-button .button-icon {
        width: 36px;
        height: 36px;
    }
}

/* Medium devices (landscape tablets, 768px - 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .overlay-text {
        font-size: 16px;
        line-height: 1.5;
        text-align: center;
        margin-top: -80px;
        padding: 0 15px;
        top: 45%;
    }

    .download-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        position: fixed;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 70vw;
        z-index: 2;
        padding: 14px 0 12px 0;
    }

    .download-button {
        padding: 12px 20px;
        font-size: 15px;
    }

    .download-button .button-icon {
        width: 45px;
        height: 45px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .download-buttons {
        display: flex;
        justify-content: center;
        gap: 24px;
        position: fixed;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60vw;
        z-index: 2;
        padding: 16px 0 14px 0;
    }

    .download-button {
        padding: 14px 28px;
        font-size: 16px;
    }

    .download-button .button-icon {
        width: 50px;
        height: 50px;
    }
}
