* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', monospace;
    background: #0a0a0a;
    color: #66ff99;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 700px;
}

.terminal {
    background: #0d0d0d;
    border: 1px solid #1a1a1a;
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(102, 255, 153, 0.1);
    overflow: hidden;
}

.terminal-header {
    background: #1a1a1a;
    padding: 12px 16px;
    border-bottom: 1px solid #2a2a2a;
    display: flex;
    align-items: center;
}

.terminal-title {
    color: #66ff99;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.terminal-body {
    padding: 30px;
}

.ascii-art {
    color: #66ff99;
    font-size: 10px;
    line-height: 1.2;
    margin-bottom: 30px;
    text-align: center;
    opacity: 0.9;
}

.info {
    margin-bottom: 30px;
}

.prompt {
    color: #66ff99;
    margin-bottom: 8px;
    font-size: 14px;
}

.user {
    color: #66ff99;
}

.path {
    color: #33ff66;
}

.output {
    color: #888;
    font-size: 14px;
    margin-left: 0;
    margin-bottom: 0;
}

.links {
    margin-bottom: 30px;
}

.links .prompt {
    margin-bottom: 15px;
}

.link {
    display: block;
    color: #66ff99;
    text-decoration: none;
    padding: 12px 16px;
    margin: 8px 0;
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-size: 14px;
}

.link:hover {
    background: #1a1a1a;
    border-color: #66ff99;
    box-shadow: 0 0 20px rgba(102, 255, 153, 0.2);
    transform: translateX(4px);
}

.link-icon {
    color: #66ff99;
    margin-right: 8px;
    opacity: 0.7;
}

.link:hover .link-icon {
    opacity: 1;
}

.role {
    color: #666;
    font-size: 12px;
    margin-left: 8px;
}

.footer {
    margin-top: 30px;
    opacity: 0.7;
}

.cursor {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@media (max-width: 768px) {
    .terminal-body {
        padding: 20px;
    }
    
    .ascii-art {
        font-size: 8px;
    }
    
    .link {
        font-size: 13px;
        padding: 10px 14px;
    }
}
