        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            min-height: 100vh;
            color: #fff;
            font-family: 'Inter', sans-serif;
            background: #050510;
            overflow-x: hidden;
        }

        #particles {
            position: fixed;
            inset: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .smoke-bg {
            position: fixed;
            inset: 0;
            z-index: 1;
            pointer-events: none;
            background:
                radial-gradient(ellipse at 20% 30%, rgba(143, 92, 255, 0.4) 0, transparent 55%),
                radial-gradient(ellipse at 80% 70%, rgba(0, 200, 255, 0.3) 0, transparent 55%),
                radial-gradient(ellipse at 50% 50%, rgba(255, 0, 255, 0.12) 0, transparent 60%);
            animation: aurora 12s ease-in-out infinite alternate;
            filter: blur(60px) saturate(1.6) brightness(0.9);
            opacity: 0.6;
        }

        @keyframes aurora {
            0% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.1) rotate(2deg); }
            100% { transform: scale(1) rotate(-2deg); }
        }

        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 100;
            background: rgba(5, 5, 16, 0.6);
            -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(143, 92, 255, 0.15);
            padding: 18px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Orbitron', sans-serif;
            font-weight: 900;
            font-size: 1.6rem;
            letter-spacing: 6px;
            color: #fff;
            text-decoration: none;
            text-shadow: 0 0 20px rgba(143, 92, 255, 0.6), 0 0 60px rgba(143, 92, 255, 0.3);
        }

        nav {
            flex: 1;
            min-width: 0;
            display: flex;
            justify-content: flex-end;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
            justify-content: flex-end;
            align-items: center;
        }

        nav a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.4s ease;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -4px;
            width: 0;
            height: 2px;
            transform: translateX(-50%);
            background: linear-gradient(90deg, #8f5cff, #00eaff);
            transition: width 0.3s ease;
        }

        nav a:hover {
            color: #fff;
        }

        nav a:hover::after,
        nav a.active::after {
            width: 100%;
        }

        nav a.active {
            color: #fff;
        }

        .page-content {
            position: relative;
            z-index: 10;
            padding: 120px 20px 120px;
        }

        h1 {
            text-align: center;
            font-family: 'Orbitron', sans-serif;
            font-size: 2.8rem;
            letter-spacing: 12px;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #fff 0%, #8f5cff 50%, #00eaff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeSlideDown 0.8s ease forwards;
        }

        @keyframes fadeSlideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .access-status,
        .preview-notice {
            max-width: 750px;
            margin: 0 auto 18px;
            padding: 12px 16px;
            border-radius: 12px;
            font-size: 0.95rem;
            letter-spacing: 1px;
            text-align: center;
            border: 1px solid rgba(143, 92, 255, 0.3);
            background: rgba(20, 20, 40, 0.82);
            color: #d0cfff;
            box-shadow: 0 0 18px rgba(143, 92, 255, 0.08);
        }

        .access-status.on {
            border-color: rgba(0, 255, 136, 0.45);
            color: #b9ffd8;
            box-shadow: 0 0 12px rgba(0, 255, 136, 0.15);
        }

        .access-status.off {
            border-color: rgba(255, 170, 80, 0.45);
            color: #ffd9b4;
            box-shadow: 0 0 12px rgba(255, 170, 80, 0.12);
        }

        .preview-notice {
            display: none;
            font-family: 'Orbitron', sans-serif;
        }

        .preview-notice.show {
            display: block;
        }

        .preview-notice a {
            color: #00eaff;
            text-decoration: none;
            margin-left: 10px;
        }

        .preview-notice a:hover {
            text-decoration: underline;
        }

        .single-list {
            max-width: 750px;
            margin: 0 auto;
            padding: 0 0 60px;
        }

        .single-item {
            background: rgba(20, 20, 40, 0.7);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(143, 92, 255, 0.12);
            border-radius: 16px;
            margin: 16px 0;
            padding: 22px 28px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.35s ease;
            animation: cardIn 0.6s ease forwards;
            opacity: 0;
        }

        .single-item:hover {
            border-color: rgba(143, 92, 255, 0.4);
            box-shadow: 0 8px 40px rgba(143, 92, 255, 0.15);
            transform: translateY(-3px);
        }

        @keyframes cardIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .single-meta {
            display: flex;
            flex-direction: column;
            gap: 8px;
            min-width: 0;
        }

        .single-title {
            font-size: 1.1rem;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .single-price {
            font-size: 1rem;
            color: #8f5cff;
            font-weight: 700;
        }

        .single-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

        .preview-btn,
        .buy-link {
            border-radius: 10px;
            padding: 10px 18px;
            font-size: 0.95rem;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .preview-btn {
            background: rgba(255, 255, 255, 0.05);
            color: #fff;
            border: 1px solid rgba(143, 92, 255, 0.4);
        }

        .preview-btn:hover:not(:disabled) {
            background: #8f5cff;
            color: #fff;
            border-color: #8f5cff;
            box-shadow: 0 0 15px rgba(143, 92, 255, 0.3);
        }

        .preview-btn:disabled {
            opacity: 0.45;
            cursor: not-allowed;
        }

        .buy-link {
            background: linear-gradient(135deg, #8f5cff, #6b3fa0);
            color: #fff;
            border: none;
        }

        .buy-link:hover {
            background: linear-gradient(135deg, #fff, #d0cfff);
            color: #2d006e;
            box-shadow: 0 0 20px rgba(143, 92, 255, 0.4);
        }

        .loading {
            text-align: center;
            color: #8f5cff;
            margin-top: 60px;
            font-size: 1.2rem;
            letter-spacing: 2px;
        }

        .music-player-bar {
            position: fixed;
            left: 0;
            bottom: 0;
            width: 100vw;
            background: rgba(20, 20, 40, 0.92);
            border-top: 1px solid #8f5cff55;
            box-shadow: 0 -2px 24px #8f5cff22;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 12px 12px 8px;
            gap: 24px;
        }

        .music-player-bar audio {
            width: 320px;
            max-width: 80vw;
            background: transparent;
        }

        .music-player-bar .player-btn {
            background: none;
            border: none;
            outline: none;
            cursor: pointer;
            margin: 0 4px;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            filter: drop-shadow(0 0 8px #8f5cff44);
            transition: filter 0.2s ease;
        }

        .music-player-bar .player-btn:hover {
            filter: drop-shadow(0 0 16px #00eaff88);
        }

        .music-player-bar .song-title {
            color: #8f5cff;
            font-family: 'Orbitron', sans-serif;
            font-size: 1rem;
            letter-spacing: 2px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 260px;
        }

        footer {
            width: 100vw;
            text-align: center;
            padding: 18px 0 90px;
            background: #18182a;
            color: #bbb;
            font-size: 0.95rem;
            letter-spacing: 1px;
            position: relative;
            z-index: 1000;
        }

        footer a {
            color: #8f5cff;
            text-decoration: underline;
        }

        @media (max-width: 900px) {
            header {
                padding: 18px 24px;
                align-items: flex-start;
                gap: 14px;
                flex-direction: column;
            }

            nav ul {
                justify-content: center;
                gap: 16px;
            }

            .page-content {
                padding-top: 150px;
            }
        }

        @media (max-width: 700px) {
            h1 {
                font-size: 2.1rem;
                letter-spacing: 6px;
            }

            .single-item {
                flex-direction: column;
                align-items: flex-start;
            }

            .single-actions {
                width: 100%;
                justify-content: flex-start;
            }
        }

        @media (max-width: 600px) {
            .music-player-bar {
                flex-direction: column;
                gap: 8px;
                padding: 10px 0 6px;
            }

            .music-player-bar .song-title {
                max-width: 180px;
                font-size: 0.9rem;
            }
        }

        .is-hidden {
            display: none !important;
        }

        .admin-bar {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            z-index: 2000;
            background: #23234a;
            color: #fff;
            padding: 10px 0;
            text-align: center;
            font-family: 'Orbitron', sans-serif;
            font-size: 1rem;
            letter-spacing: 2px;
            box-shadow: 0 2px 16px rgba(143, 92, 255, 0.27);
        }

        .admin-bar-mode {
            color: #00ff88;
            font-weight: 700;
        }

        .admin-bar-link {
            text-decoration: underline;
        }

        .admin-bar-link-panel {
            color: #8f5cff;
        }

        .admin-bar-link-logout {
            color: #ff8888;
        }
