Changed around line 1
+ :root {
+ --primary: #ff00ff;
+ --secondary: #00ffff;
+ --dark: #1a1a1a;
+ --light: #ffffff;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ background: var(--dark);
+ color: var(--light);
+ font-family: 'Arial', sans-serif;
+ overflow-x: hidden;
+ min-height: 100vh;
+ }
+
+ /* Navigation */
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 2rem;
+ background: rgba(0,0,0,0.8);
+ backdrop-filter: blur(10px);
+ position: fixed;
+ width: 100%;
+ z-index: 1000;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ background: linear-gradient(45deg, var(--primary), var(--secondary));
+ -webkit-background-clip: text;
+ color: transparent;
+ }
+
+ /* Hero Section */
+ .hero {
+ height: 100vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ position: relative;
+ overflow: hidden;
+ }
+
+ .floating-shapes .shape {
+ position: absolute;
+ border-radius: 50%;
+ filter: blur(5px);
+ animation: float 20s infinite linear;
+ }
+
+ .shape1 {
+ width: 300px;
+ height: 300px;
+ background: var(--primary);
+ top: -150px;
+ left: -150px;
+ }
+
+ .shape2 {
+ width: 200px;
+ height: 200px;
+ background: var(--secondary);
+ bottom: -100px;
+ right: -100px;
+ }
+
+ .shape3 {
+ width: 150px;
+ height: 150px;
+ background: linear-gradient(var(--primary), var(--secondary));
+ top: 50%;
+ left: 50%;
+ }
+
+ @keyframes float {
+ 0% { transform: rotate(0deg) translate(0, 0); }
+ 50% { transform: rotate(180deg) translate(100px, 100px); }
+ 100% { transform: rotate(360deg) translate(0, 0); }
+ }
+
+ /* Glitch Effect */
+ .glitch {
+ position: relative;
+ font-size: 4rem;
+ font-weight: bold;
+ text-transform: uppercase;
+ text-shadow: 0.05em 0 0 var(--primary), -0.05em -0.05em 0 var(--secondary);
+ animation: glitch 1s infinite;
+ }
+
+ @keyframes glitch {
+ 0% { transform: none; opacity: 1; }
+ 7% { transform: skew(-0.5deg, -0.9deg); opacity: 0.75; }
+ 10% { transform: none; opacity: 1; }
+ 27% { transform: none; opacity: 1; }
+ 30% { transform: skew(0.8deg, -0.1deg); opacity: 0.75; }
+ 35% { transform: none; opacity: 1; }
+ 52% { transform: none; opacity: 1; }
+ 55% { transform: skew(-1deg, 0.2deg); opacity: 0.75; }
+ 50% { transform: none; opacity: 1; }
+ 100% { transform: none; opacity: 1; }
+ }
+
+ /* Kaleidoscope */
+ .kaleidoscope {
+ height: 100vh;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ perspective: 1000px;
+ }
+
+ .k-container {
+ width: 300px;
+ height: 300px;
+ position: relative;
+ transform-style: preserve-3d;
+ animation: rotate 20s infinite linear;
+ }
+
+ .k-segment {
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ background: linear-gradient(45deg, var(--primary), var(--secondary));
+ clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
+ }
+
+ @keyframes rotate {
+ from { transform: rotateX(0) rotateY(0) rotateZ(0); }
+ to { transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg); }
+ }
+
+ /* Responsive Design */
+ @media (max-width: 768px) {
+ .glitch {
+ font-size: 2rem;
+ }
+
+ .k-container {
+ width: 200px;
+ height: 200px;
+ }
+ }