/**
 * Şimşek Yazılım - Özel Stil Kuralları
 * Custom CSS for smooth scrolling, custom scrollbars, and utilities.
 */

/* Yumuşak Kaydırma (Smooth Scrolling) */
html {
    scroll-behavior: smooth;
}

/* Glass Header Geçiş Efekti */
.glass-header {
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* Özel Koyu/Açık Kaydırma Çubuğu (Scrollbar) */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0f172a;
}

::-webkit-scrollbar-thumb {
    background: #2563eb;
    border-radius: 4px;
}

/* Spam / Bot Honeypot Görünmez Alanı */
.hp-field {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}
