/* NickServ Password Modal */
.nickserv-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.nickserv-modal-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    width: 400px;
    max-width: 90vw;
    animation: slideIn 0.3s ease;
    overflow: hidden;
}

.nickserv-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nickserv-header h3 {
    color: white;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.nickserv-header i {
    margin-right: 8px;
    color: #ffc107;
}

.nickserv-body {
    padding: 25px;
    color: white;
    text-align: center;
}

.nickserv-body p {
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.password-input-group {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

#nickserv-password {
    flex: 1;
    padding: 10px 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

#nickserv-password::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

#nickserv-password:focus {
    border-color: #ffc107;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.3);
}

.btn-primary, .btn-secondary {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.btn-primary {
    background: #ffc107 !important;
    color: #212529;
}

.btn-primary:hover {
    background: #ffca2c;
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

.nickserv-actions {
    margin-top: 15px;
}

/* Animasyonlar */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nickserv-modal-content {
        width: 350px;
        margin: 20px;
    }
    /*
    .password-input-group {
        flex-direction: column;
    }
    */
}
