Changed around line 1
+ :root {
+ --primary-color: #6b48ff;
+ --secondary-color: #1a1a1a;
+ --accent-color: #ff3366;
+ --text-light: #ffffff;
+ --text-dark: #333333;
+ --spacing-unit: 1rem;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Inter', sans-serif;
+ line-height: 1.6;
+ color: var(--text-dark);
+ background: var(--secondary-color);
+ }
+
+ .hero {
+ min-height: 100vh;
+ background: linear-gradient(45deg, var(--secondary-color), #000);
+ position: relative;
+ overflow: hidden;
+ }
+
+ .hero::after {
+ content: '';
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ background: radial-gradient(circle, rgba(107,72,255,0.2) 0%, rgba(0,0,0,0) 70%);
+ pointer-events: none;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 2rem;
+ position: fixed;
+ width: 100%;
+ z-index: 1000;
+ background: rgba(26,26,26,0.9);
+ backdrop-filter: blur(10px);
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: 700;
+ color: var(--text-light);
+ text-transform: uppercase;
+ letter-spacing: 2px;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ color: var(--text-light);
+ text-decoration: none;
+ transition: color 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--primary-color);
+ }
+
+ .cta-button {
+ background: var(--accent-color);
+ padding: 0.5rem 1.5rem;
+ border-radius: 25px;
+ transition: transform 0.3s ease;
+ }
+
+ .cta-button:hover {
+ transform: scale(1.05);
+ }
+
+ .hero-content {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ height: 100vh;
+ text-align: center;
+ padding: 0 1rem;
+ }
+
+ .hero-content h1 {
+ font-size: 4rem;
+ color: var(--text-light);
+ margin-bottom: 1rem;
+ animation: fadeInUp 1s ease;
+ }
+
+ .hero-content p {
+ color: var(--text-light);
+ font-size: 1.5rem;
+ margin-bottom: 2rem;
+ animation: fadeInUp 1s ease 0.2s;
+ }
+
+ .primary-button {
+ background: var(--primary-color);
+ color: var(--text-light);
+ padding: 1rem 2rem;
+ border-radius: 30px;
+ text-decoration: none;
+ font-weight: 600;
+ transition: all 0.3s ease;
+ animation: fadeInUp 1s ease 0.4s;
+ }
+
+ .primary-button:hover {
+ background: var(--accent-color);
+ transform: translateY(-2px);
+ }
+
+ section {
+ padding: 5rem 2rem;
+ }
+
+ .music-section, .tour-section, .about-section {
+ background: var(--text-light);
+ margin: 2rem 0;
+ border-radius: 10px;
+ }
+
+ .album-container {
+ display: flex;
+ align-items: center;
+ gap: 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .tour-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .tour-date {
+ background: var(--secondary-color);
+ color: var(--text-light);
+ padding: 2rem;
+ border-radius: 10px;
+ text-align: center;
+ transition: transform 0.3s ease;
+ }
+
+ .tour-date:hover {
+ transform: translateY(-5px);
+ }
+
+ .band-members {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .member {
+ text-align: center;
+ }
+
+ .member img {
+ width: 200px;
+ height: 200px;
+ border-radius: 50%;
+ object-fit: cover;
+ margin-bottom: 1rem;
+ }
+
+ footer {
+ background: var(--secondary-color);
+ color: var(--text-light);
+ padding: 3rem 2rem;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ @media (max-width: 768px) {
+ nav {
+ flex-direction: column;
+ padding: 1rem;
+ }
+
+ .nav-links {
+ flex-direction: column;
+ align-items: center;
+ gap: 1rem;
+ margin-top: 1rem;
+ }
+
+ .hero-content h1 {
+ font-size: 2.5rem;
+ }
+
+ .album-container {
+ flex-direction: column;
+ text-align: center;
+ }
+
+ .footer-content {
+ flex-direction: column;
+ gap: 2rem;
+ text-align: center;
+ }
+ }
+
+ @keyframes fadeInUp {
+ from {
+ opacity: 0;
+ transform: translateY(20px);
+ }
+ to {
+ opacity: 1;
+ transform: translateY(0);
+ }
+ }