.tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px 0;
    margin: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    padding: 10px 15px;
    border-radius: 10px;
}

.tab-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.tab-btn.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.tab-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .tabs {
        gap: 5px;
        flex-wrap: wrap;
    }
    .tab-btn {
        font-size: 13px;
        padding: 8px 10px;
    }
}
