  /* Unified Dark Theme Styling */
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
            background: radial-gradient(ellipse at center, #0f172a 0%, #000000 100%);
            color: #ffffff;
        }
        
        .dark-header {
            background: linear-gradient(135deg, rgba(17, 24, 39, 0.95) 0%, rgba(31, 41, 55, 0.95) 100%);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(55, 65, 81, 0.3);
        }
        
        .dark-hero {
            background: linear-gradient(135deg, 
                rgba(17, 24, 39, 0.9) 0%, 
                rgba(31, 41, 55, 0.9) 50%, 
                rgba(17, 24, 39, 0.9) 100%),
                url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        
        .primary-color { color: #10b981; }
        .primary-bg { background-color: #10b981; }
        .primary-border { border-color: #10b981; }
        
        .dark-card {
            background: linear-gradient(135deg, rgba(31, 41, 55, 0.8) 0%, rgba(17, 24, 39, 0.8) 100%);
            border: 1px solid rgba(55, 65, 81, 0.3);
            backdrop-filter: blur(15px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .dark-card:hover {
            background: linear-gradient(135deg, rgba(55, 65, 81, 0.9) 0%, rgba(31, 41, 55, 0.9) 100%);
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(16, 185, 129, 0.3);
            border-color: rgba(16, 185, 129, 0.3);
        }
        
        .stats-section {
            background: linear-gradient(135deg, rgba(17, 24, 39, 0.9) 0%, rgba(31, 41, 55, 0.9) 100%);
            backdrop-filter: blur(15px);
        }
        
        .footer-dark {
            background: linear-gradient(135deg, rgba(17, 24, 39, 0.95) 0%, rgba(31, 41, 55, 0.95) 100%);
            backdrop-filter: blur(10px);
            border-top: 1px solid rgba(55, 65, 81, 0.3);
        }
        
        .play-btn {
            background: linear-gradient(135deg, #10b981, #059669);
            transition: all 0.3s ease;
        }
        
        .play-btn:hover {
            background: linear-gradient(135deg, #059669, #047857);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
        }
        
        .browse-btn {
            border: 2px solid #10b981;
            color: #10b981;
            background: transparent;
            transition: all 0.3s ease;
        }
        
        .browse-btn:hover {
            background: #10b981;
            color: white;
            transform: translateY(-2px);
        }
        
        .search-input {
            background: rgba(31, 41, 55, 0.8);
            border: 1px solid rgba(55, 65, 81, 0.5);
            color: white;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .search-input:focus {
            border-color: #10b981;
            box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
            outline: none;
            background: rgba(31, 41, 55, 0.9);
        }
        
        .search-input::placeholder {
            color: #9ca3af;
        }
        
        .loading {
            opacity: 0.5;
            pointer-events: none;
        }
        .error-message {
            color: rgb(239, 68, 68);
            font-size: 0.875rem;
            margin-top: 0.5rem;
        }
        
        /* Line clamp utility */
        .line-clamp-1 {
            display: -webkit-box;
            -webkit-line-clamp: 1;
            line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .line-clamp-2 {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: rgba(17, 24, 39, 0.8);
        }
        
        ::-webkit-scrollbar-thumb {
            background: #10b981;
            border-radius: 4px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: #059669;
        }
        
        /* Hover effects for links */
        .prose a {
            transition: all 0.2s ease;
        }
        
        .prose a:hover {
            text-decoration: underline;
        }
        
        /* Responsive improvements */
        @media (max-width: 768px) {
            .container {
                padding-left: 1rem;
                padding-right: 1rem;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            .text-4xl {
                font-size: 2rem;
            }
            
            .text-3xl {
                font-size: 1.75rem;
            }
        }