Changed around line 1
+ :root {
+ --primary-dark: #000;
+ --primary-light: #fff;
+ --accent-rainbow: linear-gradient(to right, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #8f00ff);
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Helvetica Neue', Arial, sans-serif;
+ background: var(--primary-dark);
+ color: var(--primary-light);
+ line-height: 1.6;
+ }
+
+ .main-header {
+ position: fixed;
+ width: 100%;
+ padding: 1rem;
+ background: rgba(0, 0, 0, 0.9);
+ backdrop-filter: blur(10px);
+ z-index: 100;
+ }
+
+ nav ul {
+ display: flex;
+ justify-content: center;
+ list-style: none;
+ gap: 2rem;
+ }
+
+ nav a {
+ color: var(--primary-light);
+ text-decoration: none;
+ font-weight: 500;
+ transition: color 0.3s ease;
+ }
+
+ nav a:hover {
+ background: var(--accent-rainbow);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .hero {
+ height: 100vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ position: relative;
+ overflow: hidden;
+ }
+
+ .rainbow-beam {
+ position: absolute;
+ width: 100%;
+ height: 2px;
+ background: var(--accent-rainbow);
+ animation: beam 8s linear infinite;
+ }
+
+ @keyframes beam {
+ 0% { transform: translateX(-100%) rotate(0deg); }
+ 100% { transform: translateX(100%) rotate(360deg); }
+ }
+
+ .track-list {
+ padding: 4rem 2rem;
+ }
+
+ .tracks-container {
+ display: grid;
+ gap: 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .track {
+ background: rgba(255, 255, 255, 0.05);
+ padding: 1.5rem;
+ border-radius: 8px;
+ position: relative;
+ overflow: hidden;
+ transition: transform 0.3s ease;
+ }
+
+ .track:hover {
+ transform: translateY(-5px);
+ background: rgba(255, 255, 255, 0.1);
+ }
+
+ .track-number {
+ position: absolute;
+ right: 1rem;
+ top: 1rem;
+ font-size: 2rem;
+ opacity: 0.3;
+ }
+
+ .waveform {
+ height: 40px;
+ background: linear-gradient(90deg,
+ rgba(255,255,255,0.1) 0%,
+ rgba(255,255,255,0.2) 20%,
+ rgba(255,255,255,0.3) 40%,
+ rgba(255,255,255,0.2) 60%,
+ rgba(255,255,255,0.1) 80%);
+ animation: wave 2s ease-in-out infinite;
+ }
+
+ @keyframes wave {
+ 0%, 100% { transform: scaleY(0.8); }
+ 50% { transform: scaleY(1.2); }
+ }
+
+ .prism-section {
+ height: 100vh;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ perspective: 1000px;
+ }
+
+ .prism-animation {
+ position: relative;
+ transform-style: preserve-3d;
+ animation: rotate 20s linear infinite;
+ }
+
+ @keyframes rotate {
+ from { transform: rotateY(0deg); }
+ to { transform: rotateY(360deg); }
+ }
+
+ @media (max-width: 768px) {
+ nav ul {
+ flex-direction: column;
+ align-items: center;
+ gap: 1rem;
+ }
+
+ .tracks-container {
+ grid-template-columns: 1fr;
+ }
+ }