Spaces:
Running
Running
File size: 68,867 Bytes
9086241 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 |
<!DOCTYPE html>
<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> |