body {
    background-color: #000;
    color: #33ff00;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 20px; 
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

body::before {
    content: " ";
    display: block;
    position: fixed; 
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    z-index: 2;
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
}

@keyframes flicker {
    0% { opacity: 0.97; }
    5% { opacity: 0.95; }
    10% { opacity: 0.9; }
    15% { opacity: 0.95; }
    20% { opacity: 1; }
    50% { opacity: 0.95; }
    100% { opacity: 0.98; }
}

.screen {
    animation: flicker 0.15s infinite;
    z-index: 1;
    max-width: 800px;
    margin-bottom: 50px;
}

p {
    margin: 0;
    line-height: 1.5;
    font-size: 1.1rem;
}

.highlight {
    color: white;
    font-weight: bold;
}

.cursor {
    display: inline-block;
    width: 10px;
    height: 1.2rem;
    background-color: #33ff00;
    animation: blink 1s step-end infinite;
    vertical-align: middle;
    margin-bottom: 4px;
}

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

.hidden { display: none; }

.legal-footer {
    position: fixed;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 1;
}

.legal-footer span {
    color: rgba(51, 255, 0, 0.7); 
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.legal-footer span:hover {
    color: rgba(51, 255, 0, 1);
    text-shadow: 0 0 8px rgba(51, 255, 0, 0.6); 
}

.modal {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 100;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.modal-content {
    border: 1px dashed rgba(51, 255, 0, 0.3);
    padding: 25px 35px;
    background-color: #000;
    text-align: center;
    min-width: 250px;
}

#impressumText {
    margin: 0 0 15px 0;
    color: rgba(51, 255, 0, 0.7);
    font-size: 0.9rem;
}

.blink-close {
    margin: 0;
    font-size: 0.75rem;
    color: rgba(51, 255, 0, 0.3);
    animation: blink 2s step-end infinite;
    cursor: pointer;
}