/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 17 2026 | 17:59:54 */
html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

/* IMPORTANT: overflow ko block mat karo */
body {
  overflow-x: hidden;   /* horizontal safe */
  overflow-y: auto;     /* vertical scroll ON */

  background-image: linear-gradient(
    115deg,
    #024059 0%,
    #434159 16.7%,
    #824159 33.3%,
    #191c2b 50%,
    #383b4c 66.7%,
    #111322 83.3%,
    #024059 100%,
    #434159 calc(100% + 16.7%),
    #824159 calc(100% + 33.3%),
    #191c2b calc(100% + 50%),
    #383b4c calc(100% + 66.7%),
    #111322 calc(100% + 83.3%)
  );

  background-size: 400% 400%;
  animation: continuousFlow 42s linear infinite;
}

@keyframes continuousFlow {
  from { background-position: 0% 50%; }
  to   { background-position: -200% 50%; }
}

/* Canvas sirf background layer */
canvas {
  position: fixed;          /* stays behind while scrolling */
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;              /* 🔑 CONTENT KE PEECHE */
  pointer-events: none;
}
