/* ====================================================================
   ARCADE TERMINAL ENGINE - HIGHSCORE OVERLAY STYLES
   ==================================================================== */

#scifi-shooter-highscores-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.98); /* Tiefschwarzer Terminal-Hintergrund */
    color: #00ff00; /* Reines Matrix-Grün */
    z-index: 99999;
    overflow-y: auto;
    padding: 40px 20px;
    box-sizing: border-box;
    text-align: center;
    font-family: 'Courier New', Courier, monospace; /* Puristischer Retro-Look */
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* Leuchtendes Hauptverzeichnis für die Veteranen-Halle */
#scifi-shooter-highscores-overlay h1 {
    color: #00ff00;
    margin-bottom: 30px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    text-shadow: 0 0 12px rgba(0, 255, 0, 0.6);
    font-size: 2rem;
}

/* Die Highscore-Liste als strukturierte Daten-Tabelle */
#scifi-shooter-full-score-list {
    list-style: none;
    padding: 0;
    max-width: 550px;
    margin: 30px auto;
    border: 1px dashed rgba(0, 255, 0, 0.3);
    background: rgba(0, 20, 0, 0.2);
    padding: 20px;
    border-radius: 4px;
}

/* Einzelne Tabellenzeilen im Arcade-Stil */
#scifi-shooter-full-score-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 10px;
    border-bottom: 1px solid rgba(0, 255, 0, 0.15);
    transition: background 0.2s;
}

#scifi-shooter-full-score-list li:hover {
    background: rgba(0, 255, 0, 0.08); /* Minimaler Highlight-Effekt beim Drüberfahren */
}

#scifi-shooter-full-score-list li:last-child {
    border-bottom: none;
}

/* Pilotennamen hervorheben */
#scifi-shooter-full-score-list .name {
    font-weight: bold;
    color: #00ff00;
}

/* Erzielte Punkte im Neon-Look */
#scifi-shooter-full-score-list .score {
    color: #00ff00;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
}

/* Die taktischen Rückkehr-Buttons */
#scifi-shooter-close-overlay-btn-top,
#scifi-shooter-close-overlay-btn-bottom {
    display: inline-block;
    margin: 20px auto;
    padding: 12px 28px;
    font-size: 1rem;
    background: #111;
    border: 2px solid #00ff00;
    color: #00ff00;
    cursor: pointer;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
    text-transform: uppercase;
    transition: all 0.2s ease-in-out;
}

/* Hover-Effekt zündet die Nachbrenner */
#scifi-shooter-close-overlay-btn-top:hover,
#scifi-shooter-close-overlay-btn-bottom:hover {
    background: #00ff00;
    color: #000000; /* Text wird beim Hover schwarz auf grün */
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
    transform: scale(1.02);
}
