/* Basic terminal styling */
body {
    background-color: #1c1c2c;
    color: #e0e0e0;
    font-family: 'Courier New', Courier, monospace;
    line-height: 1.6;
    margin: 0;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

a {
    color: #a6e22e;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1, h2 {
    color: #a6e22e;
}

.container {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 16px;
}

.lead {
    margin-top: 6px;
    margin-bottom: 18px;
}

.card {
    width: 100%;
    background: rgba(20,22,28,0.6);
    border-radius: 10px;
    padding: 28px 32px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* Title bar styling */
.title-bar {
    background-color: #44475a;
    color: #e0e0e0;
    padding: 8px;
    font-size: 1em;
    display: flex;
    justify-content: space-between;
    cursor: move;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.close-btn {
    cursor: pointer;
    color: #ff5555;
}

.close-btn:hover {
    color: #ff3333;
}

/* Content area within the container */
.content {
    padding: 0;
}

.section {
    margin-bottom: 28px;
}

/* Footer styling */
.footer {
    text-align: center;
    font-size: 0.8em;
    color: #888888;
    margin-top: 30px;
    opacity: 0.9;
}

/* Blinking cursor */
.blinking-cursor {
    font-size: 1.2em;
    color: #a6e22e;
    animation: blink 1s steps(2, start) infinite;
    display: inline;
    margin-left: 5px;
    vertical-align: baseline;
}

/* Blinking animation */
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}
