/* Base */
        :root {
            --bg-1: #05070A; --bg-2: #0F172A; --bg-3: #1E293B;
            --accent: #FFA500; --accent-2: #FFB347; --accent-glow: rgba(255,165,0,0.4);
            --text-1: #EFF3F8; --text-2: #CBD5E6; --text-3: #94A3B8;
            --green: #4ADE80; --red: #F87171; --blue: #60A5FA; --purple: #A855F7;
            --gold: #FFD700;
            --glass-bg: rgba(15,23,42,0.55); --glass-border: rgba(255,255,255,0.08);
            --cursor-size: 28px; --cursor-dot-size: 6px;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: 'Unbounded', sans-serif; background: var(--bg-1); color: var(--text-1); line-height: 1.5; -webkit-font-smoothing: antialiased; overflow-x: hidden; min-height: 100vh; cursor: none; }
        a, button, .product-card, .tab-pill, .icon-btn, .user-avatar, .feature-card, .feature-icon, input, select, textarea, .chat-msg, .order-card, .review-card, .ud-item, .review-mini, .stat-item, .modal-product-image, .product-image, .product-img, .btn, .chat-list-item, .sort-select, .category-select, .price-input, .form-input, .team-tab, .theme-select-wrap, .pay-method, .wallet-card, .balance-badge, .role-filter-pill, .image-upload-area, .deposit-filter-pill { cursor: none; }
        .container { max-width: 1320px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 2; }
        .glass { background: var(--glass-bg); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); border: 1px solid var(--glass-border); }

        .cursor-ring { position: fixed; top: 0; left: 0; width: var(--cursor-size); height: var(--cursor-size); border: 2px solid var(--purple); border-radius: 50%; pointer-events: none; z-index: 99999; transform: translate(-50%, -50%); transition: width 0.2s, height 0.2s, background 0.2s, border-color 0.2s, opacity 0.2s; box-shadow: 0 0 20px rgba(168, 85, 247, 0.5); opacity: 1; }
        .cursor-dot { position: fixed; top: 0; left: 0; width: var(--cursor-dot-size); height: var(--cursor-dot-size); background: var(--accent); border-radius: 50%; pointer-events: none; z-index: 99999; transform: translate(-50%, -50%); box-shadow: 0 0 10px var(--accent); transition: transform 0.2s, opacity 0.2s; opacity: 1; }
        .cursor-ring.hover { width: 50px; height: 50px; background: rgba(168, 85, 247, 0.15); border-color: var(--accent); }
        .cursor-dot.hover { transform: translate(-50%, -50%) scale(0.5); }
        .cursor-ring.click { width: 20px; height: 20px; }
        .cursor-hidden { opacity: 0 !important; }
        @media (max-width: 768px) { body, a, button, .product-card, .tab-pill, .icon-btn, .user-avatar, .feature-card, .feature-icon, input, select, textarea, .chat-msg, .order-card, .review-card, .ud-item, .review-mini, .stat-item, .modal-product-image, .product-image, .product-img, .btn, .chat-list-item, .sort-select, .category-select, .price-input, .form-input { cursor: auto; } .cursor-ring, .cursor-dot { display: none; } }

        .site-bg { position: fixed; inset: 0; z-index: -3; background: radial-gradient(circle at 20% 20%, rgba(255,165,0,0.12), transparent 50%), radial-gradient(circle at 80% 70%, rgba(168,85,247,0.10), transparent 50%), radial-gradient(circle at 50% 50%, #0F172A, #020408); }
        .grid-bg { position: fixed; inset: 0; z-index: -2; background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%); }
        .noise { position: fixed; inset: 0; z-index: -1; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E"); pointer-events: none; }
        .floating-particles { position: fixed; inset: 0; pointer-events: none; z-index: -1; overflow: hidden; }
        .particle { position: absolute; background: var(--accent); border-radius: 50%; filter: blur(1px); animation: floatP 25s infinite linear; }
        @keyframes floatP { 0% { transform: translateY(100vh); opacity: 0; } 10% { opacity: 0.6; } 90% { opacity: 0.6; } 100% { transform: translateY(-20vh); opacity: 0; } }
        @keyframes logoP { 50% { box-shadow: 0 0 35px var(--accent-glow); } }
        @keyframes bounce { 50% { transform: scale(1.15); } }
        @keyframes blink { 50% { opacity: 0.4; } }