Changed around line 1
+ :root {
+ --primary-color: #800020;
+ --secondary-color: #2a0a0a;
+ --accent-color: #c41e3a;
+ --text-color: #d3d3d3;
+ --background: #1a1a1a;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ background-color: var(--background);
+ color: var(--text-color);
+ font-family: "Gothic", "Crimson Text", serif;
+ line-height: 1.6;
+ min-height: 100vh;
+ display: flex;
+ flex-direction: column;
+ }
+
+ header {
+ background: linear-gradient(to bottom, var(--secondary-color), var(--background));
+ padding: 2rem;
+ text-align: center;
+ border-bottom: 2px solid var(--accent-color);
+ box-shadow: 0 0 20px rgba(196, 30, 58, 0.3);
+ }
+
+ h1 {
+ font-size: 3rem;
+ color: var(--accent-color);
+ text-transform: uppercase;
+ letter-spacing: 0.5rem;
+ margin-bottom: 1rem;
+ text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
+ }
+
+ .auth-btn, .gothic-btn {
+ background-color: var(--primary-color);
+ color: var(--text-color);
+ border: 1px solid var(--accent-color);
+ padding: 0.8rem 1.5rem;
+ cursor: pointer;
+ transition: all 0.3s ease;
+ font-family: inherit;
+ text-transform: uppercase;
+ }
+
+ .auth-btn:hover, .gothic-btn:hover {
+ background-color: var(--accent-color);
+ transform: scale(1.05);
+ box-shadow: 0 0 15px rgba(196, 30, 58, 0.5);
+ }
+
+ main {
+ flex: 1;
+ padding: 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ width: 100%;
+ }
+
+ .playlist-creator {
+ background: rgba(42, 10, 10, 0.5);
+ padding: 2rem;
+ border-radius: 5px;
+ margin-bottom: 2rem;
+ border: 1px solid var(--primary-color);
+ }
+
+ form {
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ input {
+ background: rgba(26, 26, 26, 0.8);
+ border: 1px solid var(--primary-color);
+ padding: 0.8rem;
+ color: var(--text-color);
+ font-family: inherit;
+ }
+
+ .tree-structure {
+ position: relative;
+ padding: 1rem;
+ }
+
+ .tree-structure::before {
+ content: '';
+ position: absolute;
+ left: 0;
+ top: 0;
+ bottom: 0;
+ width: 2px;
+ background: var(--accent-color);
+ }
+
+ footer {
+ background: var(--secondary-color);
+ padding: 1rem;
+ text-align: center;
+ margin-top: auto;
+ }
+
+ footer nav a {
+ color: var(--text-color);
+ text-decoration: none;
+ margin: 0 1rem;
+ transition: color 0.3s ease;
+ }
+
+ footer nav a:hover {
+ color: var(--accent-color);
+ }
+
+ @media (max-width: 768px) {
+ header {
+ padding: 1rem;
+ }
+
+ h1 {
+ font-size: 2rem;
+ }
+
+ main {
+ padding: 1rem;
+ }
+
+ form {
+ gap: 0.5rem;
+ }
+ }