/* index.php - anasayfa stilleri */

:root {
    --primary: #FFF44F;
    --accent-blue: #BAE6FD;
}

html {
    scrollbar-width: none;
}
html::-webkit-scrollbar {
    display: none;
}
body {
    background-color: #FDFDF2;
    -ms-overflow-style: none;
}

.story-card {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.story-card:hover {
    transform: translateY(-12px) scale(1.02);
}

.bg-grid-pattern {
    background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
    background-size: 20px 20px;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.custom-scrollbar::-webkit-scrollbar {
    width: 8px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Header: dil seçici dropdown (include/header.php) */
.lang-switcher .lang-option {
    text-decoration: none;
}
.lang-switcher .lang-option:focus {
    outline: 2px solid var(--primary);
    outline-offset: -2px;
}
.lang-dropdown-backdrop {
    cursor: default;
}
