:root {
 --primary-dark: #0a0a0a;
 --secondary-dark: #1a1a1a;
 --accent-purple: #8b5cf6;
 --accent-pink: #ec4899;
 --accent-blue: #3b82f6;
 --text-light: #ffffff;
 --text-muted: #a0a0a0;
 --border-color: #333333;
 --card-bg: #2a2a2a;
 --success-color: #10b981;
 --error-color: #ef4444;
 --dj-glow: #ff6b6b;

} .hero-section {
 min-height: 100vh;
 position: relative;
 overflow: hidden;
 display: flex;
 align-items: center;
 justify-content: center;
 background: var(--primary-dark);
 padding-top: 120px;
 padding-bottom: 40px;
 animation: heroFadeIn 1s ease-out;

} @keyframes heroFadeIn {
 0% {
 opacity: 0;
 transform: translateY(20px);
 
} 100% {
 opacity: 1;
 transform: translateY(0);
 
}

} .hero-bg {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 z-index: 1;

} .bg-layers {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;

} .bg-layer {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 opacity: 0.1;

} .layer-1 {
 background: radial-gradient(circle at 20% 20%, var(--accent-purple) 0%, transparent 50%);
 animation: bgMove1 20s ease-in-out infinite;

} .layer-2 {
 background: radial-gradient(circle at 80% 80%, var(--accent-pink) 0%, transparent 50%);
 animation: bgMove2 25s ease-in-out infinite reverse;

} .layer-3 {
 background: radial-gradient(circle at 50% 50%, var(--accent-blue) 0%, transparent 70%);
 animation: bgMove3 30s ease-in-out infinite;

} @keyframes bgMove1 {
 0%, 100% {
 transform: translate(0, 0) scale(1);
 
} 33% {
 transform: translate(30px, -30px) scale(1.1);
 
} 66% {
 transform: translate(-20px, 20px) scale(0.9);
 
}

} @keyframes bgMove2 {
 0%, 100% {
 transform: translate(0, 0) scale(1);
 
} 50% {
 transform: translate(-40px, 40px) scale(1.2);
 
}

} @keyframes bgMove3 {
 0%, 100% {
 transform: translate(0, 0) scale(1);
 
} 25% {
 transform: translate(20px, -20px) scale(1.1);
 
} 75% {
 transform: translate(-30px, 30px) scale(0.8);
 
}

} .bg-particles {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background-image: radial-gradient(2px 2px at 20px 30px, var(--accent-purple), transparent), radial-gradient(2px 2px at 40px 70px, var(--accent-pink), transparent), radial-gradient(1px 1px at 90px 40px, var(--accent-blue), transparent), radial-gradient(1px 1px at 130px 80px, var(--dj-glow), transparent);
 background-repeat: repeat;
 background-size: 200px 200px;
 animation: particleMove 20s linear infinite;

} @keyframes particleMove {
 0% {
 transform: translate(0, 0);
 
} 100% {
 transform: translate(-200px, -200px);
 
}

} .hero-container {
 position: relative;
 z-index: 2;
 max-width: 1200px;
 margin: 0 auto;
 padding: 0;
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 4rem;
 align-items: center;
 width: 100%;
 text-align: center;

} .hero-content {
 display: flex;
 flex-direction: column;
 gap: 2rem;
 animation: slideInLeft 1s ease-out;
 text-align: center;
 align-items: center;
 justify-content: center;

} @keyframes slideInLeft {
 from {
 opacity: 0;
 transform: translateX(-50px);
 
} to {
 opacity: 1;
 transform: translateX(0);
 
}

} .hero-badge {
 position: relative;
 display: inline-block;
 width: fit-content;
 margin: 0 auto;

} .badge-glow {
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 width: 120%;
 height: 120%;
 background: linear-gradient(45deg, var(--accent-purple), var(--accent-pink));
 border-radius: 50px;
 filter: blur(10px);
 opacity: 0.6;
 animation: badgeGlow 2s ease-in-out infinite alternate;

} @keyframes badgeGlow {
 0% {
 opacity: 0.4;
 transform: translate(-50%, -50%) scale(1);
 
} 100% {
 opacity: 0.8;
 transform: translate(-50%, -50%) scale(1.1);
 
}

} .badge-content {
 position: relative;
 z-index: 2;
 display: inline-flex;
 align-items: center;
 gap: 0.75rem;
 background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
 color: white;
 padding: 0.75rem 1.5rem;
 border-radius: 50px;
 font-size: 0.9rem;
 font-weight: 600;
 text-transform: uppercase;
 letter-spacing: 1px;
 animation: badgeFloat 3s ease-in-out infinite;

} @keyframes badgeFloat {
 0%, 100% {
 transform: translateY(0);
 
} 50% {
 transform: translateY(-5px);
 
}

} .hero-title {
 font-size: clamp(2rem, 6vw, 4rem);
 font-weight: 900;
 line-height: 1.1;
 margin: 0;
 text-transform: uppercase;
 letter-spacing: -0.02em;
 text-align: center;

} .title-line {
 display: block;
 margin-bottom: 0.5rem;

} .title-line.line-1 {
 animation: titleSlideIn1 1s ease-out 0.2s both;

} .title-line.line-2 {
 animation: titleSlideIn2 1s ease-out 0.4s both;

} @keyframes titleSlideIn1 {
 from {
 opacity: 0;
 transform: translateX(-100px);
 
} to {
 opacity: 1;
 transform: translateX(0);
 
}

} @keyframes titleSlideIn2 {
 from {
 opacity: 0;
 transform: translateX(100px);
 
} to {
 opacity: 1;
 transform: translateX(0);
 
}

} .word {
 display: inline-block;
 margin-right: 1rem;

} .word.highlight {
 background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
 position: relative;

} .word.highlight::after {
 content: '';
 position: absolute;
 bottom: -5px;
 left: 0;
 width: 100%;
 height: 4px;
 background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
 border-radius: 2px;
 animation: highlightPulse 2s ease-in-out infinite;

} @keyframes highlightPulse {
 0%, 100% {
 opacity: 0.7;
 transform: scaleX(1);
 
} 50% {
 opacity: 1;
 transform: scaleX(1.05);
 
}

} .word.accent {
 color: var(--dj-glow);
 text-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
 animation: accentGlow 2s ease-in-out infinite alternate;

} @keyframes accentGlow {
 0% {
 text-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
 
} 100% {
 text-shadow: 0 0 30px rgba(255, 107, 107, 0.8);
 
}

} .hero-subtitle {
 font-size: clamp(1.1rem, 2.5vw, 1.4rem);
 color: var(--text-muted);
 line-height: 1.6;
 max-width: 500px;
 animation: fadeInUp 1s ease-out 0.6s both;

} .subtitle-text {
 display: block;
 margin-bottom: 0.5rem;

} .subtitle-highlight {
 color: var(--accent-purple);
 font-weight: 600;
 text-shadow: 0 0 10px rgba(139, 92, 246, 0.3);

} @keyframes fadeInUp {
 from {
 opacity: 0;
 transform: translateY(30px);
 
} to {
 opacity: 1;
 transform: translateY(0);
 
}

} .hero-actions {
 display: flex;
 gap: 1.5rem;
 flex-wrap: wrap;
 animation: fadeInUp 1s ease-out 0.8s both;

} .btn-primary, .btn-secondary {
 position: relative;
 display: inline-flex;
 align-items: center;
 gap: 0.75rem;
 padding: 1.25rem 2.5rem;
 border-radius: 50px;
 text-decoration: none;
 font-weight: 600;
 font-size: 1.1rem;
 text-transform: uppercase;
 letter-spacing: 0.5px;
 transition: all 0.3s ease;
 cursor: pointer;
 border: none;
 overflow: hidden;

} .btn-primary {
 background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
 color: white;

} .btn-primary:hover {
 transform: translateY(-3px);
 box-shadow: 0 15px 25px -5px rgba(139, 92, 246, 0.4);

} .btn-secondary {
 background: transparent;
 color: var(--text-light);
 border: 2px solid var(--accent-purple);

} .btn-secondary:hover {
 background: var(--accent-purple);
 transform: translateY(-3px);
 box-shadow: 0 15px 25px -5px rgba(139, 92, 246, 0.3);

} .btn-glow {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
 transform: translateX(-100%);
 transition: transform 0.6s ease;

} .btn-primary:hover .btn-glow {
 transform: translateX(100%);

} .hero-stats {
 display: flex;
 gap: 2rem;
 flex-wrap: wrap;
 animation: fadeInUp 1s ease-out 1s both;

} .stat-item {
 text-align: center;

} .stat-number {
 font-size: 2.5rem;
 font-weight: 800;
 color: var(--text-light);
 background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
 animation: statPulse 2s ease-in-out infinite;

} @keyframes statPulse {
 0%, 100% {
 transform: scale(1);
 
} 50% {
 transform: scale(1.05);
 
}

} .stat-label {
 font-size: 0.9rem;
 color: var(--text-muted);
 text-transform: uppercase;
 letter-spacing: 0.5px;
 margin-top: 0.25rem;

} .hero-visual {
 position: relative;
 display: flex;
 justify-content: center;
 align-items: center;
 animation: slideInRight 1s ease-out 0.5s both;
 width: 100%;
 height: 500px;
 perspective: 1000px;

} @keyframes slideInRight {
 from {
 opacity: 0;
 transform: translateX(50px);
 
} to {
 opacity: 1;
 transform: translateX(0);
 
}

} .dj-console {
 position: relative;
 width: 100%;
 max-width: 500px;
 height: 200px;
 margin: 0 auto;
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 2rem;
 animation: consoleFloat 6s ease-in-out infinite;

} .turntable {
 position: relative;
 width: 120px;
 height: 120px;
 background: linear-gradient(135deg, #2d3748, #1a202c);
 border-radius: 50%;
 border: 3px solid #8b5cf6;
 display: flex;
 align-items: center;
 justify-content: center;
 animation: turntableFloat 4s ease-in-out infinite;
 box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);

} .turntable-left {
 animation-delay: 0s;
 
}
.turntable-right {
 animation-delay: 2s;
 
} .vinyl {
 width: 80px;
 height: 80px;
 background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
 border-radius: 50%;
 position: relative;
 animation: vinylSpin 3s linear infinite;
 box-shadow: 0 0 20px rgba(139, 92, 246, 0.3), inset 0 0 20px rgba(0, 0, 0, 0.5);

} .vinyl-grooves {
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 width: 60px;
 height: 60px;
 border: 1px solid #4a5568;
 border-radius: 50%;

} .vinyl-grooves::before,
.vinyl-grooves::after {
 content: '';
 position: absolute;
 border: 1px solid #4a5568;
 border-radius: 50%;

} .vinyl-grooves::before {
 width: 40px;
 height: 40px;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);

} .vinyl-grooves::after {
 width: 20px;
 height: 20px;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);

} .vinyl-center {
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 width: 8px;
 height: 8px;
 background: #8b5cf6;
 border-radius: 50%;
 box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);

} .vinyl-label {
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 width: 20px;
 height: 20px;
 background: linear-gradient(135deg, #8b5cf6, #ec4899);
 border-radius: 50%;
 animation: labelPulse 2s ease-in-out infinite;

} .tonearm {
 position: absolute;
 top: 20px;
 right: 20px;
 width: 40px;
 height: 3px;
 background: linear-gradient(90deg, #8b5cf6, #ec4899);
 border-radius: 2px;
 transform-origin: left center;
 animation: tonearmMove 4s ease-in-out infinite;

} .mixer {
 background: linear-gradient(135deg, #2d3748, #1a202c);
 border: 2px solid #8b5cf6;
 border-radius: 15px;
 padding: 1rem;
 min-width: 200px;
 height: 120px;
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 animation: mixerFloat 4s ease-in-out infinite;
 animation-delay: 1s;
 box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);

} .mixer-top {
 display: flex;
 justify-content: center;
 margin-bottom: 0.5rem;

} .crossfader {
 width: 80px;
 height: 8px;
 background: linear-gradient(90deg, #8b5cf6, #ec4899);
 border-radius: 4px;
 position: relative;
 animation: crossfaderMove 3s ease-in-out infinite;

} .crossfader::after {
 content: '';
 position: absolute;
 top: 50%;
 left: 30%;
 transform: translate(-50%, -50%);
 width: 12px;
 height: 12px;
 background: #ffffff;
 border-radius: 50%;
 box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);

} .mixer-channels {
 display: flex;
 justify-content: space-between;
 gap: 1rem;

} .channel {
 display: flex;
 flex-direction: column;
 gap: 0.5rem;
 align-items: center;

} .eq-knobs {
 display: flex;
 gap: 0.25rem;

} .knob {
 width: 20px;
 height: 20px;
 background: linear-gradient(135deg, #8b5cf6, #ec4899);
 border-radius: 50%;
 position: relative;
 animation: knobRotate 3s linear infinite;
 cursor: pointer;
 transition: all 0.3s ease;

} .knob:hover {
 transform: scale(1.1);
 box-shadow: 0 0 15px rgba(139, 92, 246, 0.6);

} .knob::after {
 content: '';
 position: absolute;
 top: 2px;
 left: 50%;
 transform: translateX(-50%);
 width: 2px;
 height: 6px;
 background: #ffffff;
 border-radius: 1px;

} .volume-fader {
 width: 6px;
 height: 40px;
 background: linear-gradient(to top, #8b5cf6, #ec4899);
 border-radius: 3px;
 position: relative;
 animation: faderMove 2s ease-in-out infinite;
 cursor: pointer;
 transition: all 0.3s ease;

} .volume-fader:hover {
 box-shadow: 0 0 15px rgba(139, 92, 246, 0.6);

} .volume-fader::after {
 content: '';
 position: absolute;
 top: 60%;
 left: 50%;
 transform: translate(-50%, -50%);
 width: 10px;
 height: 4px;
 background: #ffffff;
 border-radius: 2px;

} .audio-visualizer {
 position: absolute;
 bottom: 20px;
 left: 50%;
 transform: translateX(-50%);
 z-index: 3;

} .viz-bars {
 display: flex;
 align-items: end;
 gap: 3px;
 height: 60px;

} .bar {
 width: 4px;
 background: linear-gradient(to top, #8b5cf6, #ec4899);
 border-radius: 2px;
 animation: barDance 1.5s ease-in-out infinite;

} .bar:nth-child(1) {
 height: 20px;
 animation-delay: 0s;
 
}
.bar:nth-child(2) {
 height: 35px;
 animation-delay: 0.1s;
 
}
.bar:nth-child(3) {
 height: 15px;
 animation-delay: 0.2s;
 
}
.bar:nth-child(4) {
 height: 45px;
 animation-delay: 0.3s;
 
}
.bar:nth-child(5) {
 height: 25px;
 animation-delay: 0.4s;
 
}
.bar:nth-child(6) {
 height: 40px;
 animation-delay: 0.5s;
 
}
.bar:nth-child(7) {
 height: 30px;
 animation-delay: 0.6s;
 
}
.bar:nth-child(8) {
 height: 50px;
 animation-delay: 0.7s;
 
} .music-notes {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 pointer-events: none;
 z-index: 2;

} .note {
 position: absolute;
 font-size: 2rem;
 color: #8b5cf6;
 opacity: 0.8;
 animation: noteFloat 4s ease-in-out infinite;
 text-shadow: 0 0 20px rgba(139, 92, 246, 0.6);

} .note-1 {
 top: 15%;
 left: 10%;
 animation-delay: 0s;
 
}
.note-2 {
 top: 25%;
 right: 15%;
 animation-delay: 1s;
 
}
.note-3 {
 top: 60%;
 left: 5%;
 animation-delay: 2s;
 
}
.note-4 {
 top: 70%;
 right: 10%;
 animation-delay: 3s;
 
} .turntable {
 position: relative;
 width: 120px;
 height: 120px;
 animation: turntableFloat 6s ease-in-out infinite;

} .turntable-left {
 animation-delay: 0s;

} .turntable-right {
 animation-delay: 2s;

} @keyframes turntableFloat {
 0%, 100% {
 transform: rotateY(0deg) rotateX(5deg);
 
} 50% {
 transform: rotateY(5deg) rotateX(0deg);
 
}

} .vinyl {
 position: relative;
 width: 100%;
 height: 100%;
 background: radial-gradient(circle, #333 0%, #111 100%);
 border-radius: 50%;
 animation: vinylSpin 3s linear infinite;
 box-shadow: 0 0 20px rgba(139, 92, 246, 0.3), inset 0 0 20px rgba(0, 0, 0, 0.5);

} @keyframes vinylSpin {
 from {
 transform: rotate(0deg);
 
} to {
 transform: rotate(360deg);
 
}

} .vinyl-grooves {
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 width: 80%;
 height: 80%;
 border: 1px solid rgba(255, 255, 255, 0.1);
 border-radius: 50%;

} .vinyl-grooves::before,
.vinyl-grooves::after {
 content: '';
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 border: 1px solid rgba(255, 255, 255, 0.1);
 border-radius: 50%;

} .vinyl-grooves::before {
 width: 60%;
 height: 60%;

} .vinyl-grooves::after {
 width: 40%;
 height: 40%;

} .vinyl-center {
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 width: 20px;
 height: 20px;
 background: #000;
 border-radius: 50%;
 box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.2);

} .vinyl-label {
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 width: 30px;
 height: 30px;
 background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
 border-radius: 50%;
 animation: labelPulse 2s ease-in-out infinite;

} @keyframes labelPulse {
 0%, 100% {
 transform: translate(-50%, -50%) scale(1);
 
} 50% {
 transform: translate(-50%, -50%) scale(1.1);
 
}

} .tonearm {
 position: absolute;
 top: 20px;
 right: 20px;
 width: 60px;
 height: 4px;
 background: #444;
 border-radius: 2px;
 transform-origin: left center;
 animation: tonearmMove 4s ease-in-out infinite;

} @keyframes tonearmMove {
 0%, 100% {
 transform: rotate(0deg);
 
} 50% {
 transform: rotate(15deg);
 
}

} .deck-controls {
 position: absolute;
 bottom: -40px;
 left: 50%;
 transform: translateX(-50%);
 display: flex;
 gap: 0.5rem;

} .control-btn {
 width: 30px;
 height: 30px;
 border-radius: 50%;
 background: #333;
 border: 2px solid #555;
 cursor: pointer;
 transition: all 0.3s ease;
 position: relative;

} .control-btn.active {
 background: var(--accent-purple);
 border-color: var(--accent-pink);
 box-shadow: 0 0 15px rgba(139, 92, 246, 0.6);

} .play-btn::before {
 content: '';
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-40%, -50%);
 width: 0;
 height: 0;
 border-left: 8px solid white;
 border-top: 5px solid transparent;
 border-bottom: 5px solid transparent;

} .cue-btn::before {
 content: '';
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 width: 6px;
 height: 6px;
 background: white;
 border-radius: 50%;

} .mixer {
 position: relative;
 width: 200px;
 height: 200px;
 background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
 border-radius: 20px;
 box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 2px 4px rgba(0, 0, 0, 0.3);
 padding: 1rem;
 display: flex;
 flex-direction: column;
 gap: 1rem;

} .mixer-top {
 display: flex;
 justify-content: space-between;
 align-items: center;
 gap: 1rem;

} .channel {
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 0.5rem;

} .eq-knobs {
 display: flex;
 gap: 0.25rem;

} .knob {
 width: 20px;
 height: 20px;
 border-radius: 50%;
 background: #333;
 border: 2px solid #555;
 cursor: pointer;
 transition: all 0.3s ease;
 position: relative;

} .knob:hover {
 background: var(--accent-purple);
 border-color: var(--accent-pink);
 box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);

} .knob::before {
 content: '';
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 width: 4px;
 height: 4px;
 background: white;
 border-radius: 50%;

} .volume-fader {
 width: 8px;
 height: 60px;
 background: #333;
 border-radius: 4px;
 position: relative;
 cursor: pointer;

} .volume-fader::before {
 content: '';
 position: absolute;
 top: 30%;
 left: 50%;
 transform: translateX(-50%);
 width: 16px;
 height: 4px;
 background: var(--accent-purple);
 border-radius: 2px;
 box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);

} .crossfader-section {
 display: flex;
 justify-content: center;

} .crossfader {
 width: 100px;
 height: 8px;
 background: #333;
 border-radius: 4px;
 position: relative;

} .crossfader::before {
 content: '';
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 width: 20px;
 height: 20px;
 background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
 border-radius: 50%;
 box-shadow: 0 0 15px rgba(139, 92, 246, 0.6);
 animation: crossfaderMove 3s ease-in-out infinite;

} @keyframes crossfaderMove {
 0%, 100% {
 left: 50%;
 
} 25% {
 left: 25%;
 
} 75% {
 left: 75%;
 
}

} .mixer-bottom {
 display: flex;
 justify-content: center;
 gap: 0.5rem;

} .effects-section {
 display: flex;
 gap: 0.5rem;

} .effect-btn {
 width: 20px;
 height: 20px;
 background: #333;
 border-radius: 4px;
 cursor: pointer;
 transition: all 0.3s ease;

} .effect-btn:hover {
 background: var(--accent-purple);
 box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);

} .audio-visualizer {
 position: absolute;
 bottom: 20px;
 left: 50%;
 transform: translateX(-50%);
 z-index: 2;

} .viz-bars {
 display: flex;
 gap: 2px;
 align-items: end;
 height: 60px;

} .bar {
 width: 4px;
 background: linear-gradient(to top, var(--accent-purple), var(--accent-pink));
 border-radius: 2px;
 animation: barPulse 0.5s ease-in-out infinite;
 animation-delay: var(--delay);

} @keyframes barPulse {
 0%, 100% {
 height: 20%;
 opacity: 0.6;
 
} 50% {
 height: 100%;
 opacity: 1;
 
}

} .floating-elements {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 pointer-events: none;
 z-index: 1;

} .music-note {
 position: absolute;
 font-size: 2rem;
 color: var(--accent-purple);
 animation: noteFloat 4s ease-in-out infinite;
 opacity: 0.6;

} .note-1 {
 top: 10%;
 left: 10%;
 animation-delay: 0s;
 
}
.note-2 {
 top: 20%;
 right: 15%;
 animation-delay: 1s;
 
}
.note-3 {
 bottom: 30%;
 left: 5%;
 animation-delay: 2s;
 
}
.note-4 {
 bottom: 20%;
 right: 10%;
 animation-delay: 3s;
 
}
.note-5 {
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 animation-delay: 1.5s;
 
}
.note-6 {
 top: 30%;
 left: 70%;
 animation-delay: 2.5s;
 
} @keyframes noteFloat {
 0%, 100% {
 transform: translateY(0px) rotate(0deg);
 opacity: 0.6;
 
} 50% {
 transform: translateY(-20px) rotate(10deg);
 opacity: 1;
 
}

} .glow-effects {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 pointer-events: none;
 z-index: 0;

} .glow {
 position: absolute;
 border-radius: 50%;
 background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
 animation: glowFloat 8s ease-in-out infinite;

} .glow-1 {
 width: 200px;
 height: 200px;
 top: 20%;
 left: 20%;
 animation-delay: 0s;

} .glow-2 {
 width: 150px;
 height: 150px;
 top: 60%;
 right: 20%;
 animation-delay: 2s;

} .glow-3 {
 width: 100px;
 height: 100px;
 bottom: 30%;
 left: 50%;
 animation-delay: 4s;

} @keyframes glowFloat {
 0%, 100% {
 transform: translateY(0px) scale(1);
 opacity: 0.3;
 
} 50% {
 transform: translateY(-30px) scale(1.1);
 opacity: 0.6;
 
}

} @media (max-width: 1200px) {
 .hero-container {
 grid-template-columns: 1fr;
 gap: 2rem;
 text-align: center;
 
} .hero-visual {
 order: -1;
 
}

} @media (max-width: 1024px) {
 .hero-section {
 padding-top: 140px;
 padding-bottom: 40px;
 
} .hero-container {
 grid-template-columns: 1fr;
 gap: 2rem;
 text-align: center;
 
} .hero-visual {
 order: -1;
 height: 400px;
 
} .dj-console {
 max-width: 450px;
 height: 180px;
 
} .turntable {
 width: 110px;
 height: 110px;
 
} .vinyl {
 width: 75px;
 height: 75px;
 
} .mixer {
 min-width: 190px;
 height: 110px;
 
}

} @media (max-width: 768px) {
 .hero-section {
 padding-top: 120px;
 padding-bottom: 40px;
 min-height: 100vh;
 
} .hero-container {
 display: flex;
 flex-direction: column;
 gap: 2rem;
 padding: 0 1rem;
 text-align: center;
 
} .hero-visual {
 order: 1;
 height: auto;
 margin-bottom: 1rem;
 
} .audio-visualizer {
 position: static;
 transform: none;
 margin: 0 auto 2rem;
 width: 250px;
 
} .viz-bars {
 height: 80px;
 
} .bar {
 width: 5px;
 
} .dj-console {
 order: 2;
 max-width: 350px;
 height: 160px;
 gap: 1rem;
 margin: 0 auto;
 
} .turntable {
 width: 90px;
 height: 90px;
 
} .vinyl {
 width: 65px;
 height: 65px;
 
} .mixer {
 min-width: 160px;
 height: 90px;
 padding: 0.7rem;
 
} .knob {
 width: 16px;
 height: 16px;
 
} .volume-fader {
 width: 4px;
 height: 30px;
 
} .crossfader {
 width: 70px;
 height: 6px;
 
} .music-notes {
 display: none;
 
} .hero-content {
 order: 3;
 gap: 1.5rem;
 
} .hero-actions {
 order: 4;
 justify-content: center;
 margin-top: 1rem;
 
} .hero-stats {
 order: 5;
 justify-content: center;
 margin-top: 1rem;
 
}

} @media (max-width: 600px) {
 .hero-section {
 padding-top: 100px;
 
} .hero-container {
 gap: 1.5rem;
 
} .audio-visualizer {
 width: 200px;
 
} .viz-bars {
 height: 60px;
 
} .bar {
 width: 4px;
 
} .dj-console {
 max-width: 300px;
 height: 140px;
 gap: 0.8rem;
 
} .turntable {
 width: 80px;
 height: 80px;
 
} .vinyl {
 width: 55px;
 height: 55px;
 
} .mixer {
 min-width: 140px;
 height: 80px;
 padding: 0.6rem;
 
} .knob {
 width: 14px;
 height: 14px;
 
} .volume-fader {
 width: 3px;
 height: 25px;
 
} .crossfader {
 width: 60px;
 height: 5px;
 
}

} @media (max-width: 480px) {
 .hero-section {
 padding-top: 80px;
 padding-bottom: 40px;
 
} .hero-container {
 gap: 1rem;
 
} .hero-title {
 font-size: 1.8rem;
 
} .hero-subtitle {
 font-size: 1rem;
 
} .hero-actions {
 flex-direction: column;
 align-items: center;
 gap: 1rem;
 
} .btn-primary, .btn-secondary {
 width: 100%;
 max-width: 280px;
 justify-content: center;
 padding: 1rem 2rem;
 font-size: 1rem;
 
} .hero-stats {
 flex-direction: column;
 gap: 0.8rem;
 
} .audio-visualizer {
 width: 180px;
 
} .viz-bars {
 height: 50px;
 
} .bar {
 width: 3px;
 
} .dj-console {
 max-width: 280px;
 height: 120px;
 gap: 0.6rem;
 
} .turntable {
 width: 70px;
 height: 70px;
 
} .vinyl {
 width: 50px;
 height: 50px;
 
} .mixer {
 min-width: 120px;
 height: 70px;
 padding: 0.5rem;
 
} .knob {
 width: 12px;
 height: 12px;
 
} .volume-fader {
 width: 3px;
 height: 20px;
 
} .crossfader {
 width: 50px;
 height: 4px;
 
}

} .dj-console {
 position: relative;
 width: 100%;
 max-width: 600px;
 height: 300px;
 margin: 0 auto;
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 2rem;
 z-index: 2;

} .shape {
 position: absolute;
 border-radius: 50%;
 background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
 animation: floatShape 20s ease-in-out infinite;

} .shape-1 {
 width: 200px;
 height: 200px;
 top: 10%;
 left: 10%;
 animation-delay: 0s;

} .shape-2 {
 width: 150px;
 height: 150px;
 top: 60%;
 right: 15%;
 animation-delay: 5s;

} .shape-3 {
 width: 100px;
 height: 100px;
 bottom: 20%;
 left: 20%;
 animation-delay: 10s;

} .shape-4 {
 width: 80px;
 height: 80px;
 top: 30%;
 right: 30%;
 animation-delay: 15s;

} .shape-5 {
 width: 120px;
 height: 120px;
 bottom: 40%;
 right: 10%;
 animation-delay: 7s;

} @keyframes floatShape {
 0%, 100% {
 transform: translateY(0px) rotate(0deg);
 opacity: 0.3;
 
} 25% {
 transform: translateY(-30px) rotate(90deg);
 opacity: 0.6;
 
} 50% {
 transform: translateY(-60px) rotate(180deg);
 opacity: 0.4;
 
} 75% {
 transform: translateY(-30px) rotate(270deg);
 opacity: 0.7;
 
}

} .floating-cards {
 position: relative;
 z-index: 2;
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 2rem;
 max-width: 800px;
 width: 100%;

} .floating-card {
 background: rgba(255, 255, 255, 0.05);
 backdrop-filter: blur(20px);
 border: 1px solid rgba(255, 255, 255, 0.1);
 border-radius: 20px;
 padding: 2rem;
 text-align: center;
 transition: all 0.3s ease;
 position: relative;
 overflow: hidden;
 animation: floatCard 6s ease-in-out infinite;

} .floating-card::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 height: 3px;
 background: linear-gradient(90deg, #8b5cf6, #ec4899);

} .card-1 {
 animation-delay: 0s;
 
}
.card-2 {
 animation-delay: 2s;
 
}
.card-3 {
 animation-delay: 4s;
 
} @keyframes floatCard {
 0%, 100% {
 transform: translateY(0px);
 
} 50% {
 transform: translateY(-10px);
 
}

} .floating-card:hover {
 transform: translateY(-15px) scale(1.05);
 box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
 background: rgba(255, 255, 255, 0.1);

} .card-icon {
 width: 60px;
 height: 60px;
 background: linear-gradient(135deg, #8b5cf6, #ec4899);
 border-radius: 15px;
 display: flex;
 align-items: center;
 justify-content: center;
 margin: 0 auto 1rem;
 font-size: 1.5rem;
 color: white;
 transition: all 0.3s ease;

} .floating-card:hover .card-icon {
 transform: scale(1.1) rotate(5deg);

} .floating-card h4 {
 font-size: 1.2rem;
 font-weight: 700;
 margin-bottom: 0.5rem;
 color: #ffffff;

} .floating-card p {
 font-size: 0.9rem;
 color: #a0a0a0;
 margin: 0;

} .gradient-orbs {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 pointer-events: none;
 z-index: 1;

} .orb {
 position: absolute;
 border-radius: 50%;
 background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
 animation: orbFloat 15s ease-in-out infinite;
 filter: blur(1px);

} .orb-1 {
 width: 300px;
 height: 300px;
 top: -150px;
 right: -150px;
 animation-delay: 0s;

} .orb-2 {
 width: 200px;
 height: 200px;
 bottom: -100px;
 left: -100px;
 animation-delay: 5s;

} .orb-3 {
 width: 150px;
 height: 150px;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 animation-delay: 10s;

} @keyframes orbFloat {
 0%, 100% {
 transform: translate(0, 0) scale(1);
 opacity: 0.3;
 
} 33% {
 transform: translate(20px, -20px) scale(1.1);
 opacity: 0.5;
 
} 66% {
 transform: translate(-20px, 20px) scale(0.9);
 opacity: 0.4;
 
}

} .particle-system {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 pointer-events: none;
 z-index: 1;

} .particle {
 position: absolute;
 width: 4px;
 height: 4px;
 background: linear-gradient(135deg, #8b5cf6, #ec4899);
 border-radius: 50%;
 animation: particleFloat 8s linear infinite;

} .particle:nth-child(1) {
 left: 10%;
 animation-delay: 0s;
 
}
.particle:nth-child(2) {
 left: 20%;
 animation-delay: 1s;
 
}
.particle:nth-child(3) {
 left: 30%;
 animation-delay: 2s;
 
}
.particle:nth-child(4) {
 left: 40%;
 animation-delay: 3s;
 
}
.particle:nth-child(5) {
 left: 50%;
 animation-delay: 4s;
 
}
.particle:nth-child(6) {
 left: 60%;
 animation-delay: 5s;
 
}
.particle:nth-child(7) {
 left: 70%;
 animation-delay: 6s;
 
}
.particle:nth-child(8) {
 left: 80%;
 animation-delay: 7s;
 
} @keyframes particleFloat {
 0% {
 transform: translateY(100vh) scale(0);
 opacity: 0;
 
} 10% {
 opacity: 1;
 
} 90% {
 opacity: 1;
 
} 100% {
 transform: translateY(-100px) scale(1);
 opacity: 0;
 
}

} @media (max-width: 768px) {
 .floating-cards {
 grid-template-columns: 1fr;
 gap: 1.5rem;
 padding: 0 1rem;
 
} .floating-card {
 padding: 1.5rem;
 
} .shape {
 display: none;
 
} .orb {
 display: none;
 
}

} @media (max-width: 480px) {
 .floating-cards {
 gap: 1rem;
 
} .floating-card {
 padding: 1rem;
 
} .card-icon {
 width: 50px;
 height: 50px;
 font-size: 1.2rem;
 
} .floating-card h4 {
 font-size: 1rem;
 
} .floating-card p {
 font-size: 0.8rem;
 
}

} .turntable {
 position: relative;
 width: 120px;
 height: 120px;
 background: linear-gradient(135deg, #2d3748, #1a202c);
 border-radius: 50%;
 border: 3px solid #8b5cf6;
 display: flex;
 align-items: center;
 justify-content: center;
 animation: consoleFloat 3s ease-in-out infinite;

} .turntable-left {
 animation-delay: 0s;
 
}
.turntable-right {
 animation-delay: 1.5s;
 
} .vinyl-disc {
 width: 80px;
 height: 80px;
 background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
 border-radius: 50%;
 position: relative;
 animation: vinylSpin 4s linear infinite;

} .vinyl-grooves {
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 width: 60px;
 height: 60px;
 border: 1px solid #4a5568;
 border-radius: 50%;

} .vinyl-grooves::before,
.vinyl-grooves::after {
 content: '';
 position: absolute;
 border: 1px solid #4a5568;
 border-radius: 50%;

} .vinyl-grooves::before {
 width: 40px;
 height: 40px;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);

} .vinyl-grooves::after {
 width: 20px;
 height: 20px;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);

} .vinyl-center {
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 width: 8px;
 height: 8px;
 background: #8b5cf6;
 border-radius: 50%;
 box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);

} .tonearm {
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 animation: tonearmMove 6s ease-in-out infinite;

} .arm-base {
 width: 4px;
 height: 4px;
 background: #8b5cf6;
 border-radius: 50%;
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);

} .arm-shaft {
 width: 30px;
 height: 2px;
 background: linear-gradient(90deg, #8b5cf6, #ec4899);
 position: absolute;
 top: 50%;
 left: 50%;
 transform-origin: left center;
 transform: translate(-50%, -50%) rotate(-30deg);

} .cartridge {
 width: 6px;
 height: 4px;
 background: #ec4899;
 border-radius: 2px;
 position: absolute;
 top: 50%;
 right: 0;
 transform: translateY(-50%);

} .mixer {
 background: linear-gradient(135deg, #2d3748, #1a202c);
 border: 2px solid #8b5cf6;
 border-radius: 15px;
 padding: 1rem;
 min-width: 200px;
 height: 120px;
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 animation: consoleFloat 3s ease-in-out infinite;
 animation-delay: 0.75s;

} .crossfader-section {
 display: flex;
 justify-content: center;
 margin-bottom: 0.5rem;

} .crossfader {
 width: 80px;
 height: 8px;
 background: linear-gradient(90deg, #8b5cf6, #ec4899);
 border-radius: 4px;
 position: relative;
 animation: crossfaderMove 4s ease-in-out infinite;

} .crossfader::after {
 content: '';
 position: absolute;
 top: 50%;
 left: 30%;
 transform: translate(-50%, -50%);
 width: 12px;
 height: 12px;
 background: #ffffff;
 border-radius: 50%;
 box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);

} .channel-controls {
 display: flex;
 justify-content: space-between;
 gap: 1rem;

} .channel {
 display: flex;
 flex-direction: column;
 gap: 0.5rem;

} .eq-knob {
 width: 20px;
 height: 20px;
 background: linear-gradient(135deg, #8b5cf6, #ec4899);
 border-radius: 50%;
 position: relative;
 animation: knobRotate 3s linear infinite;

} .eq-knob::after {
 content: '';
 position: absolute;
 top: 2px;
 left: 50%;
 transform: translateX(-50%);
 width: 2px;
 height: 6px;
 background: #ffffff;
 border-radius: 1px;

} .volume-fader {
 width: 6px;
 height: 40px;
 background: linear-gradient(to top, #8b5cf6, #ec4899);
 border-radius: 3px;
 position: relative;
 animation: faderMove 2s ease-in-out infinite;

} .volume-fader::after {
 content: '';
 position: absolute;
 top: 60%;
 left: 50%;
 transform: translate(-50%, -50%);
 width: 10px;
 height: 4px;
 background: #ffffff;
 border-radius: 2px;

} .master-section {
 display: flex;
 justify-content: space-between;
 gap: 0.5rem;

} .master-volume,
.headphone-volume {
 width: 15px;
 height: 15px;
 background: linear-gradient(135deg, #8b5cf6, #ec4899);
 border-radius: 50%;
 animation: volumePulse 2s ease-in-out infinite;

} .audio-visualizer {
 position: absolute;
 bottom: 20px;
 left: 50%;
 transform: translateX(-50%);
 display: flex;
 align-items: end;
 gap: 3px;
 z-index: 3;

} .frequency-bar {
 width: 4px;
 background: linear-gradient(to top, #8b5cf6, #ec4899);
 border-radius: 2px;
 animation: frequencyDance 1.5s ease-in-out infinite;

} .frequency-bar:nth-child(1) {
 height: 20px;
 animation-delay: 0s;
 
}
.frequency-bar:nth-child(2) {
 height: 35px;
 animation-delay: 0.1s;
 
}
.frequency-bar:nth-child(3) {
 height: 15px;
 animation-delay: 0.2s;
 
}
.frequency-bar:nth-child(4) {
 height: 45px;
 animation-delay: 0.3s;
 
}
.frequency-bar:nth-child(5) {
 height: 25px;
 animation-delay: 0.4s;
 
}
.frequency-bar:nth-child(6) {
 height: 40px;
 animation-delay: 0.5s;
 
}
.frequency-bar:nth-child(7) {
 height: 30px;
 animation-delay: 0.6s;
 
}
.frequency-bar:nth-child(8) {
 height: 50px;
 animation-delay: 0.7s;
 
}
.frequency-bar:nth-child(9) {
 height: 20px;
 animation-delay: 0.8s;
 
}
.frequency-bar:nth-child(10) {
 height: 35px;
 animation-delay: 0.9s;
 
} .floating-music-elements {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 pointer-events: none;
 z-index: 1;

} .music-note {
 position: absolute;
 font-size: 2rem;
 color: #8b5cf6;
 opacity: 0.8;
 animation: musicNoteFloat 4s ease-in-out infinite;

} .note-1 {
 top: 15%;
 left: 10%;
 animation-delay: 0s;
 
}
.note-2 {
 top: 25%;
 right: 15%;
 animation-delay: 0.8s;
 
}
.note-3 {
 top: 60%;
 left: 5%;
 animation-delay: 1.6s;
 
}
.note-4 {
 top: 70%;
 right: 10%;
 animation-delay: 2.4s;
 
}
.note-5 {
 top: 40%;
 left: 20%;
 animation-delay: 3.2s;
 
}
.note-6 {
 top: 80%;
 right: 25%;
 animation-delay: 4s;
 
} .sound-waves {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 pointer-events: none;
 z-index: 1;

} .wave {
 position: absolute;
 border: 2px solid rgba(139, 92, 246, 0.3);
 border-radius: 50%;
 animation: soundWaveExpand 3s ease-out infinite;

} .wave-1 {
 top: 20%;
 left: 5%;
 width: 50px;
 height: 50px;
 animation-delay: 0s;
 
}
.wave-2 {
 top: 30%;
 right: 5%;
 width: 80px;
 height: 80px;
 animation-delay: 0.6s;
 
}
.wave-3 {
 bottom: 40%;
 left: 10%;
 width: 60px;
 height: 60px;
 animation-delay: 1.2s;
 
}
.wave-4 {
 top: 60%;
 right: 10%;
 width: 70px;
 height: 70px;
 animation-delay: 1.8s;
 
}
.wave-5 {
 bottom: 20%;
 right: 5%;
 width: 40px;
 height: 40px;
 animation-delay: 2.4s;
 
} .equipment-icons {
 position: absolute;
 top: 20px;
 right: 20px;
 display: flex;
 flex-direction: column;
 gap: 1rem;
 z-index: 2;

} .equipment-item {
 width: 40px;
 height: 40px;
 background: rgba(139, 92, 246, 0.2);
 border: 1px solid rgba(139, 92, 246, 0.4);
 border-radius: 10px;
 display: flex;
 align-items: center;
 justify-content: center;
 animation: equipmentPulse 2s ease-in-out infinite;

} .equipment-item i {
 font-size: 1.2rem;
 color: #8b5cf6;

} .equipment-item:nth-child(1) {
 animation-delay: 0s;
 
}
.equipment-item:nth-child(2) {
 animation-delay: 0.5s;
 
}
.equipment-item:nth-child(3) {
 animation-delay: 1s;
 
}
.equipment-item:nth-child(4) {
 animation-delay: 1.5s;
 
} @keyframes consoleFloat {
 0%, 100% {
 transform: translateY(0px);
 
} 50% {
 transform: translateY(-10px);
 
}

} @keyframes vinylSpin {
 0% {
 transform: rotate(0deg);
 
} 100% {
 transform: rotate(360deg);
 
}

} @keyframes tonearmMove {
 0%, 100% {
 transform: translate(-50%, -50%) rotate(-30deg);
 
} 50% {
 transform: translate(-50%, -50%) rotate(-60deg);
 
}

} @keyframes crossfaderMove {
 0%, 100% {
 transform: translateX(0);
 
} 50% {
 transform: translateX(20px);
 
}

} @keyframes knobRotate {
 0% {
 transform: rotate(0deg);
 
} 100% {
 transform: rotate(360deg);
 
}

} @keyframes faderMove {
 0%, 100% {
 transform: translateY(0);
 
} 50% {
 transform: translateY(-10px);
 
}

} @keyframes volumePulse {
 0%, 100% {
 transform: scale(1);
 
} 50% {
 transform: scale(1.1);
 
}

} @keyframes frequencyDance {
 0%, 100% {
 height: 10px;
 
} 50% {
 height: 50px;
 
}

} @keyframes musicNoteFloat {
 0%, 100% {
 transform: translateY(0px) rotate(0deg);
 opacity: 0.8;
 
} 50% {
 transform: translateY(-15px) rotate(10deg);
 opacity: 1;
 
}

} @keyframes soundWaveExpand {
 0% {
 opacity: 1;
 transform: scale(0.5);
 
} 100% {
 opacity: 0;
 transform: scale(2);
 
}

} @keyframes equipmentPulse {
 0%, 100% {
 transform: scale(1);
 opacity: 0.8;
 
} 50% {
 transform: scale(1.05);
 opacity: 1;
 
}

} @keyframes sphereFloat {
 0%, 100% {
 transform: translateY(0px) rotateX(0deg);
 
} 50% {
 transform: translateY(-20px) rotateX(10deg);
 
}

} @keyframes sphereRotate {
 0% {
 transform: rotateY(0deg) rotateX(0deg);
 
} 25% {
 transform: rotateY(90deg) rotateX(10deg);
 
} 50% {
 transform: rotateY(180deg) rotateX(0deg);
 
} 75% {
 transform: rotateY(270deg) rotateX(-10deg);
 
} 100% {
 transform: rotateY(360deg) rotateX(0deg);
 
}

} @keyframes ringPulse {
 0%, 100% {
 opacity: 0.6;
 transform: translate(-50%, -50%) scale(1);
 
} 50% {
 opacity: 1;
 transform: translate(-50%, -50%) scale(1.05);
 
}

} @keyframes waveExpand {
 0% {
 opacity: 1;
 transform: translate(-50%, -50%) scale(0.5);
 
} 100% {
 opacity: 0;
 transform: translate(-50%, -50%) scale(2);
 
}

} @keyframes corePulse {
 0%, 100% {
 opacity: 0.8;
 transform: translate(-50%, -50%) scale(1);
 
} 50% {
 opacity: 1;
 transform: translate(-50%, -50%) scale(1.2);
 
}

} @keyframes coreGlow {
 0%, 100% {
 opacity: 0.3;
 transform: translate(-50%, -50%) scale(1);
 
} 50% {
 opacity: 0.6;
 transform: translate(-50%, -50%) scale(1.1);
 
}

} @keyframes particleFloat {
 0%, 100% {
 transform: translateY(0px) rotate(0deg);
 opacity: 0.8;
 
} 50% {
 transform: translateY(-30px) rotate(180deg);
 opacity: 1;
 
}

} @keyframes vizPulse {
 0%, 100% {
 opacity: 0.6;
 transform: translate(-50%, -50%) scale(1);
 
} 50% {
 opacity: 1;
 transform: translate(-50%, -50%) scale(1.3);
 
}

} @keyframes barDance {
 0%, 100% {
 height: 20px;
 opacity: 0.6;
 
} 50% {
 height: 60px;
 opacity: 1;
 
}

} @keyframes cardFloat {
 0%, 100% {
 transform: translateY(0px) rotate(0deg);
 
} 50% {
 transform: translateY(-15px) rotate(5deg);
 
}

} @keyframes cardGlow {
 0%, 100% {
 opacity: 0.3;
 
} 50% {
 opacity: 0.6;
 
}

} @keyframes energyPulse {
 0%, 100% {
 opacity: 0.4;
 transform: translate(-50%, -50%) scale(1);
 
} 50% {
 opacity: 0.8;
 transform: translate(-50%, -50%) scale(1.1);
 
}

} @keyframes tagFloat {
 0%, 100% {
 transform: translateY(0px) rotate(0deg);
 opacity: 0.8;
 
} 50% {
 transform: translateY(-10px) rotate(2deg);
 opacity: 1;
 
}

} @keyframes ripple {
 0% {
 transform: translate(-50%, -50%) scale(0);
 opacity: 1;
 
} 100% {
 transform: translate(-50%, -50%) scale(2);
 opacity: 0;
 
}

} @keyframes playPulse {
 0%, 100% {
 opacity: 0.4;
 transform: translate(-50%, -50%) scale(1);
 
} 50% {
 opacity: 0.8;
 transform: translate(-50%, -50%) scale(1.2);
 
}

} @keyframes orbFloat {
 0%, 100% {
 transform: translateY(0px) scale(1);
 opacity: 0.3;
 
} 50% {
 transform: translateY(-40px) scale(1.1);
 opacity: 0.6;
 
}

} @keyframes consoleFloat {
 0%, 100% {
 transform: translateY(0px);
 
} 50% {
 transform: translateY(-10px);
 
}

} @keyframes turntableFloat {
 0%, 100% {
 transform: translateY(0px) rotate(0deg);
 
} 50% {
 transform: translateY(-5px) rotate(2deg);
 
}

} @keyframes vinylSpin {
 0% {
 transform: rotate(0deg);
 
} 100% {
 transform: rotate(360deg);
 
}

} @keyframes labelPulse {
 0%, 100% {
 transform: translate(-50%, -50%) scale(1);
 
} 50% {
 transform: translate(-50%, -50%) scale(1.1);
 
}

} @keyframes tonearmMove {
 0%, 100% {
 transform: rotate(-30deg);
 
} 50% {
 transform: rotate(-60deg);
 
}

} @keyframes mixerFloat {
 0%, 100% {
 transform: translateY(0px);
 
} 50% {
 transform: translateY(-8px);
 
}

} @keyframes crossfaderMove {
 0%, 100% {
 transform: translateX(0);
 
} 50% {
 transform: translateX(20px);
 
}

} @keyframes knobRotate {
 0% {
 transform: rotate(0deg);
 
} 100% {
 transform: rotate(360deg);
 
}

} @keyframes faderMove {
 0%, 100% {
 transform: translateY(0);
 
} 50% {
 transform: translateY(-5px);
 
}

} @keyframes barDance {
 0%, 100% {
 height: 20px;
 opacity: 0.6;
 
} 50% {
 height: 60px;
 opacity: 1;
 
}

} @keyframes noteFloat {
 0%, 100% {
 transform: translateY(0px) rotate(0deg);
 opacity: 0.8;
 
} 50% {
 transform: translateY(-15px) rotate(10deg);
 opacity: 1;
 
}

}