Changed around line 1
+ :root {
+ --primary-color: #6c5ce7;
+ --secondary-color: #a29bfe;
+ --bg-color: #0f0f1a;
+ --text-color: #ffffff;
+ --card-bg: #1a1a2e;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Inter', sans-serif;
+ background: var(--bg-color);
+ color: var(--text-color);
+ line-height: 1.6;
+ }
+
+ .hero-section {
+ background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
+ padding: 1rem;
+ }
+
+ .nav-container {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ background: linear-gradient(to right, #fff, #ddd);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ align-items: center;
+ }
+
+ .nav-links a {
+ color: var(--text-color);
+ text-decoration: none;
+ transition: opacity 0.3s;
+ }
+
+ .nav-links a:hover {
+ opacity: 0.8;
+ }
+
+ .login-btn {
+ background: rgba(255, 255, 255, 0.2);
+ border: none;
+ padding: 0.5rem 1.5rem;
+ border-radius: 50px;
+ color: var(--text-color);
+ cursor: pointer;
+ backdrop-filter: blur(5px);
+ transition: transform 0.3s;
+ }
+
+ .login-btn:hover {
+ transform: scale(1.05);
+ }
+
+ .music-player {
+ max-width: 1200px;
+ margin: 2rem auto;
+ padding: 2rem;
+ background: var(--card-bg);
+ border-radius: 15px;
+ box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
+ }
+
+ .now-playing {
+ display: flex;
+ align-items: center;
+ gap: 2rem;
+ }
+
+ .album-art {
+ width: 200px;
+ height: 200px;
+ border-radius: 10px;
+ overflow: hidden;
+ box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
+ }
+
+ .album-art img {
+ width: 100%;
+ height: 100%;
+ object-fit: cover;
+ }
+
+ .player-controls {
+ display: flex;
+ align-items: center;
+ gap: 1rem;
+ margin-top: 1rem;
+ }
+
+ .player-controls button {
+ background: none;
+ border: none;
+ color: var(--text-color);
+ font-size: 1.5rem;
+ cursor: pointer;
+ transition: transform 0.3s;
+ }
+
+ .player-controls button:hover {
+ transform: scale(1.1);
+ }
+
+ .progress-bar {
+ width: 100%;
+ height: 5px;
+ background: rgba(255, 255, 255, 0.1);
+ border-radius: 5px;
+ margin-top: 1rem;
+ overflow: hidden;
+ }
+
+ .progress {
+ width: 30%;
+ height: 100%;
+ background: var(--primary-color);
+ border-radius: 5px;
+ }
+
+ .library-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ padding: 2rem;
+ }
+
+ .track-card {
+ background: var(--card-bg);
+ padding: 1rem;
+ border-radius: 10px;
+ transition: transform 0.3s;
+ cursor: pointer;
+ }
+
+ .track-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .track-card img {
+ width: 100%;
+ border-radius: 5px;
+ margin-bottom: 1rem;
+ }
+
+ .playlist-section {
+ padding: 2rem;
+ }
+
+ .playlist-container {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ }
+
+ .playlist-card {
+ background: var(--card-bg);
+ padding: 2rem;
+ border-radius: 10px;
+ transition: transform 0.3s;
+ cursor: pointer;
+ }
+
+ .playlist-card:hover {
+ transform: scale(1.02);
+ }
+
+ footer {
+ background: var(--card-bg);
+ padding: 2rem;
+ margin-top: 4rem;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .footer-links {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .footer-links a {
+ color: var(--text-color);
+ text-decoration: none;
+ opacity: 0.8;
+ transition: opacity 0.3s;
+ }
+
+ .footer-links a:hover {
+ opacity: 1;
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .now-playing {
+ flex-direction: column;
+ text-align: center;
+ }
+
+ .footer-content {
+ flex-direction: column;
+ gap: 1rem;
+ text-align: center;
+ }
+ }