/* --- 🍎 库克风：AI 终端模拟器 (Glassmorphism) --- */
.terminal-window {
    background: rgba(255, 255, 255, 0.7); /* 半透明白 */
    backdrop-filter: blur(20px); /* 核心：磨砂玻璃效果 */
    -webkit-backdrop-filter: blur(20px);
    border-radius: 18px; /* 更圆润的角 */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1); /* 弥散大投影 */
    margin: 30px auto;
    max-width: 720px;
    font-family: -apple-system, "SF Mono", "Fira Code", monospace;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.4); /* 亮色边框勾勒质感 */
}

/* 适配深色模式 */
[data-theme="dark"] .terminal-window {
    background: rgba(30, 41, 59, 0.7);
    border-color: rgba(255, 255, 255, 0.1);
}

.terminal-header {
    background: rgba(255, 255, 255, 0.5);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.terminal-header .buttons span {
    display: inline-block; width: 12px; height: 12px; border-radius: 50%; margin-right: 8px;
}
.terminal-header .close { background: #ff5f57; }
.terminal-header .minimize { background: #febc2e; }
.terminal-header .maximize { background: #28c840; }

.terminal-header .title {
    flex: 1; text-align: center; color: #86868b; font-size: 13px; font-weight: 500;
}

.terminal-body {
    padding: 24px;
    color: #1d1d1f;
    font-size: 15px;
    line-height: 1.7;
}

[data-theme="dark"] .terminal-body { color: #f5f5f7; }

.terminal-body .prompt { color: #0071e3; margin-right: 10px; font-weight: 600; }
.terminal-body .command { color: #1d1d1f; font-weight: 500; }
[data-theme="dark"] .terminal-body .command { color: #fff; }

.terminal-body .output { color: #86868b; margin: 8px 0; }
.terminal-body .text-highlight { 
    color: #0071e3; /* 苹果蓝 */
    background: rgba(0, 113, 227, 0.05);
    padding: 2px 6px;
    border-radius: 4px;
}

/* --- 🍎 库克风：灵动胶囊按钮 --- */
.vibe-launch-pad { display: flex; justify-content: center; margin: 50px 0; }

.vibe-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 280px;
    height: 64px;
    
    /* 胶囊形态 */
    border-radius: 32px;
    
    /* 苹果深空黑/深蓝渐变 */
    background: #1d1d1f;
    color: #fff !important;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    font-size: 17px;
    text-decoration: none !important;
    
    /* 柔和阴影 */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.vibe-btn:hover {
    transform: scale(1.03) translateY(-2px);
    background: #000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.vibe-btn:active {
    transform: scale(0.98);
}

.vibe-icon {
    font-size: 20px;
    /* 赋予图标轻微的呼吸感 */
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}