/* * Assistune CSS Dosyası
 * Aurora efekti ve özel stil tanımları
 */

/* Sayfa kaydırma davranışı */
html {
    scroll-behavior: smooth;
    /* Sabit menü için üstten boşluk bırakma (Butonların çalışması için kritik) */
    scroll-padding-top: 80px;
}

/* Scrollbar Özelleştirme */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #050505;
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #00FFCC;
}

/* Canlı Gradyan Arka Plan (Aurora Efekti) */
.ambient-light {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, #0b0c10 0%, #000000 100%);
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: blob 10s infinite alternate;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: #00FFCC;
    animation-delay: 0s;
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: #2A2356; /* Derin Mor kontrast */
    animation-delay: 2s;
}

.blob-3 {
    top: 40%;
    left: 40%;
    width: 400px;
    height: 400px;
    background: #008f7a; 
    opacity: 0.2;
    animation-delay: 4s;
}

@keyframes blob {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}

/* Glassmorphism Kart Stili */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.glass-card:hover {
    border-color: #00FFCC;
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.1);
}

/* Neon Metin Parlaması */
.text-glow {
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.3);
}

/* Yazı yazma efekti için imleç */
.typing-effect::after {
    content: '|';
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}
