/* ===== Taskbar ===== */
.taskbar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 48px;
    background: rgba(18, 18, 26, 0.95);
    backdrop-filter: blur(20px);
    border-top: 2px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 8px;
    z-index: 100;
    transition: none;
}

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

.start-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: none;
}

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

.start-logo {
    font-weight: 700;
    font-size: 0.9rem;
}

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

.taskbar-app {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: var(--bg-hover);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.taskbar-app:hover {
    background: var(--bg-window);
}

.taskbar-app.active {
    border-color: var(--accent);
    background: var(--bg-window);
}

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

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

.taskbar-app span {
    font-size: 0.8rem;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

.tray-item {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.tray-item:hover {
    background: var(--bg-hover);
    color: var(--text);
}

.tray-time {
    font-size: 0.85rem;
    padding: 0 8px;
    font-weight: 500;
}

/* ===== Start Menu ===== */
.start-menu {
    position: absolute;
    bottom: 56px;
    left: 8px;
    width: 280px;
    background: rgba(26, 26, 36, 0.98);
    backdrop-filter: blur(30px);
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 200;
}

.start-menu.active {
    display: flex;
    animation: slideUp 0.2s ease;
}

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

.start-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-header);
    border-bottom: 1px solid var(--border);
}

.start-avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 50%;
    font-weight: 700;
}

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

.user-name {
    font-weight: 600;
}

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

.start-apps {
    padding: 8px;
}

.start-app {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.start-app:hover {
    background: var(--bg-hover);
}

.start-app i {
    width: 20px;
    text-align: center;
    color: var(--accent);
}

.start-footer {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 12px;
    border-top: 1px solid var(--border);
}

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

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