.tabStrip{
    position: absolute;
    top: 1vw;
    left: 15.7vw;
    display: flex;
    gap: 0vw;
    padding: .35vw;
    background-color: #14161A;
    border: .1vw solid #1E2127;
    border-radius: 999px;
    box-shadow: 0 0 0 .05vw rgba(255, 255, 255, 0.03);
}

.tabItem{
    border: none;
    background: transparent;
    color: #8A90A0;
    padding: 0.55vw 5.6vw;
    border-radius: 999px;
    font-size: .95vw;
    cursor: pointer;
    transition: all .2s ease;
}

.tabItem:hover{
    color: #ffffff;
    transform: translateY(-.06vw);
}

.tabItem.active{
    background: linear-gradient(90deg, #2D7DFF, #5A9CFF);
    color: white;
    box-shadow: 0 .2vw .7vw rgba(45, 125, 255, 0.35);
}

/* ===== ДЕСКТОП — как было ===== */
.tabStrip{
    position: absolute;
    top: 1vw;
    left: 15.7vw;
    display: flex;
    gap: 0vw;
    padding: .35vw;
    background-color: #14161A;
    border: .1vw solid #1E2127;
    border-radius: 999px;
    box-shadow: 0 0 0 .05vw rgba(255, 255, 255, 0.03);
}

.tabItem{
    border: none;
    background: transparent;
    color: #8A90A0;
    padding: 0.55vw 5.6vw;
    border-radius: 999px;
    font-size: .95vw;
    cursor: pointer;
    transition: all .2s ease;
}

.tabItem:hover{
    color: #ffffff;
    transform: translateY(-.06vw);
}

.tabItem.active{
    background: linear-gradient(90deg, #2D7DFF, #5A9CFF);
    color: white;
    box-shadow: 0 .2vw .7vw rgba(45, 125, 255, 0.35);
}

/* ===== МОБИЛЬНАЯ ВЕРСИЯ ===== */
@media (max-width: 430px) {
    .tabStrip {
        width: 74vw;
        position: fixed;
        top: 4vw;
        left: 6vw;
        background: rgba(20, 22, 26, 0.92);
        backdrop-filter: blur(16px) saturate(1.4);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 6vw;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        z-index: 100;
        padding-top: env(safe-area-inset-top, 0);
        background: rgb(20 22 26 / 72%);
        backdrop-filter: blur(20px) saturate(1.5);
        border-bottom: .4vw solid rgb(199 222 255 / 15%);
        border-top: .4vw solid rgb(199 222 255 / 8%);
    }
    .tabItem {
        flex: 1;
        border: none;
        background: transparent;
        color: #8A90A0;
        padding: 14px 23px;
        border-radius: 0;
        font-size: 3vw;
        font-weight: 600;
        font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
        cursor: pointer;
        transition: all 0.25s ease;
        position: relative;
        letter-spacing: -0.2px;
        -webkit-tap-highlight-color: transparent;
    }

    .tabItem:active {
        background: rgba(255, 255, 255, 0.04);
    }

    .tabItem:hover {
        color: #ffffff;
        transform: none;
    }

    /* Индикатор активной вкладки — полоска снизу */
    .tabItem.active {
        background: transparent;
        color: #ffffff;
        box-shadow: none;
        font-weight: 700;
    }

    .tabItem.active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 40%;
        height: 3px;
        background: linear-gradient(90deg, #2D7DFF, #5A9CFF);
        border-radius: 3px 3px 0 0;
        box-shadow: 0 0 12px rgba(45, 125, 255, 0.6);
    }

    /* Отступ для контента чтобы не перекрывался табами */
    body {
        padding-top: 60px;
    }
}
