:root {
    --bg-color: #000000;
    --text-primary: #e0e0e0;
    --text-dim: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Consolas', 'Courier New', monospace;
    /* More terminal/raw feel */
    user-select: none;
    cursor: default;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    /* Vertically center */
    justify-content: center;
    /* Align center */
    overflow: hidden;
    letter-spacing: -0.5px;
    padding-left: 0;
}

/* Background Effect */
#bg-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image:
        radial-gradient(circle at 10% 20%, #222 0%, transparent 40%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.void-container {
    position: relative;
    z-index: 10;
    width: 400px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* Removed card styling (borders/shadows) for raw terminal look */
}

.status-line {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-dim);
    text-transform: lowercase;
}

.dot {
    width: 6px;
    height: 6px;
    background-color: #ff3333;
    /* Red dot used in image */
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(255, 51, 51, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

.main-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.console-output {
    font-size: 0.9rem;
    font-family: 'Consolas', monospace;
    color: #444;
    /* Darker grey for initial lines if needed, but image shows light grey */
    color: #888;
    display: flex;
    flex-direction: column;
    min-height: 100px;
}

.console-output div {
    font-family: 'Consolas', monospace;
    opacity: 0.8;
}

.blink {
    animation: blink 1s step-end infinite;
    color: var(--text-primary);
    margin-left: 5px;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.footer-hash {
    display: none;
    /* Hide if not in image */
}

@media (max-width: 600px) {
    body {
        padding-left: 20px;
        align-items: flex-start;
        padding-top: 20vh;
    }

    .void-container {
        width: 90%;
    }
}