body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; }
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.glass-effect {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.terminal-container {
    width: 100%;
    max-width: 500px;
    background: #1e1e1e;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    font-family: 'ui-monospace', 'SFMono-Regular', 'Menlo', 'Monaco', 'Consolas', 'Liberation Mono', 'Courier New', monospace;
}
.terminal-header {
    background: #2d2d2d;
    padding: 12px 16px;
    display: flex;
    align-items: center;
}
.terminal-buttons {
    display: flex;
    gap: 8px;
    margin-right: 16px;
}
.terminal-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.btn-close { background: #ff5f56; }
.btn-minimize { background: #ffbd2e; }
.btn-maximize { background: #27c93f; }
.terminal-title {
    color: #999;
    font-size: 12px;
    letter-spacing: 0.05em;
}
.terminal-body {
    padding: 24px;
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.7;
    background: #1a1a1a;
}
.code-line { margin-bottom: 8px; }
.code-prompt { color: #50fa7b; margin-right: 12px; font-weight: bold; }
.code-cmd { color: #f1fa8c; }
.code-flag { color: #ff79c6; margin-left: 8px; }
.code-url { color: #8be9fd; margin-left: 8px; }
.code-comment { color: #6272a4; font-style: italic; display: block; margin-top: 4px; }
.code-success { color: #50fa7b; font-weight: bold; margin-right: 12px; }
.code-response { color: #bd93f9; }
.cursor {
    display: inline-block;
    width: 8px;
    height: 18px;
    background: #50fa7b;
    margin-left: 4px;
    animation: blink 1s step-end infinite;
    vertical-align: middle;
}
@keyframes blink {
    from, to { opacity: 1; }
    50% { opacity: 0; }
}
