body {
    background-color: #111;
    color: #eee;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

#starfield {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
}

.room {
    display: grid;
    /* Spalten etwas enger */
    grid-template-columns: 0.8fr 2fr 0.8fr;
    grid-template-rows: auto auto auto;
    
    /* HIER IST DIE ÄNDERUNG: */
    gap: 0px; /* Kein Loch mehr zwischen den Elementen */
    row-gap: 5px; /* Nur minimaler Abstand vertikal */
    
    align-items: center;
    max-width: 1200px; /* Etwas schmaler insgesamt */
    padding: 0px;
    
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
}

pre {
    font-size: 11px;
    line-height: 1.0; /* Zeilen enger zusammen */
    font-weight: bold;
    color: #ccc;
    display: inline-block;
    text-align: left;
    text-shadow: 1px 1px 0px #000;
}

.item { 
    text-align: center; 
    position: relative; 
    transition: transform 0.2s; 
    padding: 5px; /* Kleines Polster statt großem Gap */
}

.item:hover { transform: scale(1.02); }
.item:hover pre { color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.5); }

/* === SPEZIAL ANPASSUNGEN === */

/* Die Cloud höher ziehen */
.cloud-area { 
    grid-column: 2; 
    grid-row: 1; 
    opacity: 0.8; 
    margin-top: -40px; /* Zieht sie nach oben! */
}

/* Den neuen Tux etwas schöner positionieren */
.tux-area {
    grid-column: 3;
    grid-row: 3;
    opacity: 0.9;
    margin-top: -20px; /* Etwas näher an den Kaffee rücken */
}

/* Den alten Server unten links näher rücken */
.server-old-area {
    grid-column: 1;
    grid-row: 3;
    opacity: 0.8;
    margin-top: -20px;
}

/* Restliche Positionen */
.grid-area       { grid-column: 1; grid-row: 1; color: #ffcc00; margin-bottom: -20px; }
.shelf-area      { grid-column: 3; grid-row: 1; opacity: 0.7; margin-bottom: -20px; }

.server-hv-area  { grid-column: 1; grid-row: 2; }
.desk-area       { grid-column: 2; grid-row: 2; z-index: 10; }
.coffee-area     { grid-column: 3; grid-row: 2; }


/* === EFFEKTE (Neon & Co) === */
.neon-bolt {
    color: #ff0;
    text-shadow: 0 0 10px #ff0, 0 0 20px #ff0;
    animation: flicker 2s infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
    52% { opacity: 0.2; }
    54% { opacity: 1; }
}

.btn {
    display: inline-block;
    margin-top: 10px; /* Weniger Abstand zum Namen */
    color: #0f0; 
    text-decoration: none;
    border: 1px solid #0f0;
    padding: 8px 20px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 5px #0f0;
}
.btn:hover { background-color: #0f0; color: #000; box-shadow: 0 0 20px #0f0; }

.content { margin-top: 10px; text-align: center; } /* Text näher am Tisch */

.typing {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid #fff;
    width: 0;
    animation: typing 2s steps(30, end) forwards, blink-cursor .75s step-end infinite;
    animation-fill-mode: forwards;
}
@keyframes typing { from { width: 0 } to { width: 100% } }
@keyframes blink-cursor { from, to { border-color: transparent } 50% { border-color: white } }
.blink { animation: blinker 1s linear infinite; }
@keyframes blinker { 50% { opacity: 0; } }
.status { color: #0f0; }
.label { color: #888; font-size: 9px; }

.secret-link { text-decoration: none; color: inherit; cursor: pointer; }
.secret-link:hover { color: #0f0; background-color: #0f0; }

/* Handy */
@media (max-width: 900px) {
    .room { display: flex; flex-direction: column; top: 0; left: 0; transform: none; width: 100%; padding-top: 20px; gap: 20px;}
    .shelf-area { display: none; }
    /* Auf Handy zeigen wir Tux trotzdem, weil er cool ist */
    .tux-area { display: block; order: 5; margin-top: 20px; }
    .grid-area { order: 1; margin: 0;}
    .desk-area { order: 2; margin: 0;}
    .server-hv-area { order: 3; }
    .server-old-area { display: none; }
}