/* Font Ayarları */
.font-outfit {
    font-family: 'Outfit', sans-serif;
}

/* Cam Efekti (Ferah ve Aydınlık Tema İçin) */
.glass-panel {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}

/* Neon Işıma Efektleri */
.neon-text-glow {
    text-shadow: 0px 0px 20px rgba(6, 182, 212, 0.3), 0px 0px 40px rgba(168, 85, 247, 0.2);
}

.neon-btn {
    box-shadow: 0 10px 25px -5px rgba(6, 182, 212, 0.4), 0 8px 10px -6px rgba(168, 85, 247, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.neon-btn:hover {
    box-shadow: 0 20px 35px -5px rgba(6, 182, 212, 0.6), 0 10px 15px -5px rgba(168, 85, 247, 0.5);
    transform: translateY(-3px) scale(1.02);
}

/* Servis Kartları Animasyonları */
.service-card {
    transition: all 0.4s ease;
    cursor: pointer;
}

.service-card:hover {
    background: #ffffff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05);
    border-color: rgba(6, 182, 212, 0.3);
    transform: translateY(-8px);
}

/* Özel Animasyonlar */
@keyframes pulse-slow {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.05); opacity: 0.5; }
}

.animate-pulse-slow {
    animation: pulse-slow 8s infinite ease-in-out;
}

/* Scroll (Aşağı Kaydırma) Efektleri İçin Başlangıç Durumu */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Modal Görünürlük Efektleri */
.modal-active {
    opacity: 1 !important;
    pointer-events: auto !important;
}

.modal-active #auth-card {
    transform: scale(1) !important;
}