/* Start Options Container */
.start-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Input Styling */
#player-name-input,
#start-address {
    width: 100%;
    padding: 16px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

#player-name-input::placeholder,
#start-address::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
    text-transform: none;
    /* Keep placeholder normal or uppercase? Uppercase looks cooler */
}

#player-name-input:focus,
#start-address:focus {
    border-color: #ff4444;
    outline: none;
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 25px rgba(255, 68, 68, 0.4);
    transform: scale(1.02);
}

#start-address:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 15px rgba(255, 68, 68, 0.3);
}

.divider {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    position: relative;
    margin: 5px 0;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

/* Button Variations */
.start-button.primary {
    background: linear-gradient(135deg, var(--primary), #cc0000);
}

.start-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
    padding: 12px;
}

.start-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}