Redirecting…

If you aren’t redirected, open the store section.

.nav-menu li { display: flex; align-items: center; } .nav-menu li a { position: relative; font-size: 1.05rem; font-weight: 500; text-decoration: none; color: #e2e8f0; transition: all 0.3s ease; padding: 0.5rem 1rem; } .nav-menu li a::after { content: ""; position: absolute; bottom: -6px; left: 0; width: 0%; height: 2px; background: #00ff88; box-shadow: 0 0 6px #00ff88; transition: 0.3s ease-in-out; } .nav-menu li a:hover { color: #00ff88; text-shadow: 0 0 10px #00ff88; } .nav-menu li a:hover::after { width: 100%; } .nav-menu li a.active { color: #00ff88; text-shadow: 0 0 10px #00ff88; } .nav-menu li a.active::after { width: 100%; } /* Action Buttons */ .nav-buttons { display: flex; flex-direction: row; gap: 1rem; align-items: center; flex-shrink: 0; } .btn-login, .btn-funded { padding: 0.5rem 1.5rem; border-radius: 30px; font-weight: 600; font-size: 1rem; text-decoration: none; cursor: pointer; transition: all 0.3s ease; border: none; } .btn-login { background: transparent; color: #e2e8f0; border: 1px solid rgba(0, 255, 136, 0.3); } .btn-login:hover { background: rgba(0, 255, 136, 0.1); color: #00ff88; border-color: #00ff88; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3); } .btn-funded { background: #00ff88; color: #000000; box-shadow: 0 0 15px rgba(0, 255, 136, 0.5); } .btn-funded:hover { background: #00cc6a; box-shadow: 0 0 25px rgba(0, 255, 136, 0.8); transform: translateY(-2px); } /* Language Switcher */ /* Search Bar */ .navbar-search { display: flex; align-items: center; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(0, 255, 136, 0.3); border-radius: 25px; padding: 0.5rem 1rem; backdrop-filter: blur(10px); margin-right: 1rem; min-width: 250px; height: 40px; box-sizing: border-box; transition: all 0.3s ease; flex-shrink: 0; } .search-input { background: none; border: none; color: #ffffff; outline: none; padding: 0.5rem; width: 100%; font-family: 'Exo 2', sans-serif; } .search-input::placeholder { color: rgba(255, 255, 255, 0.6); } .search-btn { background: none; border: none; color: #00ff88; cursor: pointer; padding: 0.2rem; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; } .search-btn:hover { color: #ffffff; transform: scale(1.1); } /* Hamburger Menu */ .hamburger-menu { display: none; flex-direction: column; justify-content: space-around; width: 30px; height: 30px; background: transparent; border: none; cursor: pointer; padding: 0; z-index: 1001; } .hamburger-menu span { width: 100%; height: 3px; background: #00ff88; border-radius: 2px; transition: all 0.3s ease; box-shadow: 0 0 5px rgba(0, 255, 136, 0.5); display: block; } .hamburger-menu.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); } .hamburger-menu.active span:nth-child(2) { opacity: 0; } .hamburger-menu.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); } /* Mobile-only elements */ .mobile-search, .mobile-buttons { display: none !important; } /* Mobile Responsive */ @media (max-width: 880px) { body { padding-top: 60px !important; } .navbar { position: fixed !important; top: 0 !important; left: 0 !important; right: 0 !important; width: 100% !important; padding: 0.8rem 1rem !important; display: flex !important; align-items: center !important; justify-content: space-between !important; z-index: 1000 !important; background: rgba(0, 0, 0, 0.95) !important; backdrop-filter: blur(20px) !important; margin-bottom: 0 !important; min-height: 60px !important; box-sizing: border-box !important; } .navbar-logo { margin-right: auto !important; margin-left: 0 !important; margin-top: 8px !important; margin-bottom: 0 !important; flex-shrink: 0; z-index: 1002; display: flex !important; align-items: center !important; align-self: center !important; padding: 0 !important; } .navbar-logo img { height: 30px !important; width: auto !important; display: block !important; margin: 0 !important; padding: 0 !important; } .hamburger-menu { display: flex !important; visibility: visible !important; opacity: 1 !important; position: relative !important; z-index: 1002 !important; margin-left: auto !important; margin-right: 0 !important; margin-top: 0 !important; margin-bottom: 0 !important; order: 3 !important; align-self: center !important; padding: 0 !important; } .navbar-search, .nav-buttons { display: none !important; } .nav-menu { position: fixed; top: 0; left: -100%; width: 80%; height: 100vh; background: rgba(0, 0, 0, 0.95); backdrop-filter: blur(20px); flex-direction: column; justify-content: flex-start; align-items: center; padding-top: 80px; transition: left 0.3s ease; z-index: 1000; border-right: 1px solid rgba(0, 255, 136, 0.3); } .nav-menu.active { left: 0; } .nav-menu.active .mobile-search, .nav-menu.active .mobile-buttons { display: block !important; width: 100%; margin: 1.5rem 0; padding: 0; list-style: none; opacity: 1 !important; visibility: visible !important; background: rgba(0, 255, 136, 0.05) !important; border: 1px solid rgba(0, 255, 136, 0.2) !important; border-radius: 10px !important; } .mobile-search .navbar-search { width: 100%; max-width: none; margin: 0; padding: 1rem; height: auto; min-height: 50px; border-radius: 8px; background: rgba(255, 255, 255, 0.1) !important; border: 1px solid #333333 !important; display: flex !important; align-items: center !important; gap: 0.5rem !important; } .mobile-search .search-input { font-size: 1rem; padding: 0.5rem; width: 100%; background: rgba(0, 0, 0, 0.3) !important; border: 1px solid #555555 !important; color: white !important; border-radius: 4px !important; } .mobile-search .search-btn { background: #00ff88 !important; border: 1px solid #00ff88 !important; border-radius: 4px !important; padding: 0.5rem !important; color: #000000 !important; } .mobile-buttons .nav-buttons { display: flex; justify-content: center; gap: 1rem; width: 100%; flex-wrap: wrap; padding: 1rem; background: rgba(255, 255, 255, 0.1) !important; border: 1px solid #333333 !important; border-radius: 8px !important; } .mobile-buttons .btn-login, .mobile-buttons .btn-funded { padding: 1rem 1.5rem; font-size: 1rem; min-width: 130px; border-radius: 8px; background: #00ff88 !important; border: 1px solid #00ff88 !important; color: #000000 !important; text-decoration: none !important; display: inline-block !important; text-align: center !important; font-weight: bold !important; opacity: 1 !important; visibility: visible !important; margin: 0.5rem !important; } .mobile-buttons .btn-login:hover, .mobile-buttons .btn-funded:hover { background: #00cc6a !important; } } /* Hero Section */ .hero { padding: 0 0 60px; text-align: center; background: linear-gradient(135deg, #000000 0%, #050505 25%, #000000 50%, #050505 75%, #000000 100%); position: relative; overflow: hidden; } .hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: radial-gradient(circle at 20% 80%, rgba(0, 255, 136, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(0, 255, 136, 0.08) 0%, transparent 50%), radial-gradient(circle at 40% 40%, rgba(0, 255, 136, 0.05) 0%, transparent 50%); animation: backgroundShift 8s ease-in-out infinite; } .particles { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; } .particle { position: absolute; width: 2px; height: 2px; background: #00ff88; border-radius: 50%; animation: float 6s ease-in-out infinite; } .particle:nth-child(1) { left: 10%; animation-delay: 0s; } .particle:nth-child(2) { left: 20%; animation-delay: 1s; } .particle:nth-child(3) { left: 30%; animation-delay: 2s; } .particle:nth-child(4) { left: 40%; animation-delay: 3s; } .particle:nth-child(5) { left: 50%; animation-delay: 4s; } .particle:nth-child(6) { left: 60%; animation-delay: 5s; } .particle:nth-child(7) { left: 70%; animation-delay: 0.5s; } .particle:nth-child(8) { left: 80%; animation-delay: 1.5s; } .particle:nth-child(9) { left: 90%; animation-delay: 2.5s; } .particle:nth-child(10) { left: 15%; animation-delay: 3.5s; } .floating-shapes { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; } .shape { position: absolute; opacity: 0.1; animation: floatShape 10s ease-in-out infinite; } .shape:nth-child(1) { width: 60px; height: 60px; background: linear-gradient(45deg, #00ff88, transparent); border-radius: 50%; top: 20%; left: 10%; animation-delay: 0s; } .shape:nth-child(2) { width: 40px; height: 40px; background: linear-gradient(45deg, transparent, #00ff88); border-radius: 20%; top: 60%; right: 15%; animation-delay: 2s; } .shape:nth-child(3) { width: 80px; height: 80px; background: linear-gradient(45deg, #00ff88, transparent); border-radius: 30%; bottom: 20%; left: 20%; animation-delay: 4s; } .shape:nth-child(4) { width: 50px; height: 50px; background: linear-gradient(45deg, transparent, #00ff88); border-radius: 50%; top: 30%; right: 30%; animation-delay: 6s; } .hero-content { max-width: 800px; margin: 0 auto; padding: 3rem 2rem 0; position: relative; z-index: 2; opacity: 0; transform: translateY(30px); animation: slideInUp 0.8s ease-out 0.3s forwards; } .hero-title { font-size: 4rem; font-weight: 900; margin-bottom: 1.5rem; background: linear-gradient(135deg, #00ff88, #00cc6a, #00ff88); background-size: 200% 200%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-shadow: 0 0 40px rgba(0, 255, 136, 0.6); animation: gradientShift 3s ease-in-out infinite; position: relative; } .hero-title::after { content: ''; position: absolute; top: -10px; left: -20px; right: -20px; bottom: -10px; background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 255, 136, 0.05)); border-radius: 20px; z-index: -1; animation: pulse 2s ease-in-out infinite; } .hero-subtitle { font-size: 1.8rem; font-weight: 400; color: #ffffff; margin-bottom: 2rem; text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); animation: fadeInUp 0.8s ease-out 0.5s both; } .hero-description { font-size: 1.2rem; color: rgba(255, 255, 255, 0.9); line-height: 1.8; margin-bottom: 3rem; animation: fadeInUp 0.8s ease-out 0.7s both; } /* Stats Text */ .stats-text { text-align: center; color: #00ff88; font-size: 1rem; font-weight: 400; padding: 1rem 0; margin: -4rem 0 0 0; letter-spacing: 2px; font-family: 'Courier New', monospace; background: rgba(0, 0, 0, 0.8); border-top: 1px solid #00ff88; border-bottom: 1px solid #00ff88; position: relative; overflow: hidden; z-index: 10; } .stats-text::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent); animation: digitalScan 3s linear infinite; } .stats-text::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: repeating-linear-gradient( 0deg, transparent, transparent 2px, rgba(0, 255, 136, 0.03) 2px, rgba(0, 255, 136, 0.03) 4px ); pointer-events: none; } @keyframes digitalScan { 0% { left: -100%; } 100% { left: 100%; } } /* Products Section */ .products { padding: 4rem 0; background: linear-gradient(135deg, #000000 0%, #050505 25%, #000000 50%, #050505 75%, #000000 100%); position: relative; overflow: hidden; } .products::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 20% 80%, rgba(0, 255, 136, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(0, 255, 136, 0.1) 0%, transparent 50%); pointer-events: none; } .products-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 2; } .products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; margin-top: 3rem; } .product-card { --border-radius: 1rem; --bg-color: rgba(12, 12, 16, 0.4); --color: #00ff88; /* Dynamic color */ position: relative; background: var(--bg-color); backdrop-filter: blur(20px); border-radius: var(--border-radius); overflow: hidden; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer; isolation: isolate; box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); opacity: 0; transform: translateY(30px); animation: slideInUp 0.6s ease-out forwards; width: 100%; height: 500px; display: flex; flex-direction: column; content-visibility: auto; contain-intrinsic-size: 500px; } .product-card:nth-child(1) { animation-delay: 0.1s; } .product-card:nth-child(2) { animation-delay: 0.2s; } .product-card:nth-child(3) { animation-delay: 0.3s; } .product-card:nth-child(4) { animation-delay: 0.4s; } .product-card:nth-child(5) { animation-delay: 0.5s; } .product-card:nth-child(6) { animation-delay: 0.6s; } .product-card::before { content: ''; position: absolute; width: 200%; height: 200%; background-image: conic-gradient(var(--color) 0deg, transparent 60deg, transparent 180deg, var(--color) 180deg, transparent 240deg); inset: -50%; z-index: -2; animation: borderanimation 4s linear infinite; } .product-card:hover::before { animation-play-state: paused; } @keyframes borderanimation { to { transform: rotate(-360deg); } } .product-card::after { content: ''; position: absolute; --inset: 4px; background: #000000; inset: var(--inset); border-radius: calc(var(--border-radius) - var(--inset)); z-index: -1; transition: all 0.3s linear; box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8); } .product-card:hover::after { background: var(--bg-color); } .product-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 255, 136, 0.2); } .product-image { height: auto; min-height: 250px; background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)); display: flex; align-items: center; justify-content: center; font-size: 3rem; color: rgba(0, 255, 136, 0.6); overflow: hidden; position: relative; border-radius: 15px 15px 0 0; padding: 1rem; } .product-image::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: radial-gradient(2px 2px at 20px 30px, var(--color), transparent), radial-gradient(2px 2px at 40px 70px, var(--color), transparent), radial-gradient(1px 1px at 90px 40px, var(--color), transparent), radial-gradient(1px 1px at 130px 80px, var(--color), transparent), radial-gradient(2px 2px at 160px 30px, var(--color), transparent), radial-gradient(1px 1px at 60px 20px, var(--color), transparent), radial-gradient(3px 3px at 120px 50px, var(--color), transparent), radial-gradient(1px 1px at 180px 90px, var(--color), transparent), radial-gradient(2px 2px at 10px 100px, var(--color), transparent), radial-gradient(1px 1px at 150px 10px, var(--color), transparent); background-repeat: repeat; background-size: 200px 100px; opacity: 0.5; z-index: 0; } .product-image::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: radial-gradient(1px 1px at 35px 45px, var(--color), transparent), radial-gradient(2px 2px at 75px 25px, var(--color), transparent), radial-gradient(1px 1px at 110px 65px, var(--color), transparent), radial-gradient(1px 1px at 145px 35px, var(--color), transparent), radial-gradient(2px 2px at 25px 85px, var(--color), transparent), radial-gradient(1px 1px at 85px 95px, var(--color), transparent), radial-gradient(3px 3px at 165px 15px, var(--color), transparent), radial-gradient(1px 1px at 50px 55px, var(--color), transparent); background-repeat: repeat; background-size: 200px 100px; opacity: 0.3; z-index: 0; } @keyframes particleFloat { 0% { transform: translateY(0px); } 100% { transform: translateY(-100px); } } @keyframes particleTwinkle { 0%, 100% { opacity: 0.3; } 50% { opacity: 0.8; } } .product-image::before { animation: particleFloat 8s linear infinite, particleTwinkle 3s ease-in-out infinite; } .product-image::after { animation: particleFloat 12s linear infinite reverse, particleTwinkle 4s ease-in-out infinite; } .product-image img { width: 100%; height: auto; max-width: 300px; max-height: 300px; object-fit: contain; transition: transform 0.3s ease; border-radius: 12px; filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.1)); position: relative; z-index: 1; } .product-card:hover .product-image img { transform: scale(1.03); filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.2)); } .product-content { padding: 1rem; flex: 1; display: flex; flex-direction: column; justify-content: space-between; min-height: 200px; background: rgba(0, 0, 0, 0.3); border-radius: 0 0 15px 15px; box-shadow: 0 -2px 8px var(--color); } .product-title { font-size: 1.5rem; font-weight: 700; color: #ffffff; margin-bottom: 1rem; font-family: 'Exo 2', sans-serif; } .product-description { color: rgba(255, 255, 255, 0.8); margin-bottom: 0.75rem; line-height: 1.6; } .product-price { font-size: 1.8rem; font-weight: 900; color: var(--color); margin-top: 0.5rem; margin-bottom: 1.5rem; text-shadow: 0 0 10px var(--color); } .product-button { width: 100%; padding: 1rem 2rem; background: var(--color); color: #000000; border: none; border-radius: 12px; font-size: 1.1rem; font-weight: 700; cursor: pointer; transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 1px; display: flex; align-items: center; justify-content: center; text-align: center; line-height: 1; height: 50px; box-sizing: border-box; } .product-button:hover { background: var(--color); opacity: 0.8; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4); } /* Buttons that need white text for better contrast */ .product-card[style*="#3742fa"] .product-button { color: #ffffff; display: flex; align-items: center; justify-content: center; text-align: center; line-height: 1; } /* Silver button with black text for better contrast */ .product-card[style*="#a4b0be"] .product-button { color: #000000; display: flex; align-items: center; justify-content: center; text-align: center; line-height: 1; } .product-card[style*="#a4b0be"] .product-button:hover, .product-card[style*="#3742fa"] .product-button:hover { background: var(--color); opacity: 0.8; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4); } @keyframes slideInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } @keyframes gradientShift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } } @keyframes pulse { 0%, 100% { opacity: 0.3; transform: scale(1); } 50% { opacity: 0.6; transform: scale(1.02); } } @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } @keyframes backgroundShift { 0%, 100% { transform: translateX(0) translateY(0); } 25% { transform: translateX(-10px) translateY(-5px); } 50% { transform: translateX(10px) translateY(5px); } 75% { transform: translateX(-5px) translateY(10px); } } @keyframes float { 0%, 100% { transform: translateY(0px) scale(1); opacity: 0.3; } 50% { transform: translateY(-20px) scale(1.2); opacity: 1; } } @keyframes floatShape { 0%, 100% { transform: translateY(0px) rotate(0deg); } 25% { transform: translateY(-15px) rotate(90deg); } 50% { transform: translateY(-30px) rotate(180deg); } 75% { transform: translateY(-15px) rotate(270deg); } } /* Mobile Responsive */ @media (max-width: 768px) { .stats-container { flex-direction: column; gap: 1rem; } .product-image { height: auto; min-height: 220px; padding: 1rem; } .product-image img { width: 100%; height: auto; max-width: 300px; max-height: 300px; object-fit: contain; } .stat-number { font-size: 2rem; } .stat-label { font-size: 0.9rem; } .navbar-container { flex-wrap: wrap; } .nav-menu { display: none; width: 100%; flex-direction: column; background: rgba(0, 0, 0, 0.95); position: absolute; top: 100%; left: 0; padding: 1rem 2rem; border-top: 1px solid rgba(0, 255, 136, 0.2); } .nav-menu.active { display: flex; } .nav-menu li { margin: 0.5rem 0; } .navbar-search { display: none !important; } .mobile-search { display: block; } .hamburger-menu { display: flex; } .hero-title { font-size: 2.5rem; } .hero-subtitle { font-size: 1.2rem; } .products-grid { grid-template-columns: 1fr; gap: 1.5rem; } .nav-buttons { gap: 0.5rem; } .btn-login, .btn-funded { padding: 0.4rem 0.8rem; font-size: 0.9rem; } padding: 0.4rem 0.8rem; font-size: 0.9rem; } } @media (max-width: 480px) { .navbar-container { padding: 0 1rem; } .hero { padding: 100px 0 40px; } .hero-title { font-size: 2rem; } .products-container { padding: 0 1rem; } .product-image { height: auto; min-height: 200px; padding: 0.75rem; } .product-image img { width: 100%; height: auto; max-width: 280px; max-height: 280px; object-fit: contain; margin: 0 auto; } .product-content { padding: 1.5rem; } .product-button { min-height: 44px; /* Touch target */ padding: 0.75rem 1.5rem; font-size: 1rem; } .btn-login, .btn-funded { min-height: 44px; min-width: 44px; padding: 0.5rem 0.8rem; } /* Prevent iOS zoom on input focus */ body { font-size: 16px; } input, textarea, select { font-size: 16px; } } @media (max-width: 375px) { .hero-title { font-size: 1.75rem; } .hero-subtitle { font-size: 1rem; } } /* PWA Step 3 - Mobile UX */ .mobile-bottom-nav { display: none; } @media (max-width: 768px) { :root { --pwa-bottom-nav-h: 64px; } html, body { overscroll-behavior-y: none; /* Reduce pull-to-refresh bounce */ } body { padding-bottom: calc(var(--pwa-bottom-nav-h) + env(safe-area-inset-bottom)); -webkit-tap-highlight-color: transparent; } a, button, input, select, textarea { -webkit-tap-highlight-color: transparent; /* Remove tap highlight */ min-height: 44px; } /* Mobile bottom navigation */ .mobile-bottom-nav { display: flex; position: fixed; left: 0; right: 0; bottom: 0; height: calc(var(--pwa-bottom-nav-h) + env(safe-area-inset-bottom)); padding: 10px 10px calc(10px + env(safe-area-inset-bottom)); gap: 8px; z-index: 1000; background: rgba(0, 0, 0, 0.92); border-top: 1px solid rgba(0, 255, 136, 0.20); backdrop-filter: blur(16px); } .mobile-bottom-nav a { flex: 1; display: flex; align-items: center; justify-content: center; min-height: 44px; border-radius: 14px; text-decoration: none; color: rgba(255, 255, 255, 0.86); background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(0, 255, 136, 0.14); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.02em; } .mobile-bottom-nav a:active { transform: translateY(1px); border-color: rgba(0, 255, 136, 0.35); background: rgba(0, 255, 136, 0.10); } } /* Performance: reduce expensive effects on mobile/low-power */ @media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; animation: none !important; transition-duration: 0s !important; } body { opacity: 1 !important; transform: none !important; } } html.perf-lite body { animation: none !important; opacity: 1 !important; transform: none !important; } html.perf-lite .navbar { backdrop-filter: none !important; } html.perf-lite .product-card::before, html.perf-lite .product-image::before, html.perf-lite .product-image::after, html.perf-lite .hero::before, html.perf-lite .stats-text::before, html.perf-lite .hero-title, html.perf-lite .hero-title::after, html.perf-lite .shape, html.perf-lite .particle { animation: none !important; } @media (max-width: 768px) { .navbar { backdrop-filter: none !important; } .product-card::before, .product-image::before, .product-image::after, .hero::before, .stats-text::before, .hero-title, .hero-title::after, .shape, .particle { animation: none !important; } .product-card { box-shadow: 0 0 14px rgba(0, 0, 0, 0.55); } }

Premium Products

Transform Your Gaming Experience

Choose from our exclusive collection of premium digital products

Alchemy Premium 60 Days

Alchemy Premium 60 Days

Extended premium access for 60 days with exclusive benefits and priority support.

$5.99
Alchemy Premium 90 Days

Alchemy Premium 90 Days

Extended premium access for 90 days with maximum benefits.

$7.99
Alchemy Premium Lifetime

Alchemy Premium Lifetime

Lifetime access to all premium features with unlimited updates and support.

$11.99
Alchemy Rivals 7 Days

Alchemy Rivals 7 Days

Short-term Rivals access with competitive features for 7 days.

$4.59
Alchemy Rivals 30 Days

Alchemy Rivals 30 Days

Special Rivals edition with exclusive features and competitive advantages.

$9.99
Alchemy Reset Token

Alchemy Reset Token

Reset your progress and start fresh with this powerful reset token.

$0.99
Alchemy Premium 30 Days

Alchemy Premium 30 Days

Unlock premium features for 30 days with full access to all tools and resources.

$3.99