/* startup.css */

.startup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: rgba(0,0,0,0.85);
    color: #0f0;
    font-family: monospace;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.startup-title {
    font-size: 5em;
    margin-bottom: 20px;
    font-family: 'Orbitron', sans-serif;
}

.auth-section {
    margin: 20px 0;
    border: 1px solid #0f0;
    padding: 20px;
    background: rgba(0,255,0,0.1);
}

.auth-input {
    background: #000;
    color: #0f0;
    border: 1px solid #0f0;
    padding: 5px;
    margin: 5px;
}

.auth-btn {
    background: #000;
    color: #0f0;
    border: 1px solid #0f0;
    padding: 5px 15px;
    cursor: pointer;
}

.game-options-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.game-options-row {
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: center;
}

.startup-panel {
    flex: 1;
    background: rgba(0,255,0,0.1);
    border: 1px solid #0f0;
    padding: 20px;
    text-align: center;
}

.startup-panel-header {
    margin-top: 0;
    border-bottom: 1px solid #0f0;
    padding-bottom: 10px;
}

.startup-level {
    color: yellow;
    font-size: 2.4em;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
}

.startup-stats-section {
    margin-top: 20px;
    font-size: 1.1em;
    text-align: left;
    padding: 0 20px;
}

.startup-stat-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}
