/* Auth Panel Styles */
.auth-section {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 1rem;
    overflow-y: auto;
}

.auth-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #00f3ff, transparent);
    margin: 0.5rem 0 1rem 0;
}

.auth-section h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: #00f3ff;
    margin-bottom: 0.5rem;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.auth-subtitle {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    color: #a0a0b0;
    text-align: center;
    margin-bottom: 0.75rem;
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Auth Forms */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.auth-input {
    background: #0a0a0f;
    border: 1px solid #00f3ff;
    color: #fff;
    padding: 0.5rem;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.8rem;
    border-radius: 4px;
    outline: none;
    transition: all 0.3s ease;
}

.auth-input:focus {
    border-color: #ff00ff;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

.auth-input::placeholder {
    color: #555;
}

.auth-error {
    color: #ff0055;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    text-align: center;
    min-height: 1rem;
}

/* Logged In View */
.auth-logged-in {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.pilot-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: #00ff9d;
    text-shadow: 0 0 10px rgba(0, 255, 157, 0.5);
    text-align: center;
}

.pilot-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    width: 100%;
}

.pilot-stat {
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 4px;
    padding: 0.3rem;
    text-align: center;
}

.pilot-stat .stat-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.6rem;
    color: #888;
    display: block;
}

.pilot-stat .stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: #fff;
}

/* Guest View */
.auth-guest {
    display: flex;
    flex-direction: column;
}

/* Button Styles Update */
.cyber-btn {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.2) 0%, rgba(0, 153, 204, 0.2) 100%);
    border: 1px solid #00f3ff;
    color: #00f3ff;
    padding: 0.5rem 1rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cyber-btn:hover {
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.4) 0%, rgba(0, 153, 204, 0.4) 100%);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
    transform: translateY(-2px);
}

.cyber-btn.secondary {
    background: transparent;
    border-color: #ff00ff;
    color: #ff00ff;
}

.cyber-btn.secondary:hover {
    background: rgba(255, 0, 255, 0.2);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
}

/* Instructions Overlay in Middle Panel */
.instructions-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    padding: 2rem;
}

.instructions-overlay h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: #00f3ff;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
}

.instructions-list {
    list-style: none;
    max-width: 400px;
    margin-bottom: 2rem;
}

.instructions-list li {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1rem;
    color: #a0a0b0;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.instructions-list li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: #ff00ff;
}

.instructions-list li strong {
    color: #00f3ff;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .auth-section {
        padding: 0.75rem;
    }
    
    .auth-section h3 {
        font-size: 1rem;
    }
    
    .pilot-name {
        font-size: 1.2rem;
    }
}
