/* back.css */
body {
    margin: 0;
    padding: 0;
    min-height: 100vh; 
    background-color: #0a1128 !important; 
    position: relative;
    overflow-x: hidden;
}


body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background-image: radial-gradient(rgba(59, 130, 246, 0.25) 1px, transparent 1px);
    background-size: 24px 24px; 
    z-index: -1; 
    pointer-events: none;
}


.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12), transparent 70%);
    pointer-events: none;
    z-index: 1; 
    will-change: transform;
    border-radius: 50%;
    
    margin-left: -300px; 
    margin-top: -300px;
}


.corner-light {
    position: fixed;
    width: 40vw;
    height: 40vw;
    pointer-events: none;
    z-index: -2; 
    filter: blur(100px);
    opacity: 0.15; 
    background: #3b82f6;
}
/* back.css güncelleme */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Nokta yerine ince teknolojik grid */
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
    background-size: 40px 40px; 
    z-index: -1; 
}