/* Sadece Tailwind'in çözemediği gelişmiş Responsive Fontlar (Clamp) ve Özel Efektler */
:root {
    --glass-bg: rgba(15, 23, 42, 0.4);
    --glass-border: rgba(255, 255, 255, 0.05);
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
}

/* Esnek Metinler (Clamp) - Ekran küçüldükçe font otomatik küçülür */
.text-fluid-h1 { font-size: clamp(1.5rem, 4vw, 2.5rem); line-height: 1.2; }
.text-fluid-h2 { font-size: clamp(1.25rem, 3vw, 2rem); line-height: 1.3; }
.text-fluid-p { font-size: clamp(0.875rem, 2vw, 1.125rem); }

/* Özel Kaydırma Çubuğu */
.custom-scrollbar::-webkit-scrollbar { width: 6px; height: 6px; }
.custom-scrollbar::-webkit-scrollbar-track { background: rgba(0, 0, 0, 0.2); border-radius: 4px; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.1); border-radius: 4px; }
.custom-scrollbar::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.2); }

/* Uzun İsimlerin Taşmasını Engelleme */
.break-words-custom {
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}
