/* Site geneli — koyu mavi/mor ambient (tüm sayfalar) */

/* Pseudo arka planların üstünde içerik (tüm sayfa tipleri) */
body > nav,
body > .site-page,
body > .container,
body > footer.site-footer {
    position: relative;
    z-index: 1;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
    background:
        radial-gradient(ellipse 45% 40% at 8% 18%, rgba(102, 126, 234, 0.14) 0%, transparent 70%),
        radial-gradient(ellipse 40% 36% at 92% 82%, rgba(118, 75, 162, 0.1) 0%, transparent 68%),
        radial-gradient(ellipse 35% 30% at 50% 55%, rgba(102, 126, 234, 0.06) 0%, transparent 72%);
    animation: ambientSoftGlow 22s ease-in-out infinite;
}

/* Site geneli — hafif ızgara dokusu */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.28;
    background-image:
        linear-gradient(rgba(102, 126, 234, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(102, 126, 234, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 45%, black 15%, transparent 78%);
}

@keyframes ambientSoftGlow {
    0%, 100% { opacity: 0.45; }
    50% { opacity: 0.7; }
}

@media (prefers-reduced-motion: reduce) {
    body::before {
        animation: none;
        opacity: 0.5;
    }
    body {
        animation: none !important;
    }
}
