/* MACOS PARODY THEME */
body {
    margin: 0; height: 100vh; overflow: hidden;
    background: url('https://ci5.run/static/signal.png') center/cover;
    font-family: 'Inter', -apple-system, sans-serif;
}

/* MENU BAR */
.menu-bar {
    height: 28px; background: rgba(255,255,255,0.5); backdrop-filter: blur(20px);
    display: flex; justify-content: space-between; align-items: center; padding: 0 15px;
    font-size: 13px; color: #000; box-shadow: 0 1px 5px rgba(0,0,0,0.1);
}
.menu-left { display: flex; gap: 15px; }
.bold { font-weight: 700; }
.menu-right { display: flex; gap: 15px; font-weight: 500; }

/* WINDOW */
.window-frame {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -55%);
    width: 900px; height: 600px; background: #fff; border-radius: 12px;
    box-shadow: 0 20px 80px rgba(0,0,0,0.4); display: flex; overflow: hidden;
    border: 1px solid #ccc;
}

/* SIDEBAR */
.sidebar {
    width: 200px; background: #f5f5f7; border-right: 1px solid #e5e5e5;
    padding: 20px; display: flex; flex-direction: column;
}

.traffic-lights { display: flex; gap: 8px; margin-bottom: 20px; }
.light { width: 12px; height: 12px; border-radius: 50%; }
.red { background: #ff5f57; border: 1px solid #e0443e; }
.yellow { background: #febc2e; border: 1px solid #d8a123; }
.green { background: #28c840; border: 1px solid #1aab29; }

.search-input {
    background: #e3e3e5; border: none; padding: 6px 10px; border-radius: 6px;
    width: 100%; margin-bottom: 20px; font-size: 13px; color: #666;
}

.nav-header { font-size: 12px; font-weight: 700; color: #888; margin-bottom: 8px; margin-top: 20px; }
.nav-item { padding: 6px 10px; font-size: 14px; border-radius: 6px; cursor: pointer; display: flex; justify-content: space-between; }
.nav-item.active { background: #e5e5e7; color: #007aff; }
.badge { background: #ff3b30; color: #fff; font-size: 10px; padding: 2px 6px; border-radius: 10px; }

/* CONTENT */
.content-area { flex: 1; padding: 30px; overflow-y: auto; }

.hero-card {
    height: 200px; background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
    border-radius: 12px; padding: 30px; color: white; margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.hero-tag { font-size: 12px; font-weight: 700; opacity: 0.8; margin-bottom: 10px; }
.hero-title { font-size: 32px; font-weight: 700; margin-bottom: 5px; }

.section-title { font-size: 20px; font-weight: 700; margin-bottom: 15px; border-bottom: 1px solid #eee; padding-bottom: 10px; }

.app-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.app-row { display: flex; align-items: center; gap: 15px; padding-bottom: 15px; border-bottom: 1px solid #f0f0f0; }
.app-icon { width: 48px; height: 48px; background: #eee; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; }
.app-details { flex: 1; }
.app-name { font-weight: 600; font-size: 15px; }
.app-cat { font-size: 12px; color: #888; }
.get-btn {
    background: #f0f0f8; color: #007aff; border: none; padding: 5px 20px;
    border-radius: 20px; font-weight: 700; font-size: 13px; cursor: pointer; transition: 0.2s;
}
.get-btn:hover { background: #e0e0f0; }
.get-btn.installed { background: #34c759; color: #fff; }

/* DOCK */
.dock-container {
    position: fixed; bottom: 20px; width: 100%; display: flex; justify-content: center;
}
.dock {
    background: rgba(255,255,255,0.4); backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.3); padding: 10px 15px; border-radius: 24px;
    display: flex; align-items: flex-end; gap: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.icon-box {
    width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: white; box-shadow: 0 4px 10px rgba(0,0,0,0.2); transition: 0.2s;
}
.dock-icon:hover .icon-box { transform: translateY(-10px) scale(1.1); }
.term { background: #333; }
.store { background: linear-gradient(180deg, #1fa2ff, #12d8fa, #a6ffcb); }
.net { background: linear-gradient(180deg, #f093fb, #f5576c); }
.bin { background: #ccc; }
.separator { width: 1px; height: 40px; background: rgba(0,0,0,0.2); margin: 0 5px; }
.dock-dot { width: 4px; height: 4px; background: #333; border-radius: 50%; margin: 4px auto 0 auto; }