.launch-banner-section {
    position: relative;
    z-index: 5;
    padding: 0 20px 70px;
    display: flex;
    justify-content: center;
    transform: translateY(-30px);
}

.launch-banner {
    width: 100%;
    max-width: 860px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(23, 25, 35, 0.07);
    border-radius: 26px;
    padding: 5px 36px 5px 5px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    overflow: hidden;
}

.launch-banner__left {
    display: flex;
    align-items: center;
    gap: 1px;
}

.launch-banner__icon {
    width: 102px;
    height: 102px;
    flex-shrink: 0;
    object-fit: contain;
}

.launch-banner__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.3;
}

.launch-banner__subtitle {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-muted);
    margin-top: 3px;
}

.launch-banner__status {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 20px;
    font-weight: 500;
    color: #2EAD0A;
    white-space: nowrap;
    transform: translateX(-30px);
}

.launch-banner__status::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #2EAD0A;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .launch-banner-section {
        padding: 20px 16px 40px;
    }

    .launch-banner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 10px 14px 10px 10px;
        border-radius: 22px;
        gap: 10px;
        background-color: rgba(255, 255, 255, 0.45);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.35);
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    }

    .launch-banner__left {
        gap: 8px;
        flex: 1;
        min-width: 0;
        align-items: center;
    }

    .launch-banner__left > div {
        min-width: 0;
        flex: 1;
    }

    .launch-banner__icon {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
    }

    .launch-banner__title {
        font-size: 11px;
        font-weight: 700;
        line-height: 1.2;
        white-space: nowrap;
    }

    .launch-banner__subtitle {
        font-size: 10px;
        font-weight: 400;
        color: var(--color-dark);
        margin-top: 2px;
        line-height: 1.2;
        white-space: nowrap;
    }

    .launch-banner__status {
        font-size: 10px;
        font-weight: 500;
        transform: none;
        white-space: nowrap;
        flex-shrink: 0;
        margin-left: 6px;
        align-self: center;
    }

    .launch-banner__status::before {
        width: 4px;
        height: 4px;
    }
}
