.polo-ingame-name-section {
    margin-bottom: 1.5rem;
}

.polo-ingame-name-input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--polo-bg-light);
    border: 2px solid var(--polo-border);
    border-radius: var(--polo-border-radius);
    color: var(--polo-text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.polo-ingame-name-input:focus {
    outline: none;
    border-color: var(--polo-primary);
    background: var(--polo-bg-card);
    box-shadow: 0 0 0 3px rgba(241, 196, 15, 0.1);
}

.polo-ingame-name-input::placeholder {
    color: var(--polo-text-muted);
    opacity: 0.6;
}

.polo-ingame-name-help {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--polo-text-secondary);
    font-style: italic;
}

.polo-ingame-name-input.error {
    border-color: #e74c3c;
    animation: shake 0.5s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .polo-ingame-name-input {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

