Spaces:
Running
Running
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>TRONIX Mining | Next-Gen Cloud Mining</title> | |
<script src="https://cdn.tailwindcss.com"></script> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> | |
<script> | |
tailwind.config = { | |
theme: { | |
extend: { | |
colors: { | |
neon: { | |
primary: '#00f0ff', | |
secondary: '#ff00e4', | |
tertiary: '#ffcc00', | |
}, | |
tron: { | |
dark: '#0a0a1a', | |
mid: '#161635', | |
light: '#242450', | |
highlight: '#00ff88', | |
}, | |
cyber: { | |
bg: '#0a0a1a', | |
card: '#161635', | |
border: '#242450', | |
text: '#e0e0ff', | |
} | |
}, | |
fontFamily: { | |
'sans': ['"Exo 2"', 'sans-serif'], | |
}, | |
animation: { | |
'pulse-slow': 'pulse 5s cubic-bezier(0.4, 0, 0.6, 1) infinite', | |
'float': 'float 6s ease-in-out infinite', | |
'gradient-x': 'gradient-x 8s ease infinite', | |
'neon-glow': 'neon-glow 2s linear infinite', | |
'scanline': 'scanline 8s linear infinite', | |
}, | |
keyframes: { | |
float: { | |
'0%, 100%': { transform: 'translateY(0)' }, | |
'50%': { transform: 'translateY(-10px)' }, | |
}, | |
'gradient-x': { | |
'0%, 100%': { | |
'background-size':'200% 200%', | |
'background-position': 'left center' | |
}, | |
'50%': { | |
'background-size':'200% 200%', | |
'background-position': 'right center' | |
} | |
}, | |
'neon-glow': { | |
'0%, 100%': { | |
'text-shadow': '0 0 5px #00f0ff, 0 0 10px #00f0ff, 0 0 15px #00f0ff', | |
'opacity': '1' | |
}, | |
'50%': { | |
'text-shadow': '0 0 10px #00f0ff, 0 0 20px #00f0ff, 0 0 30px #00f0ff', | |
'opacity': '0.8' | |
} | |
}, | |
'scanline': { | |
'0%': { 'background-position': '0 -100vh' }, | |
'100%': { 'background-position': '0 100vh' }, | |
} | |
} | |
} | |
} | |
} | |
</script> | |
<style> | |
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;500;600;700;800&display=swap'); | |
body { | |
font-family: 'Exo 2', sans-serif; | |
background-color: #0a0a1a; | |
color: #e0e0ff; | |
background-image: | |
linear-gradient(rgba(0, 240, 255, 0.05) 1px, transparent 1px), | |
linear-gradient(90deg, rgba(0, 240, 255, 0.05) 1px, transparent 1px); | |
background-size: 40px 40px; | |
position: relative; | |
overflow-x: hidden; | |
} | |
body::before { | |
content: ''; | |
position: fixed; | |
top: 0; | |
left: 0; | |
width: 100%; | |
height: 100%; | |
pointer-events: none; | |
background: linear-gradient( | |
to bottom, | |
rgba(0, 240, 255, 0.1) 0%, | |
transparent 5%, | |
transparent 95%, | |
rgba(255, 0, 228, 0.1) 100% | |
); | |
z-index: -1; | |
} | |
.cyber-card { | |
background-color: rgba(22, 22, 53, 0.8); | |
border: 1px solid #242450; | |
backdrop-filter: blur(10px); | |
border-radius: 8px; | |
transition: all 0.3s ease; | |
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); | |
} | |
.cyber-card:hover { | |
transform: translateY(-5px); | |
box-shadow: 0 10px 30px rgba(0, 240, 255, 0.2); | |
border-color: #00f0ff; | |
} | |
.progress-bar { | |
height: 10px; | |
border-radius: 5px; | |
background: rgba(36, 36, 80, 0.5); | |
overflow: hidden; | |
} | |
.progress-fill { | |
height: 100%; | |
border-radius: 5px; | |
background: linear-gradient(90deg, #00ff88 0%, #00f0ff 100%); | |
transition: width 0.5s ease; | |
position: relative; | |
overflow: hidden; | |
} | |
.progress-fill::after { | |
content: ''; | |
position: absolute; | |
top: 0; | |
left: 0; | |
right: 0; | |
bottom: 0; | |
background: linear-gradient( | |
to right, | |
rgba(255, 255, 255, 0) 0%, | |
rgba(255, 255, 255, 0.3) 50%, | |
rgba(255, 255, 255, 0) 100% | |
); | |
animation: shimmer 2s infinite; | |
} | |
@keyframes shimmer { | |
0% { transform: translateX(-100%); } | |
100% { transform: translateX(100%); } | |
} | |
.coin-animation { | |
animation: float 6s ease-in-out infinite; | |
} | |
.nav-link { | |
position: relative; | |
} | |
.nav-link::after { | |
content: ''; | |
position: absolute; | |
width: 0; | |
height: 2px; | |
bottom: -2px; | |
left: 0; | |
background-color: #00f0ff; | |
transition: width 0.3s ease; | |
} | |
.nav-link:hover::after { | |
width: 100%; | |
} | |
.status-dot { | |
width: 10px; | |
height: 10px; | |
border-radius: 50%; | |
display: inline-block; | |
margin-right: 5px; | |
} | |
.status-active { | |
background-color: #00ff88; | |
box-shadow: 0 0 10px rgba(0, 255, 136, 0.7); | |
} | |
.status-pending { | |
background-color: #ffcc00; | |
box-shadow: 0 0 10px rgba(255, 204, 0, 0.7); | |
} | |
.disc-outer { | |
width: 100px; | |
height: 100px; | |
border-radius: 50%; | |
background: conic-gradient( | |
#00ff88 0% 25%, | |
#00f0ff 25% 50%, | |
#ff00e4 50% 75%, | |
#ffcc00 75% 100% | |
); | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
animation: rotate 10s linear infinite; | |
} | |
.disc-inner { | |
width: 70px; | |
height: 70px; | |
border-radius: 50%; | |
background-color: #161635; | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
font-size: 24px; | |
color: #00f0ff; | |
} | |
@keyframes rotate { | |
from { transform: rotate(0deg); } | |
to { transform: rotate(360deg); } | |
} | |
.hexagon { | |
width: 60px; | |
height: 34.64px; | |
background-color: #00f0ff; | |
position: relative; | |
clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); | |
margin: 17.32px 0; | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
color: #0a0a1a; | |
font-weight: bold; | |
box-shadow: 0 0 20px rgba(0, 240, 255, 0.5); | |
} | |
.cyber-grid { | |
position: absolute; | |
top: 0; | |
left: 0; | |
width: 100%; | |
height: 100%; | |
background-image: | |
linear-gradient(#242450 1px, transparent 1px), | |
linear-gradient(90deg, #242450 1px, transparent 1px); | |
background-size: 20px 20px; | |
opacity: 0.5; | |
pointer-events: none; | |
} | |
.glow-text { | |
animation: neon-glow 2s linear infinite; | |
} | |
.scanlines { | |
position: absolute; | |
top: 0; | |
left: 0; | |
width: 100%; | |
height: 100%; | |
background: linear-gradient( | |
rgba(0, 240, 255, 0.05) 50%, | |
transparent 50% | |
); | |
background-size: 100% 4px; | |
pointer-events: none; | |
animation: scanline 8s linear infinite; | |
} | |
</style> | |
</head> | |
<body class="min-h-screen overflow-x-hidden bg-tron-dark"> | |
<!-- Header/Navigation --> | |
<header class="sticky top-0 z-50 bg-tron-dark border-b border-tron-light shadow-lg"> | |
<div class="container mx-auto px-4 py-3"> | |
<div class="flex justify-between items-center"> | |
<div class="flex items-center space-x-3"> | |
<div class="hexagon"> | |
<i class="fas fa-bolt text-xl"></i> | |
</div> | |
<span class="text-2xl font-extrabold tracking-wider"> | |
<span class="text-neon-primary">TRON</span> | |
<span class="text-neon-secondary">MINER</span> | |
<span class="text-xs text-neon-primary bg-tron-light px-2 py-1 rounded-full ml-2 align-middle">PRO</span> | |
</span> | |
</div> | |
<!-- Desktop Navigation --> | |
<nav class="hidden lg:flex space-x-8 items-center"> | |
<a href="#" class="nav-link font-medium text-neon-primary">DASHBOARD</a> | |
<a href="#" class="nav-link font-medium text-gray-400 hover:text-neon-primary">INVEST</a> | |
<a href="#" class="nav-link font-medium text-gray-400 hover:text-neon-primary">EARNINGS</a> | |
<a href="#" class="nav-link font-medium text-gray-400 hover:text-neon-primary">WITHDRAW</a> | |
<a href="#" class="nav-link font-medium text-gray-400 hover:text-neon-primary">REFERRALS</a> | |
<div class="flex items-center space-x-4 ml-4"> | |
<div class="relative group"> | |
<div class="w-10 h-10 rounded-full bg-neon-primary flex items-center justify-center cursor-pointer" style="box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);"> | |
<span class="font-bold text-tron-dark">JD</span> | |
</div> | |
<div class="absolute right-0 mt-2 w-56 bg-tron-light rounded-lg shadow-xl py-2 hidden group-hover:block border border-tron-light"> | |
<div class="px-4 py-2 border-b border-tron-light"> | |
<p class="font-medium text-neon-primary">John Doe</p> | |
<p class="text-xs text-gray-400">PREMIUM MEMBER</p> | |
</div> | |
<a href="#" class="block px-4 py-2 text-gray-300 hover:bg-tron-mid hover:text-neon-primary"> | |
<i class="fas fa-user mr-2"></i>Profile | |
</a> | |
<a href="#" class="block px-4 py-2 text-gray-300 hover:bg-tron-mid hover:text-neon-primary"> | |
<i class="fas fa-cog mr-2"></i>Settings | |
</a> | |
<a href="#" class="block px-4 py-2 text-gray-300 hover:bg-tron-mid hover:text-neon-primary"> | |
<i class="fas fa-headset mr-2"></i>Support | |
</a> | |
<div class="border-t border-tron-light mt-2 pt-2"> | |
<a href="#" class="block px-4 py-2 text-neon-secondary hover:bg-tron-mid"> | |
<i class="fas fa-sign-out-alt mr-2"></i>Logout | |
</a> | |
</div> | |
</div> | |
</div> | |
</div> | |
</nav> | |
<!-- Mobile Menu Button --> | |
<button id="mobile-menu-button" class="lg:hidden text-neon-primary focus:outline-none"> | |
<i class="fas fa-bars text-2xl"></i> | |
</button> | |
</div> | |
</div> | |
<!-- Mobile Menu --> | |
<div id="mobile-menu" class="mobile-menu hidden lg:hidden bg-tron-dark absolute w-full px-4 pb-6 z-40 border-b border-tron-light"> | |
<div class="flex flex-col space-y-4 py-4"> | |
<a href="#" class="nav-link font-medium text-neon-primary py-2">DASHBOARD</a> | |
<a href="#" class="nav-link font-medium text-gray-400 hover:text-neon-primary py-2">INVEST</a> | |
<a href="#" class="nav-link font-medium text-gray-400 hover:text-neon-primary py-2">EARNINGS</a> | |
<a href="#" class="nav-link font-medium text-gray-400 hover:text-neon-primary py-2">WITHDRAW</a> | |
<a href="#" class="nav-link font-medium text-gray-400 hover:text-neon-primary py-2">REFERRALS</a> | |
<div class="pt-4 border-t border-tron-light"> | |
<div class="flex items-center space-x-4"> | |
<div class="relative"> | |
<div class="w-10 h-10 rounded-full bg-neon-primary flex items-center justify-center" style="box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);"> | |
<span class="font-bold text-tron-dark">JD</span> | |
</div> | |
</div> | |
<div> | |
<p class="font-medium">John Doe</p> | |
<p class="text-sm text-gray-400">Premium Member</p> | |
</div> | |
</div> | |
<button class="w-full mt-4 bg-neon-secondary hover:bg-purple-600 px-4 py-2 rounded-lg font-medium text-white"> | |
<i class="fas fa-sign-out-alt mr-2"></i>Logout | |
</button> | |
</div> | |
</div> | |
</div> | |
</header> | |
<main class="container mx-auto px-4 py-8 relative"> | |
<div class="cyber-grid"></div> | |
<div class="scanlines"></div> | |
<!-- Dashboard Overview --> | |
<section class="mb-12"> | |
<div class="flex flex-col md:flex-row justify-between items-start md:items-center mb-8"> | |
<div> | |
<h1 class="text-3xl md:text-4xl font-bold mb-1">WELCOME BACK, <span class="text-neon-primary">JOHN</span></h1> | |
<p class="text-gray-400 text-sm font-mono tracking-wider">USER ID: #A7F9B3C</p> | |
</div> | |
<div class="flex space-x-3 mt-4 md:mt-0"> | |
<button class="bg-tron-mid hover:bg-tron-light border border-tron-light hover:border-neon-primary px-4 py-2 rounded-lg font-medium flex items-center space-x-2"> | |
<i class="fas fa-qrcode text-neon-primary"></i> | |
<span>RECEIVE TRX</span> | |
</button> | |
<button class="bg-neon-secondary hover:bg-purple-600 px-4 py-2 rounded-lg font-medium flex items-center space-x-2"> | |
<i class="fas fa-wallet"></i> | |
<span>WITHDRAW</span> | |
</button> | |
</div> | |
</div> | |
<!-- Balance Card --> | |
<div class="grid grid-cols-1 lg:grid-cols-3 gap-4 mb-8"> | |
<!-- Main Balance Card --> | |
<div class="cyber-card p-6 rounded-xl col-span-1 lg:col-span-2 relative overflow-hidden"> | |
<div class="absolute -top-20 -right-20 w-40 h-40 rounded-full bg-neon-primary opacity-10 blur-xl"></div> | |
<div class="flex flex-col md:flex-row md:justify-between"> | |
<div class="mb-6 md:mb-0"> | |
<p class="text-gray-400 mb-1 tracking-wider">TOTAL BALANCE</p> | |
<div class="flex items-end"> | |
<h2 class="text-3xl md:text-4xl font-bold font-mono">1,245.75 <span class="text-neon-primary">TRX</span></h2> | |
<span class="ml-2 text-green-400 text-sm mb-1 font-mono">+2.8%</span> | |
</div> | |
<p class="text-gray-400 mt-1 font-mono">≈ $124.58 USD</p> | |
</div> | |
<div class="flex flex-col items-end"> | |
<button class="bg-neon-primary hover:bg-cyan-600 px-6 py-2 rounded-lg font-medium mb-3 text-tron-dark font-bold"> | |
DEPOSIT | |
</button> | |
<div class="flex space-x-2"> | |
<button class="bg-tron-mid hover:bg-tron-light border border-tron-light hover:border-neon-primary px-4 py-1 rounded text-sm"> | |
BUY TRX | |
</button> | |
<button class="bg-tron-mid hover:bg-tron-light border border-tron-light hover:border-neon-primary px-4 py-1 rounded text-sm"> | |
SWAP | |
</button> | |
</div> | |
</div> | |
</div> | |
<!-- Balance Chart Placeholder --> | |
<div class="mt-8 h-24 flex items-center justify-center"> | |
<div class="w-full h-16 relative"> | |
<!-- This would be replaced with a real chart in production --> | |
<div class="absolute left-0 bottom-0 w-full h-full"> | |
<div class="absolute left-0 bottom-0 w-full h-1/4 bg-neon-primary opacity-20 rounded-t"></div> | |
<div class="absolute left-0 bottom-0 w-3/4 h-1/2 bg-neon-primary opacity-30 rounded-t"></div> | |
<div class="absolute left-0 bottom-0 w-1/2 h-3/4 bg-neon-primary opacity-50 rounded-t"></div> | |
<div class="absolute left-0 bottom-0 w-1/4 h-full bg-neon-secondary rounded-t"></div> | |
</div> | |
<div class="absolute left-0 bottom-0 w-full h-px bg-tron-light"></div> | |
</div> | |
</div> | |
</div> | |
<!-- Mining Summary --> | |
<div class="cyber-card p-6 rounded-xl relative overflow-hidden"> | |
<div class="absolute -top-10 -right-10 w-20 h-20 rounded-full bg-neon-secondary opacity-10 blur-xl"></div> | |
<div class="flex justify-between items-center mb-6"> | |
<div> | |
<p class="text-gray-400 mb-1 tracking-wider">MINING STATUS</p> | |
<h3 class="text-xl font-bold">ACTIVE <span class="status-dot status-active"></span></h3> | |
</div> | |
<div class="w-12 h-12 rounded-full bg-tron-light flex items-center justify-center" style="box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);"> | |
<i class="fas fa-bolt text-neon-primary text-xl"></i> | |
</div> | |
</div> | |
<div class="space-y-2"> | |
<div class="flex justify-between font-mono"> | |
<span class="text-gray-400">HASH RATE</span> | |
<span class="font-medium">1,245 GH/S</span> | |
</div> | |
<div class="flex justify-between font-mono"> | |
<span class="text-gray-400">DAILY EARNINGS</span> | |
<span class="font-medium text-neon-primary">12.45 TRX</span> | |
</div> | |
<div class="flex justify-between font-mono"> | |
<span class="text-gray-400">NEXT PAYOUT</span> | |
<span class="font-medium">3H 24M</span> | |
</div> | |
</div> | |
<div class="mt-4"> | |
<div class="flex justify-between mb-2 text-sm font-mono"> | |
<span>MINING PROGRESS</span> | |
<span>65%</span> | |
</div> | |
<div class="progress-bar"> | |
<div class="progress-fill" style="width: 65%"></div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<!-- Stats Grid --> | |
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-4 mb-8"> | |
<!-- Daily Earnings --> | |
<div class="cyber-card p-5 rounded-xl flex justify-between items-center relative overflow-hidden"> | |
<div class="absolute -top-10 -left-10 w-20 h-20 rounded-full bg-neon-primary opacity-10 blur-xl"></div> | |
<div> | |
<p class="text-gray-400 mb-1 tracking-wider">DAILY EARNINGS</p> | |
<h3 class="text-xl font-bold font-mono">12.45 <span class="text-neon-primary">TRX</span></h3> | |
<p class="text-green-400 text-sm font-mono">≈ $1.25</p> | |
</div> | |
<div class="w-12 h-12 rounded-full bg-green-900 bg-opacity-20 flex items-center justify-center border border-green-400"> | |
<i class="fas fa-chart-line text-green-400 text-xl"></i> | |
</div> | |
</div> | |
<!-- Active Investments --> | |
<div class="cyber-card p-5 rounded-xl flex justify-between items-center relative overflow-hidden"> | |
<div class="absolute -top-10 -left-10 w-20 h-20 rounded-full bg-neon-secondary opacity-10 blur-xl"></div> | |
<div> | |
<p class="text-gray-400 mb-1 tracking-wider">ACTIVE INVESTMENTS</p> | |
<h3 class="text-xl font-bold font-mono">3</h3> | |
<p class="text-blue-300 text-sm font-mono">1,000 TRX TOTAL</p> | |
</div> | |
<div class="w-12 h-12 rounded-full bg-blue-900 bg-opacity-20 flex items-center justify-center border border-blue-300"> | |
<i class="fas fa-coins text-blue-300 text-xl"></i> | |
</div> | |
</div> | |
<!-- Referral Earnings --> | |
<div class="cyber-card p-5 rounded-xl flex justify-between items-center relative overflow-hidden"> | |
<div class="absolute -top-10 -left-10 w-20 h-20 rounded-full bg-neon-secondary opacity-10 blur-xl"></div> | |
<div> | |
<p class="text-gray-400 mb-1 tracking-wider">REFERRAL EARNINGS</p> | |
<h3 class="text-xl font-bold font-mono">45.20 <span class="text-neon-primary">TRX</span></h3> | |
<p class="text-purple-400 text-sm font-mono">5 ACTIVE REFERRALS</p> | |
</div> | |
<div class="w-12 h-12 rounded-full bg-purple-900 bg-opacity-20 flex items-center justify-center border border-purple-400"> | |
<i class="fas fa-users text-purple-400 text-xl"></i> | |
</div> | |
</div> | |
<!-- Total Mined --> | |
<div class="cyber-card p-5 rounded-xl flex justify-between items-center relative overflow-hidden"> | |
<div class="absolute -top-10 -left-10 w-20 h-20 rounded-full bg-neon-primary opacity-10 blur-xl"></div> | |
<div> | |
<p class="text-gray-400 mb-1 tracking-wider">TOTAL MINED</p> | |
<h3 class="text-xl font-bold font-mono">342.15 <span class="text-neon-primary">TRX</span></h3> | |
<p class="text-yellow-400 text-sm font-mono">ALL TIME</p> | |
</div> | |
<div class="w-12 h-12 rounded-full bg-yellow-900 bg-opacity-20 flex items-center justify-center border border-yellow-400"> | |
<i class="fas fa-digging text-yellow-400 text-xl"></i> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Investment Plans --> | |
<section class="mb-12"> | |
<div class="flex flex-col md:flex-row justify-between items-start md:items-center mb-8"> | |
<div> | |
<h1 class="text-3xl font-bold mb-2 glow-text">INVESTMENT PLANS</h1> | |
<p class="text-gray-400 font-mono">CHOOSE A PLAN THAT FITS YOUR INVESTMENT GOALS</p> | |
</div> | |
<div class="mt-4 md:mt-0 flex space-x-3"> | |
<div class="relative"> | |
<div class="absolute inset-y-0 left-0 flex items-center pl-3 pointer-events-none"> | |
<i class="fas fa-coins text-gray-400"></i> | |
</div> | |
<select class="bg-tron-light border border-tron-light text-white rounded-lg px-10 py-2 focus:outline-none focus:ring-1 focus:ring-neon-primary font-mono"> | |
<option>TRX</option> | |
<option>USDT</option> | |
<option>BTC</option> | |
</select> | |
</div> | |
</div> | |
</div> | |
<div class="grid grid-cols-1 md:grid-cols-2 xl:grid-cols-4 gap-6"> | |
<!-- Starter Plan --> | |
<div class="cyber-card p-6 rounded-xl relative overflow-hidden group"> | |
<div class="absolute -top-10 -right-10 w-20 h-20 rounded-full bg-blue-500 opacity-10 blur-xl group-hover:opacity-20 transition-opacity"></div> | |
<div class="text-center mb-4"> | |
<div class="w-14 h-14 mx-auto mb-3 rounded-full bg-blue-400 bg-opacity-20 flex items-center justify-center border-2 border-blue-400"> | |
<i class="fas fa-rocket text-blue-400 text-xl"></i> | |
</div> | |
<h3 class="text-xl font-bold text-blue-400">STARTER</h3> | |
<p class="text-gray-400 text-sm font-mono">FOR BEGINNERS</p> | |
</div> | |
<div class="text-center mb-6 px-4"> | |
<div class="inline-block px-4 py-2 bg-blue-900 bg-opacity-20 rounded-full border border-blue-400"> | |
<span class="text-2xl font-bold font-mono">1.8%</span> | |
<span class="text-gray-400 font-mono">DAILY</span> | |
</div> | |
<p class="text-sm text-gray-400 mt-2 font-mono">FOR 15 DAYS (27% TOTAL)</p> | |
</div> | |
<div class="mb-6"> | |
<div class="flex justify-between items-center py-2 border-b border-tron-light font-mono"> | |
<span class="text-gray-400">MIN:</span> | |
<span class="font-medium">100 TRX</span> | |
</div> | |
<div class="flex justify-between items-center py-2 border-b border-tron-light font-mono"> | |
<span class="text-gray-400">MAX:</span> | |
<span class="font-medium">1,000 TRX</span> | |
</div> | |
<div class="flex justify-between items-center py-2 font-mono"> | |
<span class="text-gray-400">STATUS:</span> | |
<span class="text-green-400">AVAILABLE</span> | |
</div> | |
</div> | |
<button class="w-full bg-blue-600 hover:bg-blue-700 py-3 rounded-lg font-bold mt-4 invest-button border border-blue-400" data-plan="starter"> | |
INVEST IN STARTER | |
</button> | |
</div> | |
<!-- Advanced Plan --> | |
<div class="cyber-card p-6 rounded-xl relative overflow-hidden group"> | |
<div class="absolute -top-10 -right-10 w-20 h-20 rounded-full bg-green-500 opacity-10 blur-xl group-hover:opacity-20 transition-opacity"></div> | |
<div class="text-center mb-4"> | |
<div class="w-14 h-14 mx-auto mb-3 rounded-full bg-green-400 bg-opacity-20 flex items-center justify-center border-2 border-green-400"> | |
<i class="fas fa-chart-line text-green-400 text-xl"></i> | |
</div> | |
<h3 class="text-xl font-bold text-green-400">ADVANCED</h3> | |
<p class="text-gray-400 text-sm font-mono">POPULAR CHOICE</p> | |
</div> | |
<div class="text-center mb-6 px-4"> | |
<div class="inline-block px-4 py-2 bg-green-900 bg-opacity-20 rounded-full border border-green-400"> | |
<span class="text-2xl font-bold font-mono">2.2%</span> | |
<span class="text-gray-400 font-mono">DAILY</span> | |
</div> | |
<p class="text-sm text-gray-400 mt-2 font-mono">FOR 20 DAYS (44% TOTAL)</p> | |
</div> | |
<div class="mb-6"> | |
<div class="flex justify-between items-center py-2 border-b border-tron-light font-mono"> | |
<span class="text-gray-400">MIN:</span> | |
<span class="font-medium">1,000 TRX</span> | |
</div> | |
<div class="flex justify-between items-center py-2 border-b border-tron-light font-mono"> | |
<span class="text-gray-400">MAX:</span> | |
<span class="font-medium">5,000 TRX</span> | |
</div> | |
<div class="flex justify-between items-center py-2 font-mono"> | |
<span class="text-gray-400">STATUS:</span> | |
<span class="text-green-400">AVAILABLE</span> | |
</div> | |
</div> | |
<button class="w-full bg-green-600 hover:bg-green-700 py-3 rounded-lg font-bold mt-4 invest-button border border-green-400" data-plan="advanced"> | |
INVEST IN ADVANCED | |
</button> | |
</div> | |
<!-- Professional Plan --> | |
<div class="cyber-card p-6 rounded-xl relative overflow-hidden group border-2 border-yellow-400"> | |
<div class="absolute -top-10 -right-10 w-20 h-20 rounded-full bg-yellow-500 opacity-10 blur-xl group-hover:opacity-20 transition-opacity"></div> | |
<div class="absolute -top-3 right-4 bg-yellow-400 text-tron-dark px-3 py-1 rounded-full text-xs font-bold border border-yellow-400" style="box-shadow: 0 0 15px rgba(255, 204, 0, 0.5);"> | |
RECOMMENDED | |
</div> | |
<div class="text-center mb-4"> | |
<div class="w-14 h-14 mx-auto mb-3 rounded-full bg-yellow-400 bg-opacity-20 flex items-center justify-center border-2 border-yellow-400"> | |
<i class="fas fa-crown text-yellow-400 text-xl"></i> | |
</div> | |
<h3 class="text-xl font-bold text-yellow-400">PROFESSIONAL</h3> | |
<p class="text-gray-400 text-sm font-mono">BEST VALUE</p> | |
</div> | |
<div class="text-center mb-6 px-4"> | |
<div class="inline-block px-4 py-2 bg-yellow-900 bg-opacity-20 rounded-full border border-yellow-400"> | |
<span class="text-2xl font-bold font-mono">2.8%</span> | |
<span class="text-gray-400 font-mono">DAILY</span> | |
</div> | |
<p class="text-sm text-gray-400 mt-2 font-mono">FOR 25 DAYS (70% TOTAL)</p> | |
</div> | |
<div class="mb-6"> | |
<div class="flex justify-between items-center py-2 border-b border-tron-light font-mono"> | |
<span class="text-gray-400">MIN:</span> | |
<span class="font-medium">5,000 TRX</span> | |
</div> | |
<div class="flex justify-between items-center py-2 border-b border-tron-light font-mono"> | |
<span class="text-gray-400">MAX:</span> | |
<span class="font-medium">20,000 TRX</span> | |
</div> | |
<div class="flex justify-between items-center py-2 font-mono"> | |
<span class="text-gray-400">STATUS:</span> | |
<span class="text-green-400">AVAILABLE</span> | |
</div> | |
</div> | |
<button class="w-full bg-yellow-500 hover:bg-yellow-600 py-3 rounded-lg font-bold text-tron-dark mt-4 invest-button border border-yellow-400" data-plan="professional"> | |
INVEST IN PROFESSIONAL | |
</button> | |
</div> | |
<!-- VIP Plan --> | |
<div class="cyber-card p-6 rounded-xl relative overflow-hidden group"> | |
<div class="absolute -top-10 -right-10 w-20 h-20 rounded-full bg-purple-500 opacity-10 blur-xl group-hover:opacity-20 transition-opacity"></div> | |
<div class="text-center mb-4"> | |
<div class="w-14 h-14 mx-auto mb-3 rounded-full bg-purple-400 bg-opacity-20 flex items-center justify-center border-2 border-purple-400"> | |
<i class="fas fa-gem text-purple-400 text-xl"></i> | |
</div> | |
<h3 class="text-xl font-bold text-purple-400">VIP</h3> | |
<p class="text-gray-400 text-sm font-mono">EXCLUSIVE BENEFITS</p> | |
</div> | |
<div class="text-center mb-6 px-4"> | |
<div class="inline-block px-4 py-2 bg-purple-900 bg-opacity-20 rounded-full border border-purple-400"> | |
<span class="text-2xl font-bold font-mono">3.5%</span> | |
<span class="text-gray-400 font-mono">DAILY</span> | |
</div> | |
<p class="text-sm text-gray-400 mt-2 font-mono">FOR 30 DAYS (105% TOTAL)</p> | |
</div> | |
<div class="mb-6"> | |
<div class="flex justify-between items-center py-2 border-b border-tron-light font-mono"> | |
<span class="text-gray-400">MIN:</span> | |
<span class="font-medium">20,000 TRX</span> | |
</div> | |
<div class="flex justify-between items-center py-2 border-b border-tron-light font-mono"> | |
<span class="text-gray-400">MAX:</span> | |
<span class="font-medium">100,000 TRX</span> | |
</div> | |
<div class="flex justify-between items-center py-2 font-mono"> | |
<span class="text-gray-400">STATUS:</span> | |
<span class="text-green-400">AVAILABLE</span> | |
</div> | |
</div> | |
<button class="w-full bg-purple-600 hover:bg-purple-700 py-3 rounded-lg font-bold mt-4 invest-button border border-purple-400" data-plan="vip"> | |
INVEST IN VIP | |
</button> | |
</div> | |
</div> | |
</section> | |
<!-- Mining Activity --> | |
<section class="mb-12"> | |
<div class="flex justify-between items-center mb-6"> | |
<div> | |
<h1 class="text-3xl font-bold glow-text">MINING ACTIVITY</h1> | |
<p class="text-gray-400 font-mono">REAL-TIME MINING STATISTICS</p> | |
</div> | |
<div class="flex items-center space-x-2"> | |
<span class="text-gray-400 text-sm font-mono">AUTO-CLAIM:</span> | |
<div class="relative inline-block w-12 mr-2 align-middle select-none transform transition-all duration-200"> | |
<input type="checkbox" id="toggle" class="toggle-checkbox absolute block w-6 h-6 rounded-full bg-white border-4 appearance-none cursor-pointer transition-all duration-200"/> | |
<label for="toggle" class="toggle-label block overflow-hidden h-6 rounded-full bg-tron-light cursor-pointer transition-all duration-200"></label> | |
</div> | |
</div> | |
</div> | |
<div class="cyber-card p-6 rounded-xl"> | |
<div class="grid grid-cols-1 lg:grid-cols-2 gap-6"> | |
<!-- Mining Stats --> | |
<div> | |
<h3 class="text-xl font-bold mb-4">MINING STATISTICS</h3> | |
<div class="space-y-4"> | |
<div> | |
<div class="flex justify-between mb-1 font-mono"> | |
<span class="text-gray-400">HASHRATE</span> | |
<span class="font-medium">1,245 GH/S</span> | |
</div> | |
<div class="w-full bg-tron-light rounded-full h-2.5"> | |
<div class="bg-blue-500 h-2.5 rounded-full" style="width: 65%;"></div> | |
</div> | |
</div> | |
<div> | |
<div class="flex justify-between mb-1 font-mono"> | |
<span class="text-gray-400">MINING EFFICIENCY</span> | |
<span class="font-medium">82%</span> | |
</div> | |
<div class="w-full bg-tron-light rounded-full h-2.5"> | |
<div class="bg-green-500 h-2.5 rounded-full" style="width: 82%;"></div> | |
</div> | |
</div> | |
<div> | |
<div class="flex justify-between mb-1 font-mono"> | |
<span class="text-gray-400">NETWORK DIFFICULTY</span> | |
<span class="font-medium">HIGH</span> | |
</div> | |
<div class="w-full bg-tron-light rounded-full h-2.5"> | |
<div class="bg-red-500 h-2.5 rounded-full" style="width: 75%;"></div> | |
</div> | |
</div> | |
</div> | |
<div class="grid grid-cols-2 gap-4 mt-6"> | |
<div class="bg-tron-light bg-opacity-50 p-4 rounded-lg border border-tron-light"> | |
<p class="text-gray-400 text-sm font-mono">MINED TODAY</p> | |
<p class="text-xl font-bold font-mono">12.45 TRX</p> | |
</div> | |
<div class="bg-tron-light bg-opacity-50 p-4 rounded-lg border border-tron-light"> | |
<p class="text-gray-400 text-sm font-mono">NEXT PAYOUT</p> | |
<p class="text-xl font-bold font-mono">3H 24M</p> | |
</div> | |
<div class="bg-tron-light bg-opacity-50 p-4 rounded-lg border border-tron-light"> | |
<p class="text-gray-400 text-sm font-mono">DAILY PROFIT</p> | |
<p class="text-xl font-bold text-green-400 font-mono">1.8%</p> | |
</div> | |
<div class="bg-tron-light bg-opacity-50 p-4 rounded-lg border border-tron-light"> | |
<p class="text-gray-400 text-sm font-mono">EST. MONTHLY</p> | |
<p class="text-xl font-bold font-mono">372.75 TRX</p> | |
</div> | |
</div> | |
</div> | |
<!-- Mining Visualization --> | |
<div> | |
<h3 class="text-xl font-bold mb-4">MINING VISUALIZATION</h3> | |
<div class="relative h-full min-h-64 bg-tron-light rounded-xl border border-tron-light overflow-hidden" style="box-shadow: inset 0 0 20px rgba(0, 240, 255, 0.1);"> | |
<div class="absolute inset-0"> | |
<div class="cyber-grid"></div> | |
</div> | |
<div class="absolute inset-0 flex items-center justify-center"> | |
<div class="disc-outer"> | |
<div class="disc-inner"> | |
<i class="fas fa-bolt"></i> | |
</div> | |
</div> | |
</div> | |
<!-- Floating TRX coins --> | |
<div class="absolute top-1/4 left-1/3 text-neon-primary coin-animation"> | |
<i class="fas fa-coins text-3xl"></i> | |
</div> | |
<div class="absolute top-1/3 right-1/4 text-neon-secondary coin-animation" style="animation-delay: 1s;"> | |
<i class="fas fa-coins text-2xl"></i> | |
</div> | |
<div class="absolute top-1/2 left-1/4 text-neon-tertiary coin-animation" style="animation-delay: 2s;"> | |
<i class="fas fa-coins text-xl"></i> | |
</div> | |
</div> | |
<div class="mt-4 flex justify-center"> | |
<button class="bg-neon-secondary hover:bg-purple-600 px-6 py-2 rounded-lg font-medium border border-transparent hover:border-neon-secondary"> | |
<i class="fas fa-bolt mr-2"></i> | |
<span>BOOST MINING</span> | |
</button> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Active Investments --> | |
<section class="mb-12"> | |
<div class="flex flex-col md:flex-row justify-between items-start md:items-center mb-6"> | |
<div> | |
<h1 class="text-3xl font-bold glow-text">ACTIVE INVESTMENTS</h1> | |
<p class="text-gray-400 font-mono">YOUR CURRENTLY RUNNING INVESTMENTS</p> | |
</div> | |
<div class="mt-4 md:mt-0"> | |
<button class="bg-tron-light hover:bg-tron-mid px-4 py-2 rounded-lg font-medium border border-tron-light hover:border-neon-primary"> | |
VIEW HISTORY | |
</button> | |
</div> | |
</div> | |
<div class="cyber-card rounded-xl overflow-hidden"> | |
<div class="overflow-x-auto"> | |
<table class="w-full"> | |
<thead class="bg-tron-light"> | |
<tr> | |
<th class="py-4 px-6 text-left font-mono">PLAN</th> | |
<th class="py-4 px-6 text-left font-mono">AMOUNT</th> | |
<th class="py-4 px-6 text-left font-mono">DAILY PROFIT</th> | |
<th class="py-4 px-6 text-left font-mono">TOTAL EARNED</th> | |
<th class="py-4 px-6 text-left font-mono">PROGRESS</th> | |
<th class="py-4 px-6 text-left font-mono">ACTIONS</th> | |
</tr> | |
</thead> | |
<tbody class="divide-y divide-tron-light"> | |
<tr class="hover:bg-tron-mid group"> | |
<td class="py-4 px-6"> | |
<div class="flex items-center"> | |
<div class="w-3 h-3 rounded-full bg-blue-400 mr-2 group-hover:animate-pulse"></div> | |
<span>STARTER</span> | |
</div> | |
</td> | |
<td class="py-4 px-6 font-mono">500 TRX</td> | |
<td class="py-4 px-6 font-mono text-green-400">9 TRX</td> | |
<td class="py-4 px-6 font-mono">45 TRX</td> | |
<td class="py-4 px-6"> | |
<div class="flex items-center"> | |
<div class="w-24 h-2 bg-tron-light rounded-full mr-2"> | |
<div class="h-2 bg-blue-400 rounded-full" style="width: 33%;"></div> | |
</div> | |
<span class="text-sm font-mono">5/15 DAYS</span> | |
</div> | |
</td> | |
<td class="py-4 px-6"> | |
<button class="text-blue-400 hover:text-blue-300 mr-3"> | |
<i class="fas fa-eye"></i> | |
</button> | |
<button class="text-red-400 hover:text-red-300"> | |
<i class="fas fa-stop-circle"></i> | |
</button> | |
</td> | |
</tr> | |
<tr class="hover:bg-tron-mid group"> | |
<td class="py-4 px-6"> | |
<div class="flex items-center"> | |
<div class="w-3 h-3 rounded-full bg-green-400 mr-2 group-hover:animate-pulse"></div> | |
<span>ADVANCED</span> | |
</div> | |
</td> | |
<td class="py-4 px-6 font-mono">2,000 TRX</td> | |
<td class="py-4 px-6 font-mono text-green-400">44 TRX</td> | |
<td class="py-4 px-6 font-mono">220 TRX</td> | |
<td class="py-4 px-6"> | |
<div class="flex items-center"> | |
<div class="w-24 h-2 bg-tron-light rounded-full mr-2"> | |
<div class="h-2 bg-green-400 rounded-full" style="width: 40%;"></div> | |
</div> | |
<span class="text-sm font-mono">8/20 DAYS</span> | |
</div> | |
</td> | |
<td class="py-4 px-6"> | |
<button class="text-blue-400 hover:text-blue-300 mr-3"> | |
<i class="fas fa-eye"></i> | |
</button> | |
<button class="text-red-400 hover:text-red-300"> | |
<i class="fas fa-stop-circle"></i> | |
</button> | |
</td> | |
</tr> | |
<tr class="hover:bg-tron-mid group"> | |
<td class="py-4 px-6"> | |
<div class="flex items-center"> | |
<div class="w-3 h-3 rounded-full bg-yellow-400 mr-2 group-hover:animate-pulse"></div> | |
<span>PROFESSIONAL</span> | |
</div> | |
</td> | |
<td class="py-4 px-6 font-mono">10,000 TRX</td> | |
<td class="py-4 px-6 font-mono text-green-400">280 TRX</td> | |
<td class="py-4 px-6 font-mono">1,400 TRX</td> | |
<td class="py-4 px-6"> | |
<div class="flex items-center"> | |
<div class="w-24 h-2 bg-tron-light rounded-full mr-2"> | |
<div class="h-2 bg-yellow-400 rounded-full" style="width: 48%;"></div> | |
</div> | |
<span class="text-sm font-mono">12/25 DAYS</span> | |
</div> | |
</td> | |
<td class="py-4 px-6"> | |
<button class="text-blue-400 hover:text-blue-300 mr-3"> | |
<i class="fas fa-eye"></i> | |
</button> | |
<button class="text-red-400 hover:text-red-300"> | |
<i class="fas fa-stop-circle"></i> | |
</button> | |
</td> | |
</tr> | |
</tbody> | |
</table> | |
</div> | |
</div> | |
</section> | |
<!-- Recent Transactions --> | |
<section> | |
<div class="flex flex-col md:flex-row justify-between items-start md:items-center mb-6"> | |
<div> | |
<h1 class="text-3xl font-bold glow-text">RECENT TRANSACTIONS</h1> | |
<p class="text-gray-400 font-mono">YOUR LATEST ACCOUNT ACTIVITY</p> | |
</div> | |
<div class="mt-4 md:mt-0"> | |
<button class="bg-tron-light hover:bg-tron-mid px-4 py-2 rounded-lg font-medium border border-tron-light hover:border-neon-primary"> | |
FILTER <i class="fas fa-filter ml-1"></i> | |
</button> | |
</div> | |
</div> | |
<div class="space-y-3"> | |
<!-- Deposit --> | |
<div class="cyber-card p-4 rounded-lg flex justify-between items-center group hover:border-neon-primary"> | |
<div class="flex items-center space-x-4"> | |
<div class="w-12 h-12 rounded-full bg-blue-400 bg-opacity-10 flex items-center justify-center border border-blue-400"> | |
<i class="fas fa-arrow-down text-blue-400 text-xl"></i> | |
</div> | |
<div> | |
<h4 class="font-medium">TRX DEPOSIT</h4> | |
<p class="text-gray-400 text-sm font-mono">TODAY, 10:24 AM</p> | |
</div> | |
</div> | |
<div class="text-right"> | |
<p class="text-green-400 font-medium font-mono">+500 TRX</p> | |
<div class="flex items-center justify-end"> | |
<span class="status-dot status-active"></span> | |
<span class="text-gray-400 text-sm font-mono">COMPLETED</span> | |
</div> | |
</div> | |
</div> | |
<!-- Investment --> | |
<div class="cyber-card p-4 rounded-lg flex justify-between items-center group hover:border-neon-primary"> | |
<div class="flex items-center space-x-4"> | |
<div class="w-12 h-12 rounded-full bg-purple-400 bg-opacity-10 flex items-center justify-center border border-purple-400"> | |
<i class="fas fa-coins text-purple-400 text-xl"></i> | |
</div> | |
<div> | |
<h4 class="font-medium">PROFESSIONAL PLAN</h4> | |
<p class="text-gray-400 text-sm font-mono">YESTERDAY, 2:15 PM</p> | |
</div> | |
</div> | |
<div class="text-right"> | |
<p class="text-red-400 font-medium font-mono">-10,000 TRX</p> | |
<div class="flex items-center justify-end"> | |
<span class="status-dot status-active"></span> | |
<span class="text-gray-400 text-sm font-mono">ACTIVE</span> | |
</div> | |
</div> | |
</div> | |
<!-- Earnings --> | |
<div class="cyber-card p-4 rounded-lg flex justify-between items-center group hover:border-neon-primary"> | |
<div class="flex items-center space-x-4"> | |
<div class="w-12 h-12 rounded-full bg-green-400 bg-opacity-10 flex items-center justify-center border border-green-400"> | |
<i class="fas fa-coins text-green-400 text-xl"></i> | |
</div> | |
<div> | |
<h4 class="font-medium">DAILY EARNINGS</h4> | |
<p class="text-gray-400 text-sm font-mono">TODAY, 12:00 AM</p> | |
</div> | |
</div> | |
<div class="text-right"> | |
<p class="text-green-400 font-medium font-mono">+280 TRX</p> | |
<div class="flex items-center justify-end"> | |
<span class="status-dot status-active"></span> | |
<span class="text-gray-400 text-sm font-mono">FROM PROFESSIONAL</span> | |
</div> | |
</div> | |
</div> | |
<!-- Referral --> | |
<div class="cyber-card p-4 rounded-lg flex justify-between items-center group hover:border-neon-primary"> | |
<div class="flex items-center space-x-4"> | |
<div class="w-12 h-12 rounded-full bg-yellow-400 bg-opacity-10 flex items-center justify-center border border-yellow-400"> | |
<i class="fas fa-user-plus text-yellow-400 text-xl"></i> | |
</div> | |
<div> | |
<h4 class="font-medium">REFERRAL BONUS</h4> | |
<p class="text-gray-400 text-sm font-mono">YESTERDAY, 5:42 PM</p> | |
</div> | |
</div> | |
<div class="text-right"> | |
<p class="text-green-400 font-medium font-mono">+50 TRX</p> | |
<div class="flex items-center justify-end"> | |
<span class="status-dot status-active"></span> | |
<span class="text-gray-400 text-sm font-mono">FROM USER</span> | |
</div> | |
</div> | |
</div> | |
<!-- Pending Withdrawal --> | |
<div class="cyber-card p-4 rounded-lg flex justify-between items-center group hover:border-neon-primary"> | |
<div class="flex items-center space-x-4"> | |
<div class="w-12 h-12 rounded-full bg-red-400 bg-opacity-10 flex items-center justify-center border border-red-400"> | |
<i class="fas fa-wallet text-red-400 text-xl"></i> | |
</div> | |
<div> | |
<h4 class="font-medium">WITHDRAWAL REQUEST</h4> | |
<p class="text-gray-400 text-sm font-mono">2 DAYS AGO, 9:10 AM</p> | |
</div> | |
</div> | |
<div class="text-right"> | |
<p class="text-yellow-400 font-medium font-mono">-150 TRX</p> | |
<div class="flex items-center justify-end"> | |
<span class="status-dot status-pending"></span> | |
<span class="text-gray-400 text-sm font-mono">PROCESSING</span> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="mt-6 text-center"> | |
<button class="border border-tron-light hover:border-neon-primary px-6 py-2 rounded-lg font-medium text-neon-primary hover:text-neon-secondary"> | |
VIEW ALL TRANSACTIONS | |
</button> | |
</div> | |
</section> | |
</main> | |
<!-- Footer --> | |
<footer class="mt-16 pt-12 pb-8 bg-tron-dark border-t border-tron-light"> | |
<div class="container mx-auto px-4"> | |
<div class="grid grid-cols-1 md:grid-cols-4 gap-10"> | |
<div> | |
<div class="flex items-center space-x-3 mb-6"> | |
<div class="hexagon"> | |
<i class="fas fa-bolt text-xl"></i> | |
</div> | |
<span class="text-2xl font-extrabold tracking-wider"> | |
<span class="text-neon-primary">TRON</span> | |
<span class="text-neon-secondary">MINER</span> | |
</span> | |
</div> | |
<p class="text-gray-300 mb-4 font-mono">THE MOST ADVANCED TRX CLOUD MINING PLATFORM WITH HIGH PROFITABILITY AND RELIABLE PAYOUTS.</p> | |
<div class="flex space-x-4"> | |
<a href="#" class="w-10 h-10 rounded-full bg-neon-primary bg-opacity-10 hover:bg-opacity-20 flex items-center justify-center border border-neon-primary" style="box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);"> | |
<i class="fab fa-telegram text-neon-primary"></i> | |
</a> | |
<a href="#" class="w-10 h-10 rounded-full bg-neon-secondary bg-opacity-10 hover:bg-opacity-20 flex items-center justify-center border border-neon-secondary" style="box-shadow: 0 0 10px rgba(255, 0, 228, 0.3);"> | |
<i class="fab fa-twitter"></i> | |
</a> | |
<a href="#" class="w-10 h-10 rounded-full bg-white bg-opacity-10 hover:bg-opacity-20 flex items-center justify-center border border-gray-300"> | |
<i class="fab fa-medium text-gray-300"></i> | |
</a> | |
</div> | |
</div> | |
<div> | |
<h4 class="text-lg font-bold mb-5 text-neon-primary">COMPANY</h4> | |
<ul class="space-y-3"> | |
<li><a href="#" class="text-gray-300 hover:text-neon-primary font-mono">ABOUT US</a></li> | |
<li><a href="#" class="text-gray-300 hover:text-neon-primary font-mono">CAREERS</a></li> | |
<li><a href="#" class="text-gray-300 hover:text-neon-primary font-mono">PRESS</a></li> | |
<li><a href="#" class="text-gray-300 hover:text-neon-primary font-mono">NEWS</a></li> | |
</ul> | |
</div> | |
<div> | |
<h4 class="text-lg font-bold mb-5 text-neon-primary">RESOURCES</h4> | |
<ul class="space-y-3"> | |
<li><a href="#" class="text-gray-300 hover:text-neon-primary font-mono">HELP CENTER</a></li> | |
<li><a href="#" class="text-gray-300 hover:text-neon-primary font-mono">BLOG</a></li> | |
<li><a href="#" class="text-gray-300 hover:text-neon-primary font-mono">COMMUNITY</a></li> | |
<li><a href="#" class="text-gray-300 hover:text-neon-primary font-mono">STATUS</a></li> | |
</ul> | |
</div> | |
<div> | |
<h4 class="text-lg font-bold mb-5 text-neon-primary">LEGAL</h4> | |
<ul class="space-y-3"> | |
<li><a href="#" class="text-gray-300 hover:text-neon-primary font-mono">TERMS OF SERVICE</a></li> | |
<li><a href="#" class="text-gray-300 hover:text-neon-primary font-mono">PRIVACY POLICY</a></li> | |
<li><a href="#" class="text-gray-300 hover:text-neon-primary font-mono">COOKIE POLICY</a></li> | |
<li><a href="#" class="text-gray-300 hover:text-neon-primary font-mono">AML POLICY</a></li> | |
</ul> | |
</div> | |
</div> | |
<div class="border-t border-tron-light mt-12 pt-8 text-center text-gray-400 font-mono"> | |
<p>© 2023 TRONMINER. ALL RIGHTS RESERVED. CRYPTOCURRENCIES ARE CONSIDERED HIGH-RISK INVESTMENTS.</p> | |
<p class="mt-2 text-sm">TRON AND TRONIX ARE TRADEMARKS OF THE TRON FOUNDATION.</p> | |
</div> | |
</div> | |
</footer> | |
<!-- Investment Modal --> | |
<div id="investment-modal" class="fixed inset-0 bg-black bg-opacity-70 flex items-center justify-center z-50 hidden transition-all duration-200"> | |
<div class="bg-tron-dark rounded-xl p-6 w-full max-w-md border border-tron-light transform transition-all relative overflow-hidden"> | |
<div class="absolute -top-20 -right-20 w-40 h-40 rounded-full bg-neon-primary opacity-10 blur-xl"></div> | |
<div class="flex justify-between items-center mb-5"> | |
<h3 id="modal-title" class="text-2xl font-bold"></h3> | |
<button id="close-modal" class="text-gray-400 hover:text-white"> | |
<i class="fas fa-times text-xl"></i> | |
</button> | |
</div> | |
<div class="mb-6"> | |
<label class="block text-gray-400 mb-2 font-mono">INVESTMENT AMOUNT (TRX)</label> | |
<div class="relative"> | |
<input type="number" id="investment-amount" class="w-full bg-tron-light border border-tron-light rounded-lg py-3 px-4 focus:outline-none focus:ring-1 focus:ring-neon-primary font-mono" placeholder="ENTER AMOUNT"> | |
<div class="absolute inset-y-0 right-0 flex items-center pr-3"> | |
<span class="text-gray-400 font-mono">TRX</span> | |
</div> | |
</div> | |
<div class="flex justify-between mt-2 text-sm text-gray-400 font-mono"> | |
<span id="plan-min">MIN: 5,000 TRX</span> | |
<span id="plan-max">MAX: 20,000 TRX</span> | |
</div> | |
</div> | |
<div class="mb-6 bg-tron-light rounded-lg p-4 border border-tron-light"> | |
<h4 class="font-medium mb-3 text-lg">INVESTMENT DETAILS</h4> | |
<div class="space-y-3"> | |
<div class="flex justify-between items-center py-2 border-b border-tron-light font-mono"> | |
<span class="text-gray-400">DAILY PROFIT:</span> | |
<span id="profit-rate" class="font-medium text-green-400">2.8%</span> | |
</div> | |
<div class="flex justify-between items-center py-2 border-b border-tron-light font-mono"> | |
<span class="text-gray-400">TERM:</span> | |
<span id="profit-duration" class="font-medium">25 DAYS</span> | |
</div> | |
<div class="flex justify-between items-center py-2 border-b border-tron-light font-mono"> | |
<span class="text-gray-400">ESTIMATED DAILY:</span> | |
<span id="estimated-daily" class="font-medium text-neon-primary">140 TRX</span> | |
</div> | |
<div class="flex justify-between items-center pt-2 font-mono"> | |
<span class="text-gray-400">TOTAL RETURN:</span> | |
<span id="total-return" class="font-bold text-xl text-green-400">70%</span> | |
</div> | |
</div> | |
</div> | |
<button id="confirm-investment" class="w-full bg-yellow-500 hover:bg-yellow-600 py-3 rounded-lg font-bold text-lg text-tron-dark"> | |
CONFIRM INVESTMENT | |
</button> | |
<div class="mt-4 text-center text-sm text-gray-400 font-mono"> | |
<p>BY PROCEEDING, YOU AGREE TO OUR <a href="#" class="text-blue-400 hover:underline">TERMS OF SERVICE</a></p> | |
</div> | |
</div> | |
</div> | |
<!-- Success Toast --> | |
<div id="success-toast" class="fixed bottom-6 right-6 bg-green-600 text-white px-6 py-3 rounded-lg shadow-lg z-50 hidden transition-all transform translate-y-6 opacity-0 border border-green-400"> | |
<div class="flex items-center space-x-3"> | |
<i class="fas fa-check-circle text-xl"></i> | |
<span id="toast-message" class="font-mono">INVESTMENT CREATED SUCCESSFULLY!</span> | |
</div> | |
</div> | |
<script> | |
// Mobile Menu Toggle | |
const mobileMenuButton = document.getElementById('mobile-menu-button'); | |
const mobileMenu = document.getElementById('mobile-menu'); | |
mobileMenuButton.addEventListener('click', () => { | |
mobileMenu.classList.toggle('hidden'); | |
}); | |
// Investment Modal | |
const investmentModal = document.getElementById('investment-modal'); | |
const closeModal = document.getElementById('close-modal'); | |
const investButtons = document.querySelectorAll('.invest-button'); | |
const confirmInvestment = document.getElementById('confirm-investment'); | |
const modalTitle = document.getElementById('modal-title'); | |
const planMin = document.getElementById('plan-min'); | |
const planMax = document.getElementById('plan-max'); | |
const profitRate = document.getElementById('profit-rate'); | |
const profitDuration = document.getElementById('profit-duration'); | |
const estimatedDaily = document.getElementById('estimated-daily'); | |
const totalReturn = document.getElementById('total-return'); | |
const investmentAmount = document.getElementById('investment-amount'); | |
const successToast = document.getElementById('success-toast'); | |
const toastMessage = document.getElementById('toast-message'); | |
// Plan data | |
const plans = { | |
starter: { | |
name: "STARTER PLAN", | |
min: 100, | |
max: 1000, | |
rate: "1.8%", | |
duration: "15 DAYS", | |
return: "27%", | |
color: "bg-blue-600 hover:bg-blue-700", | |
buttonClass: "bg-blue-600 hover:bg-blue-700" | |
}, | |
advanced: { | |
name: "ADVANCED PLAN", | |
min: 1000, | |
max: 5000, | |
rate: "2.2%", | |
duration: "20 DAYS", | |
return: "44%", | |
color: "bg-green-600 hover:bg-green-700", | |
buttonClass | |
<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=sasa231989/sasa23" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
</html> |