
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --bg-primary: #000000;
            --text-primary: #FFFFFF;
            --text-muted: #4D4D4D;
            --accent-cyan: #00FFFF;
            --accent-pink: #FF00FF;
            --border-subtle: rgba(255, 255, 255, 0.1);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: 'Inter', system-ui, sans-serif;
            -webkit-font-smoothing: antialiased;
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-subtle);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 48px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 24px;
            font-weight: 700;
            letter-spacing: 2px;
        }

        .logo-cyan { color: var(--accent-cyan); }
        .logo-pink { color: var(--accent-pink); }

        .nav-links {
            display: flex;
            gap: 32px;
        }

        .nav-link {
            color: var(--text-muted);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: var(--accent-cyan);
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            gap: 4px;
            cursor: pointer;
        }

        .mobile-menu span {
            width: 24px;
            height: 2px;
            background: white;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.8;
        }

        .hero-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.5), #000);
        }

        .hero-content {
            position: relative;
            z-index: 10;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 120px 48px;
            display: flex;
            align-items: center;
        }

        .hero-text {
            max-width: 600px;
        }

        .badge {
            display: inline-block;
            padding: 8px 16px;
            background: rgba(0, 255, 255, 0.1);
            border: 1px solid rgba(0, 255, 255, 0.3);
            color: var(--accent-cyan);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 24px;
        }

        .hero-title {
            font-size: clamp(48px, 10vw, 120px);
            line-height: 1;
            margin-bottom: 24px;
        }

        .hero-title .cyan {
            color: var(--accent-cyan);
        }

        .hero-title .white {
            color: #fff;
        }

        .hero-title .pink {
            color: var(--accent-pink);
        }

        .hero-tagline {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 40px;
        }

        .btn-group {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn {
            padding: 16px 32px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.4s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: none;
        }

        .btn-primary {
            background: var(--accent-cyan);
            color: #000;
        }

        .btn-primary:hover {
            background: rgba(0, 255, 255, 0.1);
            color: var(--accent-cyan);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
        }

        .btn-secondary:hover {
            background: #fff;
            color: #000;
        }
        
        .btn-tertiary {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
        }

        .btn-tertiary:hover {
            background: #fff;
            color: #000;
        }

        /* Animated Visual */
        .hero-visual {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .visual-container {
            position: relative;
            width: 400px;
            height: 400px;
        }

        .glow-ring {
            position: absolute;
            inset: 0;
            border-radius: 50%;
            background: linear-gradient(45deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.2));
            filter: blur(60px);
            animation: pulse 3s ease-in-out infinite;
        }

        .ring {
            position: absolute;
            border-radius: 50%;
            border: 2px solid;
        }

        .ring-1 {
            inset: 20px;
            border-color: rgba(0, 255, 255, 0.3);
            animation: spin 20s linear infinite;
        }

        .ring-2 {
            inset: 60px;
            border-color: rgba(255, 0, 255, 0.4);
            animation: spin 15s linear infinite reverse;
        }

        .ring-3 {
            inset: 100px;
            border-color: rgba(0, 255, 255, 0.5);
            animation: spin 10s linear infinite;
        }

        .center-logo {
            position: absolute;
            inset: 140px;
            background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
            border-radius: 50%;
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Orbitron', sans-serif;
            font-size: 48px;
            font-weight: 700;
        }

        .particle {
            position: absolute;
            border-radius: 50%;
            animation: ping 2s ease-out infinite;
        }

        .particle-1 { top: 25%; left: 25%; width: 12px; height: 12px; background: var(--accent-cyan); animation-duration: 2s; }
        .particle-2 { top: 33%; right: 25%; width: 8px; height: 8px; background: var(--accent-pink); animation-duration: 3s; }
        .particle-3 { bottom: 25%; left: 33%; width: 8px; height: 8px; background: var(--accent-cyan); animation-duration: 2.5s; }
        .particle-4 { bottom: 33%; right: 33%; width: 12px; height: 12px; background: var(--accent-pink); animation-duration: 1.5s; }

        .scroll-indicator {
            position: absolute;
            bottom: 32px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
            color: var(--accent-cyan);
        }

        /* Stats Section */
        .stats {
            padding: 64px 0;
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 48px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            text-align: center;
        }

        .stat-value {
            font-family: 'Orbitron', sans-serif;
            font-size: 48px;
            font-weight: 700;
            color: var(--accent-cyan);
            margin-bottom: 8px;
        }

        .stat-label {
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 12px;
        }

        /* Spotify Section */
        .spotify-section {
            border-bottom: 1px solid var(--border-subtle);
        }

        .spotify-player {
            max-width: 800px;
            margin: 0 auto;
        }

        /* Music Section */
        .section {
            padding: 96px 0;
        }

        .section-label {
            color: var(--accent-cyan);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .section-title {
            font-size: 48px;
            margin-top: 16px;
            margin-bottom: 48px;
        }

        .section-title span {
            color: var(--accent-pink);
        }

        .releases-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .release-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-subtle);
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .release-card:hover {
            border-color: rgba(0, 255, 255, 0.5);
        }

        .release-cover {
            position: relative;
            aspect-ratio: 1;
            overflow: hidden;
        }

        .release-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .release-card:hover .release-cover img {
            transform: scale(1.1);
        }

        .release-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            opacity: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.3s ease;
        }

        .release-card:hover .release-overlay {
            opacity: 1;
        }

        .play-btn {
            width: 64px;
            height: 64px;
            background: var(--accent-cyan);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .release-info {
            padding: 24px;
        }

        .release-type {
            color: var(--accent-pink);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .release-title {
            font-size: 18px;
            margin-top: 8px;
            transition: color 0.3s ease;
        }

        .release-card:hover .release-title {
            color: var(--accent-cyan);
        }

        .release-card.coming-soon {
            position: relative;
        }

        .coming-soon-overlay {
            opacity: 1 !important;
            background: rgba(0, 0, 0, 0.7) !important;
        }

        .coming-soon-badge {
            background: var(--accent-pink);
            color: #000;
            padding: 12px 24px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .coming-soon-date {
            color: var(--accent-cyan) !important;
        }

        .release-tracks {
            color: var(--text-muted);
            font-size: 14px;
            margin-top: 4px;
        }

        .center-btn {
            text-align: center;
            margin-top: 48px;
        }

        .btn-outline {
            background: transparent;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.3);
            padding: 16px 32px;
        }

        .btn-outline:hover {
            background: #fff;
            color: #000;
        }

        /* About Section */
        .about {
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image::before {
            content: '';
            position: absolute;
            inset: -16px;
            background: linear-gradient(45deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.2));
            filter: blur(60px);
        }

        .about-image img {
            position: relative;
            width: 100%;
            aspect-ratio: 1;
            object-fit: cover;
            border: 1px solid var(--border-subtle);
        }

        .about-text p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 24px;
        }

        /* Tour Section */
        .tour-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .tour-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 24px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-subtle);
            transition: all 0.4s ease;
        }

        .tour-item:hover {
            border-color: rgba(0, 255, 255, 0.5);
        }

        .tour-info {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .tour-date {
            color: var(--accent-cyan);
            font-family: 'Orbitron', monospace;
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .tour-location h3 {
            font-size: 18px;
            font-family: 'Inter', sans-serif;
            transition: color 0.3s ease;
        }

        .tour-item:hover .tour-location h3 {
            color: var(--accent-cyan);
        }

        .tour-venue {
            color: var(--text-muted);
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 4px;
            margin-top: 4px;
        }

        .btn-sold-out {
            padding: 12px 24px;
            background: rgba(255, 0, 255, 0.2);
            color: var(--accent-pink);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .btn-tickets {
            padding: 12px 24px;
            background: var(--accent-cyan);
            color: #000;
            font-size: 14px;
            font-weight: 500;
        }

        .btn-tickets:hover {
            background: rgba(0, 255, 255, 0.1);
            color: var(--accent-cyan);
        }

        /* Contact Section */
        .contact {
            border-top: 1px solid var(--border-subtle);
        }

        .contact-content {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }

        .contact-content p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 18px;
            margin-bottom: 40px;
        }

        .newsletter-form {
            display: flex;
            gap: 16px;
            justify-content: center;
        }

        .newsletter-form input {
            flex: 1;
            max-width: 400px;
            padding: 16px 24px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
            font-size: 16px;
        }

        .newsletter-form input::placeholder {
            color: var(--text-muted);
        }

        .newsletter-form input:focus {
            outline: none;
            border-color: var(--accent-cyan);
        }

        .social-section {
            margin-top: 64px;
        }

        .social-label {
            color: var(--text-muted);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 24px;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 16px;
        }

        .social-link {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--accent-cyan);
            color: #000;
        }

        .social-link svg {
            width: 20px;
            height: 20px;
        }

        /* Footer */
        .footer {
            padding: 32px 0;
            border-top: 1px solid var(--border-subtle);
        }

        .footer-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .footer-copyright {
            color: var(--text-muted);
            font-size: 14px;
        }

        .footer-links {
            display: flex;
            gap: 24px;
        }

        .footer-link {
            color: var(--text-muted);
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-link:hover {
            color: var(--accent-cyan);
        }

        /* Animations */
        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        @keyframes ping {
            0% { transform: scale(1); opacity: 1; }
            75%, 100% { transform: scale(2); opacity: 0; }
        }

        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(-10px); }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-text {
                max-width: none;
            }

            .btn-group {
                justify-content: center;
            }

            .hero-visual {
                display: none;
            }

            .releases-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .about-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-container {
                padding: 0 24px;
            }

            .nav-links {
                display: none;
            }

            .mobile-menu {
                display: flex;
            }

            .container {
                padding: 0 24px;
            }

            .hero-content {
                padding: 100px 24px;
            }

            .releases-grid {
                grid-template-columns: 1fr;
            }

            .tour-info {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }

            .tour-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-form input {
                max-width: none;
            }

            .footer-content {
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }

            .stat-value {
                font-size: 36px;
            }
        }
