Changed around line 1
+ :root {
+ --primary: #1a0f1f;
+ --secondary: #2d1b33;
+ --accent: #8a2be2;
+ --text: #e6e6e6;
+ --font-gothic: 'Cinzel', serif;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ background: var(--primary);
+ color: var(--text);
+ font-family: var(--font-gothic);
+ line-height: 1.6;
+ }
+
+ header {
+ background: var(--secondary);
+ padding: 1rem;
+ box-shadow: 0 0 20px rgba(138, 43, 226, 0.2);
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .logo {
+ font-size: 2rem;
+ font-weight: bold;
+ background: linear-gradient(45deg, var(--accent), #ff00ff);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ button {
+ background: var(--accent);
+ color: var(--text);
+ border: none;
+ padding: 0.8rem 1.5rem;
+ border-radius: 4px;
+ cursor: pointer;
+ transition: all 0.3s ease;
+ }
+
+ button:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 5px 15px rgba(138, 43, 226, 0.3);
+ }
+
+ .hero {
+ text-align: center;
+ padding: 4rem 1rem;
+ background: linear-gradient(to bottom, var(--secondary), var(--primary));
+ }
+
+ h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1rem;
+ text-shadow: 0 0 10px var(--accent);
+ }
+
+ .playlists {
+ max-width: 1200px;
+ margin: 2rem auto;
+ padding: 0 1rem;
+ }
+
+ .playlist-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .playlist-card {
+ background: var(--secondary);
+ border-radius: 8px;
+ padding: 1rem;
+ transition: transform 0.3s ease;
+ }
+
+ .playlist-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .progress-tracker {
+ padding: 2rem 1rem;
+ background: var(--secondary);
+ margin-top: 3rem;
+ }
+
+ .progress-container {
+ max-width: 800px;
+ margin: 0 auto;
+ }
+
+ .progress-bar {
+ height: 20px;
+ background: var(--primary);
+ border-radius: 10px;
+ overflow: hidden;
+ margin-top: 1rem;
+ }
+
+ .progress {
+ height: 100%;
+ background: linear-gradient(90deg, var(--accent), #ff00ff);
+ width: 0%;
+ transition: width 0.3s ease;
+ }
+
+ footer {
+ background: var(--secondary);
+ padding: 2rem 1rem;
+ margin-top: 4rem;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ @media (max-width: 768px) {
+ h1 {
+ font-size: 2.5rem;
+ }
+
+ .footer-content {
+ flex-direction: column;
+ text-align: center;
+ gap: 1rem;
+ }
+ }