* { margin: 0; padding: 0; box-sizing: border-box; font-family: "Poppins", sans-serif; } body { background-color: #0e6cc4; overflow: hidden !important; } canvas { display: block; } body { overflow-y: scroll; scrollbar-width: none; } .element::-webkit-scrollbar { display: none; } .element { scrollbar-width: none; } .element { -ms-overflow-style: none; } body { overflow-y: scroll; } .scroll-hidden { overflow-y: scroll; scrollbar-width: none; } .scroll-hidden::-webkit-scrollbar { display: none; } body::-webkit-scrollbar { display: none; } .card-body { overflow-y: scroll; max-height: 400px; scrollbar-width: none; } .card-body::-webkit-scrollbar { display: none; } #payment-instructions { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: #f5f5dc; display: flex; justify-content: center; align-items: center; opacity: 0; z-index: 9999; transition: opacity 1s ease; } .instructions-box { text-align: center; font-family: Arial, sans-serif; transform: scale(0.95); transition: transform 0.8s ease, opacity 0.8s ease; opacity: 0; } .instructions-box h2 { margin: 10px 0; font-size: 22px; font-weight: normal; } #payment-instructions.show { opacity: 1; } #payment-instructions.show .instructions-box { transform: scale(1); opacity: 1; } #payment-instructions.hide { opacity: 0; } #payment-instructions.hide .instructions-box { transform: scale(0.95); opacity: 0; } .profile-card-img { position: absolute; top: -61px; left: 50%; transform: translateX(-50%); } .profile-card-img img { width: 120px; height: 120px; border-radius: 50%; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); } .box { position: fixed; top: 0; transform: rotate(80deg); left: 0; } .wave.-two { animation: drift 3000ms infinite linear; opacity: 0.1; background: black; position: fixed; } .wave { position: fixed; top: 0; left: 0; opacity: 0.4; position: absolute; top: 3%; left: 10%; background: #0af; width: 1500px; height: 1300px; margin-left: -150px; margin-top: -250px; transform-origin: 50% 48%; border-radius: 43%; animation: drift 7000ms infinite linear; } .wave.-one { animation: drift 5000ms infinite linear; position: fixed; background-color: #0af; } .wave.-thee { animation: drift 7500ms infinite linear; position: fixed; background-color: #77daff; } @keyframes drift { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } .bubble-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; z-index: -1; } #bubbleCanvas { width: 100%; height: 100%; display: block; } .glass-card { position: relative; padding: 20px; border-radius: 16px; background: rgba(255, 255, 255, 0.2); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.3); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15); text-align: center; color: #fff; } .card-body { max-height: 420px; overflow-y: auto; padding-top: 0px; } .glass-card-img { padding: 7px; background: rgba(255, 255, 255, 0.2); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.3); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15); text-align: center; color: #fff; } .glass-card-payment { padding: 5px; background: rgba(255, 255, 255, 0.2); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.3); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15); text-align: center; color: #fff; } .logo-brand { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 16px; } .logo { width: 40px; height: 40px; object-fit: contain; } .brand-name { font-size: 1.4rem; font-weight: 600; } .product-img { width: 100%; border-radius: 12px; margin-top: 10px; } .qr-img { width: 300px; max-width: 100%; height: auto; } .btn-grad { background-image: linear-gradient( to right, #00d2ff 0%, #3a7bd5 51%, #00d2ff 100% ); } .btn-grad { margin: 10px; padding: 15px 45px; text-align: center; text-transform: uppercase; transition: 0.5s; background-size: 200% auto; color: white; border-radius: 10px; border: none; display: block; } .btn-grad:hover { background-position: right center; color: #fff; text-decoration: none; } .payment-options-img img { width: 300px; } .terms-link { display: flex; justify-content: center; gap: 16px; margin-top: 20px; } .social-links { color: #ffffff !important; transition: color 0.3s ease; text-decoration: none; font-size: 12px; } .social-links:hover { text-decoration: underline; } @media (max-width: 768px) { .qr-img { width: 220px; } .card-body { max-height: 350px; overflow-y: auto; padding-top: 0px; } } @media (max-width: 480px) { .qr-img { width: 160px; } .social-links { font-size: 10px; } } @media (max-width: 480px) { .glass-card { width: 90%; padding: 16px; } .brand-name { font-size: 1.2rem; } }