| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Tea Page</title> |
| <script src="https://cdn.tailwindcss.com"></script> |
| <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&display=swap" rel="stylesheet"> |
| <style> |
| body { |
| font-family: 'Montserrat', sans-serif; |
| background-color: #09090b; |
| min-height: 100vh; |
| margin: 0; |
| padding: 0; |
| overflow-x: hidden; |
| position: relative; |
| color: white; |
| } |
| |
| |
| body::before { |
| content: ""; |
| position: fixed; |
| top: 0; |
| left: 0; |
| right: 0; |
| bottom: 0; |
| background: |
| linear-gradient(135deg, rgba(74, 29, 114, 0.2) 0%, rgba(11, 10, 13, 0.9) 100%); |
| backdrop-filter: blur(20px); |
| z-index: -2; |
| } |
| |
| |
| .glass-card { |
| background: rgba(20, 20, 25, 0.5); |
| backdrop-filter: blur(12px); |
| border-radius: 16px; |
| border: 1px solid rgba(255, 255, 255, 0.05); |
| box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); |
| } |
| |
| |
| .link-card { |
| transition: all 0.3s ease; |
| background: rgba(30, 30, 35, 0.6); |
| border: 1px solid rgba(106, 13, 173, 0.2); |
| } |
| |
| .link-card:hover { |
| transform: translateY(-3px); |
| background: rgba(40, 40, 45, 0.7); |
| border-color: rgba(170, 100, 255, 0.4); |
| box-shadow: 0 10px 20px rgba(106, 13, 173, 0.2); |
| } |
| |
| |
| .tea-logo { |
| width: 100px; |
| height: 100px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| position: relative; |
| filter: drop-shadow(0 0 10px rgba(170, 100, 255, 0.5)); |
| } |
| |
| .tea-logo::before, |
| .tea-logo::after { |
| content: ""; |
| position: absolute; |
| } |
| |
| |
| .tea-logo::before { |
| width: 60px; |
| height: 50px; |
| border: 3px solid #aa64ff; |
| border-radius: 0 0 15px 15px; |
| border-top: none; |
| bottom: 20px; |
| } |
| |
| |
| .tea-logo::after { |
| width: 10px; |
| height: 15px; |
| border: 3px solid #aa64ff; |
| border-left: none; |
| border-radius: 0 10px 10px 0; |
| right: 10px; |
| bottom: 30px; |
| } |
| |
| |
| .steam { |
| position: absolute; |
| width: 5px; |
| height: 20px; |
| background: rgba(255, 255, 255, 0.7); |
| border-radius: 5px; |
| animation: steam 2s infinite ease-out; |
| } |
| |
| @keyframes steam { |
| 0% { opacity: 0; transform: translateY(0) scale(0.8); } |
| 50% { opacity: 0.8; } |
| 100% { opacity: 0; transform: translateY(-30px) scale(1.2); } |
| } |
| |
| |
| .fade-in { |
| animation: fadeIn 0.8s ease-in-out; |
| } |
| |
| .delay-1 { |
| animation-delay: 0.2s; |
| } |
| |
| .delay-2 { |
| animation-delay: 0.4s; |
| } |
| |
| @keyframes fadeIn { |
| from { opacity: 0; transform: translateY(10px); } |
| to { opacity: 1; transform: translateY(0); } |
| } |
| |
| |
| .icon-container { |
| width: 40px; |
| height: 40px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| border-radius: 10px; |
| background: linear-gradient(135deg, rgba(106, 13, 173, 0.3), rgba(170, 100, 255, 0.3)); |
| margin-right: 15px; |
| } |
| |
| |
| .bubble { |
| position: absolute; |
| border-radius: 50%; |
| background: rgba(170, 100, 255, 0.1); |
| animation: float 15s infinite ease-in-out; |
| z-index: -1; |
| } |
| |
| @keyframes float { |
| 0% { transform: translateY(0) rotate(0deg); opacity: 0.1; } |
| 50% { transform: translateY(-100px) rotate(180deg); opacity: 0.2; } |
| 100% { transform: translateY(0) rotate(360deg); opacity: 0.1; } |
| } |
| </style> |
| </head> |
| <body class="flex items-center justify-center min-h-screen p-4"> |
| |
| <div class="bubble" style="width: 100px; height: 100px; right: 10%; top: 20%; animation-delay: 0s;"></div> |
| <div class="bubble" style="width: 150px; height: 150px; left: 15%; bottom: 15%; animation-delay: 3s;"></div> |
| <div class="bubble" style="width: 80px; height: 80px; right: 20%; bottom: 30%; animation-delay: 5s;"></div> |
| |
| |
| <main class="w-full max-w-md mx-auto fade-in"> |
| |
| <header class="flex flex-col items-center mb-8 text-center"> |
| <div class="tea-logo mb-4"> |
| |
| <div class="steam" style="left: 30px; top: 10px; animation-delay: 0.5s;"></div> |
| <div class="steam" style="left: 45px; top: 5px; animation-delay: 1s;"></div> |
| <div class="steam" style="left: 60px; top: 10px; animation-delay: 1.5s;"></div> |
| </div> |
| </header> |
| |
| |
| <div class="glass-card p-6 mb-6 fade-in delay-1"> |
| |
| <a href="https://funpay.com/users/7439472/" target="_blank" class="link-card flex items-center p-4 rounded-lg mb-3 fade-in delay-1 transition-all"> |
| <div class="icon-container"> |
| <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> |
| <rect x="6" y="6" width="12" height="12" rx="2" stroke="white" stroke-width="2"/> |
| <path d="M12 6V18M6 12H18" stroke="white" stroke-width="2" stroke-linecap="round"/> |
| </svg> |
| </div> |
| <div class="flex-1"> |
| <div class="font-medium">FUNPAY</div> |
| <div class="text-sm text-gray-400">Торговая площадка</div> |
| </div> |
| <svg width="20" height="20" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> |
| <path d="M5 12H19M19 12L12 5M19 12L12 19" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| </a> |
| |
| |
| <a href="https://discord.gg/DmhKJ69XCA" target="_blank" class="link-card flex items-center p-4 rounded-lg fade-in delay-2 transition-all"> |
| <div class="icon-container"> |
| <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> |
| <path d="M9.5 15C9.5 15 10.75 16 12 16C13.25 16 14.5 15 14.5 15" stroke="white" stroke-width="2" stroke-linecap="round"/> |
| <path d="M9 11H9.01M15 11H15.01" stroke="white" stroke-width="2" stroke-linecap="round"/> |
| <path fill-rule="evenodd" clip-rule="evenodd" d="M18 5C15 3 9 3 6 5C4.75 6 4 7.5 4 9V14.5C4 16 4.75 17.5 6 18.5C9 20.5 15 20.5 18 18.5C19.25 17.5 20 16 20 14.5V9C20 7.5 19.25 6 18 5Z" stroke="white" stroke-width="2"/> |
| </svg> |
| </div> |
| <div class="flex-1"> |
| <div class="font-medium">DISCORD</div> |
| <div class="text-sm text-gray-400">Чат и поддержка</div> |
| </div> |
| <svg width="20" height="20" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> |
| <path d="M5 12H19M19 12L12 5M19 12L12 19" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| </a> |
| </div> |
| |
| |
| <footer class="text-center text-xs text-gray-500 fade-in delay-2"> |
| <p></p> |
| </footer> |
| </main> |
| |
| <script> |
| document.addEventListener('DOMContentLoaded', function() { |
| |
| for (let i = 0; i < 5; i++) { |
| addBubble(); |
| } |
| |
| function addBubble() { |
| const bubble = document.createElement('div'); |
| bubble.className = 'bubble'; |
| |
| |
| const size = 30 + Math.random() * 100; |
| const left = Math.random() * 90; |
| const top = Math.random() * 90; |
| const opacity = 0.03 + Math.random() * 0.07; |
| const color = `rgba(170, 100, 255, ${opacity})`; |
| const duration = 10 + Math.random() * 20; |
| const delay = Math.random() * 10; |
| |
| bubble.style.width = `${size}px`; |
| bubble.style.height = `${size}px`; |
| bubble.style.left = `${left}%`; |
| bubble.style.top = `${top}%`; |
| bubble.style.background = color; |
| bubble.style.animationDuration = `${duration}s`; |
| bubble.style.animationDelay = `${delay}s`; |
| |
| document.body.appendChild(bubble); |
| } |
| }); |
| </script> |
| <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - <a href="https://enzostvs-deepsite.hf.space?remix=ttrld/b" style="color: #fff;text-decoration: underline;" target="_blank" >🧬 Remix</a></p></body> |
| </html> |