    <style>
        :root {
            --primary: #9333ea;
            --primary-dark: #7c3aed;
            --secondary: #06b6d4;
            --accent: #f59e0b;
            --warning: #f59e0b;
            --dark: #0f0817;
            --dark-light: #1a0f2e;
            --gray: #9ca3af;
            --light: #f3f4f6;
            --white: #ffffff;
            --success: #10b981;
            --danger: #ef4444;
        }
        
        /* Animated background */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(147, 51, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(124, 58, 237, 0.05) 0%, transparent 50%);
            animation: float 20s ease-in-out infinite;
            pointer-events: none;
            z-index: -1;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(-20px, -20px) scale(1.05); }
            66% { transform: translate(20px, -10px) scale(0.95); }
        }

        /* Container */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .text-center {
            text-align: center;
        }

        .gradient-text {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Sections */
        .section {
            padding: 4rem 0;
        }

        /* Hero section enhanced */
        .hero {
            padding: 6rem 2rem;
            position: relative;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 900;
            line-height: 1.1;
        }

        .hero-features {
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
            margin-top: 3rem;
        }

        .hero-feature {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--gray);
            font-size: 0.95rem;
        }

        .hero-feature svg {
            width: 20px;
            height: 20px;
            color: var(--primary);
        }

        /* Frequency categories */
        .frequency-categories {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            padding: 0 2rem 4rem;
        }

        .freq-category {
            padding: 0.75rem 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .freq-category:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .freq-category.active {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-color: transparent;
            color: var(--white);
        }

        .freq-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: currentColor;
        }

        .freq-category.delta { color: #4c1d95; }
        .freq-category.theta { color: #7c3aed; }
        .freq-category.alpha { color: #06b6d4; }
        .freq-category.beta { color: #10b981; }
        .freq-category.gamma { color: #f59e0b; }

        /* Search bar */
        .search-container {
            max-width: 600px;
            margin: 0 auto 3rem;
            padding: 0 2rem;
            position: relative;
        }

        .search-bar {
            width: 100%;
            padding: 1rem 3rem 1rem 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(147, 51, 234, 0.2);
            border-radius: 50px;
            color: var(--white);
            font-size: 1rem;
            transition: all 0.3s;
        }

        .search-bar:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 20px rgba(147, 51, 234, 0.2);
        }

        .search-bar::placeholder {
            color: var(--gray);
        }

        .search-icon {
            position: absolute;
            right: 3rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray);
        }

        /* Tracks grid */
        .tracks-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Track cards with gradient backgrounds */
        .track-card {
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s;
            position: relative;
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(147, 51, 234, 0.1);
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
            from {
                opacity: 0;
                transform: translateY(20px);
            }
        }

        .track-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: var(--primary);
        }

        /* Track cover */
        .track-cover {
            position: relative;
            padding-bottom: 60%;
            overflow: hidden;
        }

        .track-cover canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .frequency-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: rgba(15, 8, 23, 0.9);
            backdrop-filter: blur(10px);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: white;
        }

        .play-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
            cursor: pointer;
        }

        .track-card:hover .play-overlay {
            opacity: 1;
        }

        .play-btn {
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .play-btn:hover {
            transform: scale(1.1);
            background: var(--white);
        }

        .play-btn::after {
            content: '▶';
            font-size: 1.75rem;
            color: var(--primary);
            margin-left: 4px;
        }

        /* Color gradients for each frequency type */
        .track-card.delta .track-cover {
            background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 100%);
        }

        .track-card.theta .track-cover {
            background: linear-gradient(135deg, #7c3aed 0%, #9333ea 100%);
        }

        .track-card.alpha .track-cover {
            background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
        }

        .track-card.beta .track-cover {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        }

        .track-card.gamma .track-cover {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
        }

        /* Track content */
        .track-content, .track-info {
            padding: 1.5rem;
        }

        .track-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1rem;
        }

        .track-badge {
            background: rgba(0, 0, 0, 0.2);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .track-title {
            font-size: 1.35rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--white);
        }

        .track-subtitle, .track-description {
            font-size: 0.9rem;
            opacity: 0.9;
            margin-bottom: 1.5rem;
            line-height: 1.6;
            color: var(--gray);
        }

        .track-meta {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }

        .meta-tag {
            padding: 0.35rem 0.85rem;
            background: rgba(147, 51, 234, 0.1);
            border: 1px solid rgba(147, 51, 234, 0.2);
            border-radius: 50px;
            font-size: 0.85rem;
            color: var(--primary);
        }

        .track-benefits {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
            color: var(--gray);
        }

        .benefit-item svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
            color: var(--success);
        }

        /* Pricing tiers */
        .pricing-tiers {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .tier-option {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem;
            margin-bottom: 0.5rem;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .tier-option:hover {
            background: rgba(147, 51, 234, 0.1);
            border-color: var(--primary);
        }

        .tier-option.selected {
            background: rgba(147, 51, 234, 0.2);
            border-color: var(--primary);
        }

        .tier-info {
            flex: 1;
        }

        .tier-name {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--white);
            margin-bottom: 0.25rem;
        }

        .tier-details {
            font-size: 0.8rem;
            opacity: 0.8;
            color: var(--gray);
        }

        .tier-price {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary);
        }

        /* Track actions */
        .track-actions {
            display: flex;
            gap: 0.75rem;
        }

        .btn {
            padding: 0.85rem 1.75rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-size: 0.95rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            flex: 1;
            box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(147, 51, 234, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            flex: 1;
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: var(--white);
        }

        /* Special pack card */
        .pack-card {
            grid-column: 1 / -1;
            background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
            border: 2px solid var(--primary);
            padding: 3rem;
            border-radius: 24px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .pack-card::before {
            content: attr(data-offer);
            position: absolute;
            top: 20px;
            right: -40px;
            background: var(--warning);
            color: var(--white);
            padding: 0.5rem 3rem;
            transform: rotate(45deg);
            font-weight: 700;
            font-size: 0.85rem;
        }

        .pack-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .pack-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }

        .pack-feature {
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .pack-price {
            font-size: 3rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 0.5rem;
        }

        .pack-price .original {
            text-decoration: line-through;
            color: var(--gray);
            font-size: 1.5rem;
            margin-right: 1rem;
        }

        /* Audio player */
        .audio-player {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(15, 8, 23, 0.98);
            backdrop-filter: blur(20px);
            border-top: 1px solid rgba(147, 51, 234, 0.2);
            padding: 1.25rem 2rem;
            transform: translateY(100%);
            transition: transform 0.3s;
            z-index: 1000;
        }

        .audio-player.active {
            transform: translateY(0);
        }

        /* Footer Styles from Original */
        footer {
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 2rem;
            border-top: 1px solid rgba(147, 51, 234, 0.1);
            margin-top: 5rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-brand, .footer-section {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-logo svg {
            width: 30px;
            height: 30px;
        }

        .footer-description {
            color: var(--gray);
            line-height: 1.6;
        }

        .footer-section h4, .footer-column h4 {
            color: var(--white);
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .footer-section ul, .footer-links {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            list-style: none;
        }

        .footer-section a, .footer-links a {
            color: var(--gray);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section a:hover, .footer-links a:hover {
            color: var(--primary);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray);
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .social-link:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-2px);
            border-color: var(--primary);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--gray);
        }

        /* Modal */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.85);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            padding: 2rem;
            backdrop-filter: blur(10px);
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: var(--dark-light);
            border-radius: 24px;
            max-width: 500px;
            width: 100%;
            padding: 2.5rem;
            position: relative;
            animation: slideIn 0.3s ease-out;
            border: 1px solid rgba(147, 51, 234, 0.2);
        }

        @keyframes slideIn {
            from {
                transform: translateY(-20px) scale(0.95);
                opacity: 0;
            }
            to {
                transform: translateY(0) scale(1);
                opacity: 1;
            }
        }

        .modal-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            width: 35px;
            height: 35px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--white);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            font-size: 1.2rem;
        }

        .modal-close:hover {
            background: var(--danger);
            border-color: var(--danger);
        }

        .modal h2 {
            margin-bottom: 1rem;
            font-size: 1.75rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .modal-description {
            color: var(--gray);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--gray);
            font-size: 0.95rem;
        }

        .form-input {
            width: 100%;
            padding: 0.85rem 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: var(--white);
            font-size: 1rem;
            transition: all 0.3s;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 20px rgba(147, 51, 234, 0.2);
        }

        /* Loading and Toast styles */
        .loading {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 3000;
        }

        .loading.active {
            display: block;
        }

        .spinner {
            width: 50px;
            height: 50px;
            border: 3px solid rgba(147, 51, 234, 0.1);
            border-top-color: var(--primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .toast {
            position: fixed;
            bottom: 100px;
            right: 20px;
            background: var(--dark-light);
            color: var(--white);
            padding: 1rem 1.5rem;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transform: translateX(400px);
            transition: transform 0.3s;
            z-index: 3000;
            display: flex;
            align-items: center;
            gap: 1rem;
            border: 1px solid rgba(147, 51, 234, 0.2);
        }

        .toast.show {
            transform: translateX(0);
        }

        .toast-icon {
            font-size: 1.2rem;
        }

        .toast-message {
            flex: 1;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .tracks-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .social-links {
                justify-content: center;
            }

            .player-content {
                flex-direction: column;
                gap: 1rem;
            }

            .player-track-info {
                width: 100%;
            }

            .progress-container {
                width: 100%;
            }

            .volume-control {
                display: none;
            }

            .frequency-categories {
                overflow-x: auto;
                justify-content: flex-start;
                padding-bottom: 1rem;
            }
        }
    </style>
	
	<style>
    @media screen and (max-width: 768px) {
        .mobile-menu-btn {
            display: block !important;
            position: relative !important;
            z-index: 1003 !important;
        }
        
        .nav-links {
            position: fixed !important;
            top: 0 !important;
            right: -100% !important;
            width: 80% !important;
            max-width: 400px !important;
            height: 100vh !important;
            background: rgba(15, 8, 23, 0.98) !important;
            backdrop-filter: blur(20px) !important;
            -webkit-backdrop-filter: blur(20px) !important;
            display: flex !important;
            flex-direction: column !important;
            align-items: flex-start !important;
            padding: 5rem 2rem !important;
            transition: right 0.3s ease-in-out !important;
            z-index: 1002 !important;
            overflow-y: auto !important;
            box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5) !important;
        }
        
        .nav-links.mobile-active {
            right: 0 !important;
        }
        
        .nav-links a {
            width: 100% !important;
            padding: 1rem 0 !important;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
            font-size: 1.1rem !important;
            color: #9ca3af !important;
            text-decoration: none !important;
            display: block !important;
        }
        
        .nav-links a:hover,
        .nav-links a.active {
            color: #ffffff !important;
        }
        
        .language-selector {
            width: 100% !important;
            margin: 1rem 0 !important;
            order: 10 !important;
        }
        
        .language-btn {
            width: 100% !important;
            justify-content: center !important;
            display: flex !important;
        }
        
        .cart-btn {
            width: 100% !important;
            justify-content: center !important;
            margin: 1rem 0 !important;
            order: 9 !important;
            display: flex !important;
        }
    }
</style>