        /* Popup Overlay */
        .release-popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 0, 0, 0.8);
            z-index: 1000;
            display: flex;
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.5s ease;
        }

        .release-popup-overlay.popup-hidden {
            display: none;
        }

        .release-popup-content {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 25px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            padding: 30px;
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            max-width: 900px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: slideIn 0.5s ease;
        }

        .release-popup-close {
            position: absolute;
            top: 15px;
            right: 20px;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            color: white;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .release-popup-close:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1);
        }

        .release-popup-header {
            text-align: center;
            margin-bottom: 25px;
        }

        .release-main-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 8px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .release-subtitle {
            font-size: 1rem;
            color: #cbd5e0;
            opacity: 0.9;
        }

        .release-content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 20px;
        }

        /* CD Cover Section */
        .release-cover-section {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .release-cover-container {
            width: 100%;
            max-width: 300px;
            aspect-ratio: 1/1;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 15px;
            position: relative;
            transition: transform 0.3s ease;
        }

        .release-cover-container:hover {
            transform: scale(1.05);
        }

        .release-cover-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .release-streaming-links {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            width: 100%;
            max-width: 300px;
            padding-left: 20px;
        }

        .release-streaming-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 18px;
            color: white;
        }



        a.release-streaming-link:hover {
            color: white;
            transform: scale(1.1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        /* Streaming Platform Colors */
        .release-spotify { background: #1db954; }
        .release-apple { background: #cbcbcb; }
        .release-youtube { background: #ff0000; }
        .release-amazon { background: #ff9900; }
        .release-deezer { background: #feaa2d; }
        .release-tidal { background: #000000; }
        .release-soundcloud { background: #ff5500; }
        .release-bandcamp { background: #629aa0; }

        /* Video Section */
        .release-video-section {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .release-video-container {
            width: 100%;
            aspect-ratio: 16/9;
            border-radius: 15px;
            overflow: hidden;
            background: #000;
            margin-bottom: 15px;
        }

        .release-video-frame {
            width: 100%;
            height: 100%;
            border: none;
        }

        .release-video-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: #9ca3af;
            text-align: center;
            padding: 20px;
        }

        .release-video-placeholder-icon {
            font-size: 3rem;
            margin-bottom: 15px;
            opacity: 0.6;
        }

        .release-video-placeholder-text {
            font-size: 1.1rem;
            font-weight: 500;
            margin-bottom: 5px;
        }

        .release-video-placeholder-date {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .release-info-section {
            text-align: center;
            margin-top: 20px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .release-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 8px;
        }

        .release-artist {
            font-size: 1.1rem;
            color: #cbd5e0;
            margin-bottom: 5px;
        }

        .release-date {
            font-size: 0.95rem;
            color: #9ca3af;
        }

        .release-description {
            font-size: 1rem;
            color: #e2e8f0;
            line-height: 1.6;
            margin-top: 15px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .release-popup-content {
                padding: 20px;
                width: 95%;
            }
            
            .release-main-title {
                font-size: 1.8rem;
            }
            
            .release-content-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .release-popup-overlay {
                padding-top: 70px;
            }

            .release-popup-header {
                margin: 10px 0px 20px 0px;
            }

            .release-main-title {
                font-size: 1.3rem !important;
            }
        
        }

        @media (max-width: 480px) {
            .release-popup-content {
                padding: 15px;
                width: 98%;
            }
            
            .release-main-title {
                font-size: 4vw !important;
            }
            

            

        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideIn {
            from { 
                opacity: 0;
                transform: translateY(50px) scale(0.9);
            }
            to { 
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Demo page styling (can be removed) */
        .demo-page {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-align: center;
            padding: 50px 20px;
        }

        .demo-title {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .demo-button {
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 12px 24px;
            border-radius: 25px;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .demo-button:hover {
            background: rgba(255, 255, 255, 0.3);
        }