/* ===== Taskbar ===== */
.taskbar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 46px;
    background: rgba(6, 10, 16, 0.88);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-top: 1px solid rgba(255, 255, 255, 0.055);
    box-shadow: 0 -1px 0 rgba(255,255,255,0.03), 0 -8px 30px rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    padding: 0 8px;
    z-index: 100;
    transition: none;
}

.taskbar-start {
    padding: 0 6px;
}

.start-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 2px 10px var(--accent-glow);
}

.start-btn:hover {
    transform: scale(1.07);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.start-logo {
    font-weight: 700;
    font-size: 0.82rem;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.1em;
}

.taskbar-apps {
    flex: 1;
    display: flex;
    gap: 4px;
    padding: 0 8px;
}

.taskbar-app {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s ease;
    border: 1px solid transparent;
    position: relative;
}

.taskbar-app:hover {
    background: rgba(255, 255, 255, 0.07);
}

.taskbar-app.active {
    border-color: rgba(74, 163, 255, 0.3);
    background: rgba(74, 163, 255, 0.08);
}

.taskbar-app.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.taskbar-app i {
    font-size: 0.85rem;
    color: var(--accent);
}

.taskbar-app span {
    font-size: 0.78rem;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--text-secondary);
}

.taskbar-app.active span {
    color: var(--text);
}

.taskbar-tray {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 10px;
}

.tray-item {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.15s ease;
    font-size: 0.85rem;
}

.tray-item:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
}

.tray-time {
    font-size: 0.82rem;
    padding: 0 8px;
    font-weight: 500;
    color: var(--text-secondary);
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.04em;
}

/* ===== Start Menu ===== */
.start-menu {
    position: absolute;
    bottom: 54px;
    left: 8px;
    width: 270px;
    background: rgba(10, 14, 22, 0.95);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 0 0.5px rgba(255,255,255,0.04) inset;
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 200;
}

.start-menu.active {
    display: flex;
    animation: slideUp 0.18s cubic-bezier(0.34, 1.3, 0.64, 1);
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(8px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.start-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.025);
    border-bottom: 1px solid rgba(255,255,255,0.055);
}

.start-avatar {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 50%;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.start-user {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-weight: 600;
    font-size: 0.92rem;
}

.user-status {
    font-size: 0.76rem;
    color: var(--success);
}

.start-apps {
    padding: 6px;
}

.start-app {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.15s ease;
    font-size: 0.88rem;
}

.start-app:hover {
    background: rgba(255, 255, 255, 0.05);
}

.start-app i {
    width: 18px;
    text-align: center;
    color: var(--accent);
    font-size: 0.9rem;
}

.start-footer {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 10px;
    border-top: 1px solid rgba(255,255,255,0.055);
}

.start-footer a {
    color: var(--text-muted);
    font-size: 1rem;
    transition: color 0.15s ease;
}

.start-footer a:hover {
    color: var(--accent);
}
