        /* CSS Reset & Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            font-size: 62.5%; /* 1rem = 10px */
        }
        
        /* Typography */
        body {
            font-family: 'Rajdhani', 'Orbitron', 'Share Tech', 'Courier New', Courier, monospace, sans-serif;
            color: white;
            font-size: 1.9rem;
            line-height: 1.5;
            overflow-x: hidden;
            background: #000; /* Fallback if video fails */
        }

        p {
            margin-top: 1rem;
            text-shadow: 0 0 0 #000, 1px 1px 0 #000;
        }
        p.intro {
            font-size: 2.2rem;
        }


        p strong {
            font-weight: 700;
        }

        /* Layout Components */
        .video-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: #000;
        }
        
        .video-container video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 1s ease;
        }
        
        .video-container video.loaded {
            opacity: 1;
        }

        
        /* Base style: fixed centering for large screens */
        .logo-container {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            width: 100%;
            padding: 2rem 2rem 0 2rem;
            max-height: 100vh;
            overflow-y: auto;
            opacity: 0;
            transform: translate(-50%, calc(-50% + 20px)); /* for animation entry */
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .logo-container.animate {
            opacity: 1;
            transform: translate(-50%, -50%);
        }

        /* Mobile layout fix: still fixed, but top-aligned and scroll-friendly */
        @media (max-width: 768px) {
            .logo-container {
                position: fixed;
                top: 0;
                left: 0;
                transform: none;
                padding: 2rem 1rem;
                height: 100vh;
                overflow-y: auto;
                opacity: 0;
                transform: translateY(20px);
                transition: opacity 0.6s ease, transform 0.6s ease;
            }

            .logo-container.animate {
                opacity: 1;
                transform: translateY(0);
            }
        }

        
        .logo {
            max-width: 400px;
            width: 80%;
            height: auto;
            filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
            animation: pulse 5s ease-in-out infinite;
        }
        
        /* Loader */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #000;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            transition: opacity 0.5s ease;
        }
        
        .loader-spinner {
            width: 50px;
            height: 50px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 1s ease-in-out infinite;
        }

        /* Social Icons */
        .social-container {
            display: flex;
            gap: 15px;
            justify-content: center;
            padding: 15px;
        }

        .social-icon {
            width: 64px;
            height: 64px;
            transition: transform 0.3s ease;
        }

        .social-icon:hover {
            transform: scale(1.1);
        }

        .media-container {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            justify-content: center;
            margin: 30px auto;
            max-width: 960px;
        }

        .media-container-item {
            flex: 1 1 100%;
            min-width: 0;
            display: flex;
            justify-content: center;
        }

        /* 2-column layout */
        .media-container[data-columns="2"] .media-container-item {
            flex: 1 1 calc(50% - 24px);
        }

        /* 3-column layout */
        .media-container[data-columns="3"] .media-container-item {
            flex: 1 1 calc(33.33% - 24px);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .media-container-item {
                flex: 1 1 100% !important;
            }
        }

        /* Preview Player */
        .preview-player {
            max-width: 350px;
            width: 100%;
            background: rgba(0,0,0,0.5);
            border-radius: 12px;
            padding: 10px 15px 20px 16px;
            color: white;
            margin: 0 auto;
            box-shadow: 0 4px 20px rgba(0,0,0,0.4);
        }

        .video-canvas {
            position: relative;
            width: 100%;
            padding-bottom: 100%;
            background: #000;
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
        }

        .video-canvas video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .image-canvas {
            position: relative;
            width: 100%;
            padding-bottom: 100%;
            background: #000;
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
        }

        .image-canvas img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .progress-container {
            width: 100%;
            height: 4px;
            background: rgba(255,255,255,0.1);
            position: absolute;
            bottom: 0;
            left: 0;
            border-radius: 0 0 8px 8px;
        }

        .progress-bar {
            height: 100%;
            width: 0%;
            background: #1DB954;
            border-radius: 0 0 0 8px;
            transition: width 0.1s linear;
        }

        .controls {
            display: flex;
            gap: 12px;
            justify-content: center;
            margin-top: 10px;
        }

        button {
            background: rgba(29, 185, 84, 0.2);
            color: white;
            border: 2px solid rgba(29, 185, 84, 0.4);
            padding: 10px 25px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }

        button:hover {
            background: rgba(29, 185, 84, 0.3);
            border-color: rgba(29, 185, 84, 0.6);
            transform: translateY(-2px);
        }

        button:active {
            transform: translateY(0);
        }

        .track-info {
            margin: 15px 0;
            text-align: center;
        }

        .track-title {
            font-size: 18px;
            font-weight: bold;
            letter-spacing: 0.5px;
        }

        .spotify-link {
            display: inline-block;
            color: #1DB954;
            text-decoration: none;
            text-align: center;
            margin-top: 15px;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.2s;
        }

        .spotify-link:hover {
            color: white;
        }

        /* Animations */
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        /* Mobile Optimizations */
        @media (max-width: 768px) {
            .logo {
                max-width: 300px;
            }
            
            .preview-player {
                padding: 15px;
                margin: 15px auto;
            }

            .social-icon {
                width: 48px;
                height: 48px;
            }
        }

        @media (max-width: 400px) {
            .controls {
                flex-direction: column;
                align-items: center;
                gap: 8px;
            }

            button {
                width: 100%;
                max-width: 200px;
            }
        }
