/* Shared Arcade Score Overlay Styles */
#arcade-score-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 16, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    font-family: 'Courier New', monospace;
}

.arcade-modal {
    background: #000010;
    border: 2px solid var(--pink, #ff00ff);
    box-shadow: 0 0 30px var(--pink, #ff00ff);
    padding: 40px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.arcade-modal h2 {
    color: var(--neon, #00ffff);
    text-shadow: 0 0 10px var(--neon, #00ffff);
    margin-top: 0;
}

.score-display {
    font-size: 3rem;
    color: white;
    margin: 20px 0;
    text-shadow: 0 0 10px white;
}

#arcade-alias-input {
    background: transparent;
    border: 1px solid var(--neon, #00ffff);
    color: white;
    font-family: 'Courier New', monospace;
    font-size: 2rem;
    text-align: center;
    width: 120px;
    padding: 10px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

#arcade-alias-input:focus {
    outline: none;
    box-shadow: 0 0 15px var(--neon, #00ffff);
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-buttons button {
    background: transparent;
    border: 1px solid var(--neon, #00ffff);
    color: var(--neon, #00ffff);
    padding: 12px;
    cursor: pointer;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    transition: all 0.3s;
}

.modal-buttons button:hover {
    background: var(--neon, #00ffff);
    color: black;
}

#arcade-status-msg {
    margin-top: 20px;
    font-weight: bold;
    height: 40px;
}
