"use client";

import React from "react";
import { motion } from "framer-motion";
import { cn } from "@/components/lib/utils";

interface RaysBackgroundProps {
  /** Theme variant - 'light' or 'dark' */
  theme?: "light" | "dark";
  /** Enable/disable animation */
  animated?: boolean;
  /** Animation speed multiplier (1 = normal, 2 = double speed, 0.5 = half speed) */
  animationSpeed?: number;
  /** Opacity of the effect (0-1) */
  opacity?: number;
  /** Custom color scheme for rays */
  colors?: {
    purple?: string;
    yellow?: string;
    pink?: string;
    teal?: string;
    blue?: string;
  };
  /** Blur amount for rays in pixels */
  blurAmount?: number;
  /** Children to render on top of the background */
  children?: React.ReactNode;
  /** Additional className for the wrapper */
  className?: string;
}

const RaysBackground: React.FC<RaysBackgroundProps> = ({
  theme = "dark",
  animated = true,
  animationSpeed = 1,
  opacity = 0.7,
  colors = {
    purple: "rgba(169, 73, 207, 1)",
    yellow: "rgba(238, 248, 86, 1)",
    pink: "rgba(248, 72, 202, 1)",
    teal: "rgba(119, 235, 195, 1)",
    blue: "rgba(77, 71, 214, 1)",
  },
  blurAmount = 6,
  children,
  className = "",
}) => {
  const isLightTheme = theme === "light";

  return (
    <div
      className={cn(
        "absolute left-0 top-0 w-full min-h-screen max-h-screen overflow-hidden bg-background",
        className
      )}
    >
      <style suppressHydrationWarning>
        {`
          @keyframes rotate-cw {
            from { transform: rotate(0deg) translate3d(0,0,0); }
            to { transform: rotate(360deg) translate3d(0,0,0); }
          }
          @keyframes rotate-ccw {
            from { transform: rotate(0deg) translate3d(0,0,0); }
            to { transform: rotate(-360deg) translate3d(0,0,0); }
          }
        `}
      </style>

      {/* Color Ray Container */}
      <div
        className="absolute left-0 right-0 w-full h-full mx-auto overflow-hidden pointer-events-none"
        style={{
          maxWidth: "45%",
          top: "-50%",
          transform: "scaleX(3.5) scaleY(3)",
          mixBlendMode: isLightTheme ? "darken" : "normal",
        }}
      >
        {/* Light Rays */}
        <div
          style={{
            position: "absolute",
            top: 0,
            left: 0,
            right: 0,
            bottom: 0,
            background:
              "radial-gradient(rgba(255, 255, 255, .6), rgba(0, 0, 0, .7))",
            overflow: "hidden",
            WebkitMaskImage:
              "radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 1) 1%, rgba(0, 0, 0, .7) 5%, rgba(0, 0, 0, .5) 10%, rgba(0, 0, 0, .3) 22%, rgba(0, 0, 0, .15) 35%, transparent 50%)",
            maskImage:
              "radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 1) 1%, rgba(0, 0, 0, .7) 5%, rgba(0, 0, 0, .5) 10%, rgba(0, 0, 0, .3) 22%, rgba(0, 0, 0, .15) 35%, transparent 50%)",
            WebkitMaskRepeat: "no-repeat",
            maskRepeat: "no-repeat",
            mixBlendMode: "color-burn",
            opacity: 0.6,
          }}
        >
          {/* Light rays pattern 1 */}
          <div
            style={{
              position: "absolute",
              top: "50%",
              left: "50%",
              margin: "-100vmax",
              width: "200vmax",
              height: "200vmax",
              opacity: 0.45,
              willChange: "transform",
              animation: animated
                ? `rotate-cw ${10 / animationSpeed}s linear infinite`
                : "none",
              background: `
                conic-gradient(
                  from 20deg at 50% 50%,
                  rgba(3, 10, 0, 0.1), transparent,
                  rgba(3, 10, 0, 1), transparent,
                  rgba(3, 10, 0, 0.5), transparent,
                  rgba(3, 10, 0, 0.68), transparent,
                  rgba(3, 10, 0, 0.1), transparent,
                  rgba(3, 10, 0, 0.68), transparent,
                  rgba(3, 10, 0, 0.1), transparent,
                  rgba(3, 10, 0, 0.68), transparent,
                  rgba(3, 10, 0, 1), transparent,
                  rgba(3, 10, 0, 0.5), transparent,
                  rgba(3, 10, 0, 0.68), transparent,
                  rgba(3, 10, 0, 0.1), transparent,
                  rgba(3, 10, 0, 1), transparent,
                  rgba(3, 10, 0, 0.1)
                ),
                conic-gradient(
                  from 30deg at 50% 50%,
                  rgba(3, 10, 0, 0.1), transparent,
                  rgba(3, 10, 0, 1), transparent,
                  rgba(3, 10, 0, 0.5), transparent,
                  rgba(3, 10, 0, 0.68), transparent,
                  rgba(3, 10, 0, 0.1), transparent,
                  rgba(3, 10, 0, 0.68), transparent,
                  rgba(3, 10, 0, 0.1), transparent,
                  rgba(3, 10, 0, 0.68), transparent,
                  rgba(3, 10, 0, 1), transparent,
                  rgba(3, 10, 0, 0.5), transparent,
                  rgba(3, 10, 0, 0.68), transparent,
                  rgba(3, 10, 0, 0.1), transparent,
                  rgba(3, 10, 0, 1), transparent,
                  rgba(3, 10, 0, 0.1)
                ),
                conic-gradient(
                  from 40deg at 50% 50%,
                  rgba(3, 10, 0, 0.1), transparent,
                  rgba(3, 10, 0, 1), transparent,
                  rgba(3, 10, 0, 0.5), transparent,
                  rgba(3, 10, 0, 0.68), transparent,
                  rgba(3, 10, 0, 0.1), transparent,
                  rgba(3, 10, 0, 0.68), transparent,
                  rgba(3, 10, 0, 0.1), transparent,
                  rgba(3, 10, 0, 0.68), transparent,
                  rgba(3, 10, 0, 1), transparent,
                  rgba(3, 10, 0, 0.5), transparent,
                  rgba(3, 10, 0, 0.68), transparent,
                  rgba(3, 10, 0, 0.1), transparent,
                  rgba(3, 10, 0, 1), transparent,
                  rgba(3, 10, 0, 0.1)
                )
              `,
              backgroundBlendMode: "exclusion, hard-light, overlay",
              mixBlendMode: "hard-light",
              WebkitMaskImage:
                "radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 1) 1%, rgba(0, 0, 0, .7) 5%, rgba(0, 0, 0, .5) 10%, rgba(0, 0, 0, .3) 22%, rgba(0, 0, 0, .15) 35%, transparent 50%)",
              maskImage:
                "radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 1) 1%, rgba(0, 0, 0, .7) 5%, rgba(0, 0, 0, .5) 10%, rgba(0, 0, 0, .3) 22%, rgba(0, 0, 0, .15) 35%, transparent 50%)",
            }}
          />

          {/* Light rays pattern 2 */}
          <div
            style={{
              position: "absolute",
              top: "50%",
              left: "50%",
              margin: "-100vmax",
              width: "200vmax",
              height: "200vmax",
              opacity: 0.45,
              willChange: "transform",
              animation: animated
                ? `rotate-ccw ${6 / animationSpeed}s linear infinite`
                : "none",
              background: `
                conic-gradient(
                  from 0deg at 50% 50%,
                  rgba(3, 10, 0, 0.5), transparent,
                  rgba(3, 10, 0, 0.5), rgba(3, 10, 0, 0.1), transparent,
                  rgba(3, 10, 0, 1), rgba(3, 10, 0, 0.5), transparent,
                  rgba(3, 10, 0, 0.5), rgba(3, 10, 0, 0.1), transparent,
                  rgba(3, 10, 0, 0.5), transparent,
                  rgba(3, 10, 0, 0.5), rgba(3, 10, 0, 0.1), transparent,
                  rgba(3, 10, 0, 1), rgba(3, 10, 0, 0.5), transparent,
                  rgba(3, 10, 0, 0.5), rgba(3, 10, 0, 0.1), transparent,
                  rgba(3, 10, 0, 0.5)
                ),
                conic-gradient(
                  from 30deg at 50% 50%,
                  rgba(3, 10, 0, 0.1), transparent,
                  rgba(3, 10, 0, 1), transparent,
                  rgba(3, 10, 0, 0.5), transparent,
                  rgba(3, 10, 0, 0.68), transparent,
                  rgba(3, 10, 0, 0.1), transparent,
                  rgba(3, 10, 0, 0.68), transparent,
                  rgba(3, 10, 0, 0.1), transparent,
                  rgba(3, 10, 0, 0.68), transparent,
                  rgba(3, 10, 0, 1), transparent,
                  rgba(3, 10, 0, 0.5), transparent,
                  rgba(3, 10, 0, 0.68), transparent,
                  rgba(3, 10, 0, 0.1), transparent,
                  rgba(3, 10, 0, 1), transparent,
                  rgba(3, 10, 0, 0.1)
                ),
                conic-gradient(
                  from -20deg at 50% 50%,
                  rgba(3, 10, 0, 0.5), transparent,
                  rgba(3, 10, 0, 0.5), rgba(3, 10, 0, 0.1), transparent,
                  rgba(3, 10, 0, 1), rgba(3, 10, 0, 0.5), transparent,
                  rgba(3, 10, 0, 0.5), rgba(3, 10, 0, 0.1), transparent,
                  rgba(3, 10, 0, 0.5), transparent,
                  rgba(3, 10, 0, 0.5), rgba(3, 10, 0, 0.1), transparent,
                  rgba(3, 10, 0, 1), rgba(3, 10, 0, 0.5), transparent,
                  rgba(3, 10, 0, 0.5), rgba(3, 10, 0, 0.1), transparent,
                  rgba(3, 10, 0, 0.5)
                ),
                conic-gradient(
                  from -35deg at 50% 50%,
                  rgba(3, 10, 0, 0.5), transparent,
                  rgba(3, 10, 0, 0.5), rgba(3, 10, 0, 0.1), transparent,
                  rgba(3, 10, 0, 1), rgba(3, 10, 0, 0.5), transparent,
                  rgba(3, 10, 0, 0.5), rgba(3, 10, 0, 0.1), transparent,
                  rgba(3, 10, 0, 0.5), transparent,
                  rgba(3, 10, 0, 0.5), rgba(3, 10, 0, 0.1), transparent,
                  rgba(3, 10, 0, 1), rgba(3, 10, 0, 0.5), transparent,
                  rgba(3, 10, 0, 0.5), rgba(3, 10, 0, 0.1), transparent,
                  rgba(3, 10, 0, 0.5)
                )
              `,
              backgroundBlendMode: "exclusion, exclusion, difference, exclusion",
              mixBlendMode: "color-burn",
              WebkitMaskImage:
                "radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 1) 1%, rgba(0, 0, 0, .7) 5%, rgba(0, 0, 0, .5) 10%, rgba(0, 0, 0, .3) 22%, rgba(0, 0, 0, .15) 35%, transparent 50%)",
              maskImage:
                "radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 1) 1%, rgba(0, 0, 0, .7) 5%, rgba(0, 0, 0, .5) 10%, rgba(0, 0, 0, .3) 22%, rgba(0, 0, 0, .15) 35%, transparent 50%)",
            }}
          />
        </div>

        {/* Color Rays */}
        <div
          style={{
            position: "absolute",
            width: "100%",
            height: "100%",
            top: 0,
            left: 0,
            transition: "all 300ms ease",
            mixBlendMode: isLightTheme ? "hard-light" : "hard-light",
            opacity: opacity,
            filter: `blur(${blurAmount}px)`,
            WebkitMaskImage:
              "radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 1) 6%, rgba(0, 0, 0, .7) 11%, rgba(0, 0, 0, .5) 18%, rgba(0, 0, 0, .3) 26%, rgba(0, 0, 0, .15) 35%, transparent 70%)",
            maskImage:
              "radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 1) 6%, rgba(0, 0, 0, .7) 11%, rgba(0, 0, 0, .5) 18%, rgba(0, 0, 0, .3) 26%, rgba(0, 0, 0, .15) 35%, transparent 70%)",
            WebkitMaskRepeat: "no-repeat",
            maskRepeat: "no-repeat",
          }}
        >
          {/* Color Rays Before */}
          <div
            style={{
              position: "absolute",
              width: "100%",
              height: "100%",
              top: 0,
              left: 0,
              willChange: "transform",
              animation: animated
                ? `rotate-ccw ${8 / animationSpeed}s linear infinite`
                : "none",
              background: `conic-gradient(
                from 90deg at 50% 50%,
                ${colors.purple},
                ${colors.yellow},
                ${colors.pink},
                ${colors.teal},
                ${colors.blue},
                ${colors.purple}
              )`,
              WebkitMaskImage:
                "radial-gradient(circle at 50% 50%, rgba(0, 0, 0, .9) 5%, rgba(0, 0, 0, .7) 13%, rgba(0, 0, 0, .5) 22%, rgba(0, 0, 0, .3) 29%, rgba(0, 0, 0, .15) 37%, transparent 46%)",
              maskImage:
                "radial-gradient(circle at 50% 50%, rgba(0, 0, 0, .9) 5%, rgba(0, 0, 0, .7) 13%, rgba(0, 0, 0, .5) 22%, rgba(0, 0, 0, .3) 29%, rgba(0, 0, 0, .15) 37%, transparent 46%)",
              WebkitMaskRepeat: "no-repeat",
              maskRepeat: "no-repeat",
              filter: `blur(${blurAmount * 1.5}px)`,
              mixBlendMode: isLightTheme ? "overlay" : "color-dodge",
            }}
          />

          {/* Color Rays After */}
          <div
            style={{
              position: "absolute",
              width: "100%",
              height: "100%",
              top: "-1.5%",
              left: 0,
              willChange: "transform",
              animation: animated
                ? `rotate-ccw ${80 / animationSpeed}s linear infinite`
                : "none",
              WebkitMaskImage:
                "radial-gradient(circle at 50% 50%, rgba(0, 0, 0, .9) 9%, rgba(0, 0, 0, .7) 17%, rgba(0, 0, 0, .5) 25%, rgba(0, 0, 0, .3) 33%, rgba(0, 0, 0, .15) 41%, transparent 50%)",
              maskImage:
                "radial-gradient(circle at 50% 50%, rgba(0, 0, 0, .9) 9%, rgba(0, 0, 0, .7) 17%, rgba(0, 0, 0, .5) 25%, rgba(0, 0, 0, .3) 33%, rgba(0, 0, 0, .15) 41%, transparent 50%)",
              WebkitMaskRepeat: "no-repeat",
              maskRepeat: "no-repeat",
              filter: `blur(${blurAmount * 0.5}px)`,
              mixBlendMode: isLightTheme ? "hard-light" : "multiply",
            }}
          />
        </div>
      </div>

      {/* Content */}
      <div className="relative z-10 w-full h-full">{children}</div>
    </div>
  );
};

export default RaysBackground;
