* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    font-family: 'SF Mono', 'Monaco', 'Menlo', 'Consolas', monospace;
}

/* Terminal Window */
.terminal {
    background: #ffffff;
    border-radius: 10px;
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.1),
        0 10px 40px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 700px;
    overflow: hidden;
}

/* Header with traffic lights */
.terminal-header {
    background: linear-gradient(180deg, #f8f8f8 0%, #e8e8e8 100%);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #d4d4d4;
    position: relative;
}

.terminal-buttons {
    display: flex;
    gap: 8px;
}

.btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.btn.close {
    background: #ff5f56;
}

.btn.minimize {
    background: #ffbd2e;
}

.btn.maximize {
    background: #27c93f;
}

.terminal-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    color: #4a4a4a;
    font-weight: 500;
}

/* Terminal Body */
.terminal-body {
    padding: 24px;
    min-height: 400px;
}

.line {
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 1.6;
}

.line.spacer {
    height: 16px;
}

.prompt {
    color: #666666;
}

.cmd {
    color: #000000;
    font-weight: 600;
}

.text {
    color: #333333;
}

.text.dim {
    color: #888888;
}

.status {
    color: #27c93f;
    font-weight: 600;
}

.ascii-title {
    font-size: 10px;
    line-height: 1.1;
    font-weight: 400;
    color: #000000;
    margin: 0;
    font-family: 'SF Mono', 'Monaco', 'Menlo', 'Consolas', monospace;
    white-space: pre;
}

.version {
    color: #aaaaaa;
    font-size: 12px;
    margin-left: 12px;
}

.link {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.2s ease;
}

.link:hover {
    color: #0044aa;
    text-decoration: underline;
}

/* Blinking Cursor */
.cursor {
    color: #000000;
    animation: blink 1s step-end infinite;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

/* Hero - Logo + ASCII Title */
.hero {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px 0;
}

.logo {
    width: 90px;
    height: auto;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 700px) {
    .hero {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .ascii-title {
        font-size: 6px;
    }

    .logo {
        width: 60px;
    }
}

@media (max-width: 600px) {
    body {
        padding: 1rem;
    }

    .terminal-body {
        padding: 16px;
    }

    .line {
        font-size: 12px;
    }

    .logo {
        width: 50px;
    }
}

/* Selection */
::selection {
    background: #0066cc;
    color: #ffffff;
}