Changed around line 1
+ :root {
+ --primary-color: #6c63ff;
+ --secondary-color: #2c3e50;
+ --accent-color: #00ff9d;
+ --background: #0a0a1f;
+ --text-color: #ffffff;
+ --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ background: var(--background);
+ color: var(--text-color);
+ line-height: 1.6;
+ }
+
+ header {
+ padding: 1rem;
+ background: rgba(255, 255, 255, 0.05);
+ backdrop-filter: blur(10px);
+ position: fixed;
+ width: 100%;
+ z-index: 100;
+ }
+
+ nav {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
+ -webkit-background-clip: text;
+ color: transparent;
+ }
+
+ .nav-links a {
+ color: var(--text-color);
+ text-decoration: none;
+ margin-left: 2rem;
+ transition: var(--transition);
+ }
+
+ .nav-links a:hover {
+ color: var(--accent-color);
+ }
+
+ #hero {
+ height: 100vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ background: radial-gradient(circle at center, rgba(108, 99, 255, 0.2), transparent);
+ }
+
+ h1 {
+ font-size: 4rem;
+ margin-bottom: 1rem;
+ background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
+ -webkit-background-clip: text;
+ color: transparent;
+ }
+
+ .player-container {
+ max-width: 800px;
+ margin: 2rem auto;
+ padding: 2rem;
+ background: rgba(255, 255, 255, 0.05);
+ border-radius: 20px;
+ box-shadow: 0 0 30px rgba(108, 99, 255, 0.2);
+ }
+
+ .visualization-sphere {
+ width: 200px;
+ height: 200px;
+ margin: 0 auto 2rem;
+ background: radial-gradient(circle at 30% 30%, var(--accent-color), var(--primary-color));
+ border-radius: 50%;
+ animation: pulse 4s infinite ease-in-out;
+ }
+
+ .channel-indicators {
+ display: grid;
+ grid-template-columns: repeat(3, 1fr);
+ gap: 1rem;
+ margin: 2rem 0;
+ }
+
+ .channel {
+ padding: 0.5rem;
+ text-align: center;
+ background: rgba(255, 255, 255, 0.1);
+ border-radius: 8px;
+ transition: var(--transition);
+ }
+
+ .channel.active {
+ background: var(--primary-color);
+ transform: scale(1.05);
+ }
+
+ .main-controls {
+ display: flex;
+ justify-content: center;
+ gap: 2rem;
+ margin: 2rem 0;
+ }
+
+ button {
+ background: none;
+ border: none;
+ color: var(--text-color);
+ cursor: pointer;
+ transition: var(--transition);
+ }
+
+ button:hover {
+ transform: scale(1.1);
+ }
+
+ .btn-play {
+ width: 60px;
+ height: 60px;
+ background: var(--primary-color);
+ border-radius: 50%;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ }
+
+ .progress-container {
+ position: relative;
+ margin: 2rem 0;
+ }
+
+ .progress-bar {
+ height: 4px;
+ background: rgba(255, 255, 255, 0.1);
+ border-radius: 2px;
+ overflow: hidden;
+ }
+
+ .progress {
+ height: 100%;
+ background: var(--accent-color);
+ width: 0%;
+ transition: var(--transition);
+ }
+
+ .volume-slider {
+ width: 100%;
+ margin: 1rem 0;
+ -webkit-appearance: none;
+ background: rgba(255, 255, 255, 0.1);
+ height: 4px;
+ border-radius: 2px;
+ }
+
+ .volume-slider::-webkit-slider-thumb {
+ -webkit-appearance: none;
+ width: 16px;
+ height: 16px;
+ background: var(--accent-color);
+ border-radius: 50%;
+ cursor: pointer;
+ }
+
+ @keyframes pulse {
+ 0% { transform: scale(1); opacity: 0.8; }
+ 50% { transform: scale(1.05); opacity: 1; }
+ 100% { transform: scale(1); opacity: 0.8; }
+ }
+
+ @media (max-width: 768px) {
+ h1 { font-size: 2.5rem; }
+ .player-container { margin: 1rem; padding: 1rem; }
+ .channel-indicators { grid-template-columns: repeat(2, 1fr); }
+ .nav-links a { margin-left: 1rem; }
+ }