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

body {
    background: #0d1117;
    color: #00ff66;
    font-family: "Courier New", monospace;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.terminal {
    width: 90%;
    max-width: 900px;
    background: #161b22;
    border: 1px solid #30363d;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(0, 255, 102, 0.15);
}

.title-bar {
    background: #21262d;
    color: #c9d1d9;
    padding: 12px 16px;
    border-bottom: 1px solid #30363d;
}

.content {
    padding: 25px;
    line-height: 1.8;
}

.prompt {
    color: #58a6ff;
}

.message {
    color: #00ff66;
    margin: 15px 0;
    font-size: 1.2rem;
}

.cursor-line {
    margin-top: 20px;
}

.cursor {
    display: inline-block;
    width: 10px;
    height: 18px;
    background: #00ff66;
    margin-left: 5px;
    animation: blink 1s infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}
