Spaces:
Running
Running
File size: 34,498 Bytes
d2978f0 |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NeonMail 2035</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">
<style>
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700&family=Roboto+Mono:wght@300;400;500&display=swap');
:root {
--neon-pink: #ff2a6d;
--neon-blue: #05d9e8;
--neon-purple: #d300c5;
--neon-green: #00ff9d;
--neon-yellow: #f9f002;
--dark-bg: #0d0221;
}
body {
font-family: 'Roboto Mono', monospace;
background-color: var(--dark-bg);
color: white;
overflow-x: hidden;
}
.title-font {
font-family: 'Orbitron', sans-serif;
}
.neon-text-pink {
color: var(--neon-pink);
text-shadow: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink);
}
.neon-text-blue {
color: var(--neon-blue);
text-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue);
}
.neon-text-purple {
color: var(--neon-purple);
text-shadow: 0 0 10px var(--neon-purple), 0 0 20px var(--neon-purple);
}
.neon-border-pink {
border-color: var(--neon-pink);
box-shadow: 0 0 10px var(--neon-pink), inset 0 0 10px var(--neon-pink);
}
.neon-border-blue {
border-color: var(--neon-blue);
box-shadow: 0 0 10px var(--neon-blue), inset 0 0 10px var(--neon-blue);
}
.neon-border-purple {
border-color: var(--neon-purple);
box-shadow: 0 0 10px var(--neon-purple), inset 0 0 10px var(--neon-purple);
}
.neon-border-green {
border-color: var(--neon-green);
box-shadow: 0 0 10px var(--neon-green), inset 0 0 10px var(--neon-green);
}
.neon-border-yellow {
border-color: var(--neon-yellow);
box-shadow: 0 0 10px var(--neon-yellow), inset 0 0 10px var(--neon-yellow);
}
.neon-bg-pink {
background-color: rgba(255, 42, 109, 0.1);
box-shadow: 0 0 15px rgba(255, 42, 109, 0.5);
}
.neon-bg-blue {
background-color: rgba(5, 217, 232, 0.1);
box-shadow: 0 0 15px rgba(5, 217, 232, 0.5);
}
.neon-bg-purple {
background-color: rgba(211, 0, 197, 0.1);
box-shadow: 0 0 15px rgba(211, 0, 197, 0.5);
}
.neon-bg-green {
background-color: rgba(0, 255, 157, 0.1);
box-shadow: 0 0 15px rgba(0, 255, 157, 0.5);
}
.neon-bg-yellow {
background-color: rgba(249, 240, 2, 0.1);
box-shadow: 0 0 15px rgba(249, 240, 2, 0.5);
}
.glow-on-hover:hover {
filter: brightness(1.2);
transform: scale(1.02);
transition: all 0.3s ease;
}
.pulse {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { opacity: 0.7; }
50% { opacity: 1; }
100% { opacity: 0.7; }
}
.scanline {
position: relative;
overflow: hidden;
}
.scanline::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 2px;
background: linear-gradient(to bottom, transparent, var(--neon-blue), transparent);
animation: scan 8s linear infinite;
}
@keyframes scan {
0% { top: -100%; }
100% { top: 100%; }
}
.message-preview {
border-left: 3px solid transparent;
transition: all 0.3s ease;
}
.message-preview:hover {
border-left-color: var(--neon-green);
background-color: rgba(0, 255, 157, 0.05);
}
.message-preview.unread {
border-left-color: var(--neon-pink);
}
.message-preview.important {
border-left-color: var(--neon-yellow);
}
.message-preview.flagged {
border-left-color: var(--neon-purple);
}
.neon-input {
background-color: rgba(255, 255, 255, 0.05);
border: 1px solid var(--neon-blue);
color: white;
transition: all 0.3s ease;
}
.neon-input:focus {
outline: none;
border-color: var(--neon-green);
box-shadow: 0 0 10px var(--neon-green);
}
.neon-button {
transition: all 0.3s ease;
border: 1px solid;
}
.neon-button:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0, 255, 157, 0.4);
}
.neon-button-pink {
border-color: var(--neon-pink);
color: var(--neon-pink);
}
.neon-button-pink:hover {
background-color: rgba(255, 42, 109, 0.2);
}
.neon-button-blue {
border-color: var(--neon-blue);
color: var(--neon-blue);
}
.neon-button-blue:hover {
background-color: rgba(5, 217, 232, 0.2);
}
.neon-button-green {
border-color: var(--neon-green);
color: var(--neon-green);
}
.neon-button-green:hover {
background-color: rgba(0, 255, 157, 0.2);
}
.neon-tab {
border-bottom: 3px solid transparent;
transition: all 0.3s ease;
}
.neon-tab:hover, .neon-tab.active {
border-bottom-color: var(--neon-blue);
color: var(--neon-blue);
}
.notification-dot {
width: 8px;
height: 8px;
border-radius: 50%;
background-color: var(--neon-pink);
box-shadow: 0 0 5px var(--neon-pink);
animation: pulse 1.5s infinite;
}
.avatar-ring {
border: 2px solid var(--neon-blue);
box-shadow: 0 0 10px var(--neon-blue);
}
.sidebar-item {
transition: all 0.3s ease;
border-left: 3px solid transparent;
}
.sidebar-item:hover, .sidebar-item.active {
border-left-color: var(--neon-purple);
background-color: rgba(211, 0, 197, 0.1);
}
.sidebar-item .icon {
transition: all 0.3s ease;
}
.sidebar-item:hover .icon, .sidebar-item.active .icon {
transform: scale(1.2);
color: var(--neon-purple);
}
.scrollbar-hide::-webkit-scrollbar {
display: none;
}
.scrollbar-hide {
-ms-overflow-style: none;
scrollbar-width: none;
}
</style>
</head>
<body class="min-h-screen flex flex-col">
<!-- Top Navigation Bar -->
<header class="bg-black bg-opacity-50 backdrop-blur-md border-b border-gray-800 neon-border-blue p-4">
<div class="container mx-auto flex justify-between items-center">
<div class="flex items-center space-x-4">
<div class="neon-text-pink title-font text-2xl flex items-center">
<i class="fas fa-envelope mr-2"></i>
<span>NeonMail</span>
<span class="text-xs neon-text-blue ml-1">2035</span>
</div>
<div class="relative hidden md:block">
<input type="text" placeholder="Search across the multiverse..."
class="neon-input px-4 py-2 rounded-full w-64 focus:w-80 transition-all duration-300">
<i class="fas fa-search neon-text-blue absolute right-3 top-2.5"></i>
</div>
</div>
<div class="flex items-center space-x-6">
<button class="neon-button neon-button-blue px-4 py-2 rounded-full flex items-center">
<i class="fas fa-plus mr-2"></i>
<span>New Message</span>
</button>
<div class="relative">
<div class="avatar-ring w-10 h-10 rounded-full bg-gray-700 flex items-center justify-center cursor-pointer">
<i class="fas fa-user neon-text-blue"></i>
</div>
<div class="notification-dot absolute top-0 right-0"></div>
</div>
</div>
</div>
</header>
<!-- Main Content Area -->
<div class="flex flex-1 overflow-hidden">
<!-- Sidebar -->
<aside class="w-16 md:w-64 bg-black bg-opacity-30 border-r border-gray-800 neon-border-purple flex flex-col">
<div class="p-4 flex flex-col space-y-6">
<div class="sidebar-item active p-3 rounded-lg flex items-center cursor-pointer">
<i class="fas fa-inbox icon neon-text-pink text-xl md:mr-3"></i>
<span class="hidden md:block neon-text-pink">Inbox</span>
<span class="hidden md:block ml-auto neon-text-blue">1.2k</span>
</div>
<div class="sidebar-item p-3 rounded-lg flex items-center cursor-pointer">
<i class="fas fa-star icon neon-text-yellow text-xl md:mr-3"></i>
<span class="hidden md:block">Starred</span>
<span class="hidden md:block ml-auto text-gray-400">42</span>
</div>
<div class="sidebar-item p-3 rounded-lg flex items-center cursor-pointer">
<i class="fas fa-paper-plane icon neon-text-blue text-xl md:mr-3"></i>
<span class="hidden md:block">Sent</span>
</div>
<div class="sidebar-item p-3 rounded-lg flex items-center cursor-pointer">
<i class="fas fa-file-alt icon neon-text-green text-xl md:mr-3"></i>
<span class="hidden md:block">Drafts</span>
<span class="hidden md:block ml-auto text-gray-400">12</span>
</div>
<div class="sidebar-item p-3 rounded-lg flex items-center cursor-pointer">
<i class="fas fa-trash icon text-xl md:mr-3"></i>
<span class="hidden md:block">Trash</span>
</div>
<div class="pt-6 border-t border-gray-800 neon-border-green hidden md:block">
<h3 class="neon-text-purple uppercase text-xs font-bold mb-3">Smart Folders</h3>
<div class="sidebar-item p-3 rounded-lg flex items-center cursor-pointer">
<i class="fas fa-bolt icon neon-text-yellow text-sm mr-3"></i>
<span>High Priority</span>
<span class="ml-auto text-gray-400">87</span>
</div>
<div class="sidebar-item p-3 rounded-lg flex items-center cursor-pointer">
<i class="fas fa-users icon neon-text-blue text-sm mr-3"></i>
<span>Team</span>
</div>
<div class="sidebar-item p-3 rounded-lg flex items-center cursor-pointer">
<i class="fas fa-shopping-cart icon neon-text-green text-sm mr-3"></i>
<span>Purchases</span>
<span class="ml-auto text-gray-400">24</span>
</div>
</div>
</div>
<div class="mt-auto p-4 neon-bg-blue rounded-t-lg">
<div class="flex items-center justify-between">
<div class="flex items-center">
<div class="w-3 h-3 rounded-full bg-green-500 mr-2"></div>
<span class="text-xs neon-text-blue">Quantum Sync</span>
</div>
<span class="text-xs">v9.4.2</span>
</div>
<div class="mt-2 text-xs text-gray-400">Last sync: 12:47:23</div>
</div>
</aside>
<!-- Email List -->
<div class="flex-1 flex flex-col border-r border-gray-800 neon-border-green overflow-hidden">
<div class="p-4 border-b border-gray-800 neon-border-pink flex justify-between items-center">
<div class="flex space-x-4">
<div class="neon-tab active">Primary</div>
<div class="neon-tab">Social</div>
<div class="neon-tab">Promotions</div>
</div>
<div class="flex items-center space-x-4">
<button class="neon-button neon-button-green px-3 py-1 rounded-full text-sm">
<i class="fas fa-sync-alt mr-1"></i>
<span class="hidden md:inline">Refresh</span>
</button>
<div class="relative">
<button class="neon-button neon-button-blue px-3 py-1 rounded-full text-sm">
<i class="fas fa-filter mr-1"></i>
<span class="hidden md:inline">Filter</span>
</button>
<div class="notification-dot absolute top-0 right-0"></div>
</div>
</div>
</div>
<div class="overflow-y-auto scrollbar-hide flex-1">
<!-- Email Item -->
<div class="message-preview unread p-4 border-b border-gray-800 cursor-pointer neon-bg-pink">
<div class="flex items-start">
<div class="w-10 h-10 rounded-full bg-purple-900 flex items-center justify-center mr-4 neon-border-purple">
<i class="fas fa-user-astronaut neon-text-purple"></i>
</div>
<div class="flex-1 min-w-0">
<div class="flex justify-between items-baseline">
<h3 class="font-bold truncate neon-text-blue">Quantum Computing Division</h3>
<span class="text-xs neon-text-yellow">12:47 PM</span>
</div>
<p class="font-bold truncate">Your Qubit Allocation Request Has Been Approved</p>
<p class="text-sm text-gray-400 truncate">Congratulations! Your request for 128 qubits on the Orion-9 quantum cluster has been approved. Access will be granted starting tomorrow at 08:00 UTC.</p>
<div class="flex mt-2 space-x-2">
<span class="text-xs px-2 py-1 rounded-full neon-bg-blue">Priority</span>
<span class="text-xs px-2 py-1 rounded-full neon-bg-purple">Quantum</span>
</div>
</div>
</div>
</div>
<!-- Email Item -->
<div class="message-preview important p-4 border-b border-gray-800 cursor-pointer">
<div class="flex items-start">
<div class="w-10 h-10 rounded-full bg-yellow-900 flex items-center justify-center mr-4 neon-border-yellow">
<i class="fas fa-exclamation neon-text-yellow"></i>
</div>
<div class="flex-1 min-w-0">
<div class="flex justify-between items-baseline">
<h3 class="font-bold truncate">Security Alert System</h3>
<span class="text-xs text-gray-400">Today, 10:23 AM</span>
</div>
<p class="font-bold truncate">Unauthorized Access Attempt Detected</p>
<p class="text-sm text-gray-400 truncate">Our systems detected an unauthorized attempt to access your neural interface from an unknown location. Please verify your security settings immediately.</p>
<div class="flex mt-2 space-x-2">
<span class="text-xs px-2 py-1 rounded-full neon-bg-pink">Security</span>
<span class="text-xs px-2 py-1 rounded-full neon-bg-yellow">Urgent</span>
</div>
</div>
</div>
</div>
<!-- Email Item -->
<div class="message-preview p-4 border-b border-gray-800 cursor-pointer">
<div class="flex items-start">
<div class="w-10 h-10 rounded-full bg-blue-900 flex items-center justify-center mr-4 neon-border-blue">
<i class="fas fa-calendar-alt neon-text-blue"></i>
</div>
<div class="flex-1 min-w-0">
<div class="flex justify-between items-baseline">
<h3 class="font-bold truncate">Mars Colony Events</h3>
<span class="text-xs text-gray-400">Yesterday, 4:12 PM</span>
</div>
<p class="font-bold truncate">Weekly Anti-Gravity Yoga Session</p>
<p class="text-sm text-gray-400 truncate">Join us this Friday at the Olympus Mons Recreation Dome for our weekly anti-gravity yoga session. Mats and inertial dampeners provided.</p>
<div class="flex mt-2 space-x-2">
<span class="text-xs px-2 py-1 rounded-full neon-bg-green">Event</span>
</div>
</div>
</div>
</div>
<!-- Email Item -->
<div class="message-preview flagged p-4 border-b border-gray-800 cursor-pointer">
<div class="flex items-start">
<div class="w-10 h-10 rounded-full bg-pink-900 flex items-center justify-center mr-4 neon-border-pink">
<i class="fas fa-heart neon-text-pink"></i>
</div>
<div class="flex-1 min-w-0">
<div class="flex justify-between items-baseline">
<h3 class="font-bold truncate">Neural Dating Network</h3>
<span class="text-xs text-gray-400">Yesterday, 11:47 AM</span>
</div>
<p class="font-bold truncate">3 New Compatibility Matches</p>
<p class="text-sm text-gray-400 truncate">Based on your neural activity patterns, we've found 3 new potential matches with 89%+ compatibility. Tap to view their holographic profiles.</p>
<div class="flex mt-2 space-x-2">
<span class="text-xs px-2 py-1 rounded-full neon-bg-purple">Dating</span>
</div>
</div>
</div>
</div>
<!-- Email Item -->
<div class="message-preview p-4 border-b border-gray-800 cursor-pointer">
<div class="flex items-start">
<div class="w-10 h-10 rounded-full bg-green-900 flex items-center justify-center mr-4 neon-border-green">
<i class="fas fa-shopping-cart neon-text-green"></i>
</div>
<div class="flex-1 min-w-0">
<div class="flex justify-between items-baseline">
<h3 class="font-bold truncate">Orbital Delivery Express</h3>
<span class="text-xs text-gray-400">Tue, 9:32 AM</span>
</div>
<p class="font-bold truncate">Your Package Has Entered Earth's Atmosphere</p>
<p class="text-sm text-gray-400 truncate">Your order #QE-2049-772 (1x Personal Hoverboard) has cleared customs and will be delivered via drone within the next 47 minutes.</p>
<div class="flex mt-2 space-x-2">
<span class="text-xs px-2 py-1 rounded-full neon-bg-blue">Shipping</span>
</div>
</div>
</div>
</div>
<!-- Email Item -->
<div class="message-preview p-4 border-b border-gray-800 cursor-pointer">
<div class="flex items-start">
<div class="w-10 h-10 rounded-full bg-gray-700 flex items-center justify-center mr-4">
<i class="fas fa-newspaper"></i>
</div>
<div class="flex-1 min-w-0">
<div class="flex justify-between items-baseline">
<h3 class="font-bold truncate">Galactic News Network</h3>
<span class="text-xs text-gray-400">Mon, 6:14 PM</span>
</div>
<p class="font-bold truncate">Breaking: First Successful Teleportation of Living Organism</p>
<p class="text-sm text-gray-400 truncate">Scientists at the Alpha Centauri Research Station have successfully teleported a live specimen of the newly discovered Xenomorph butterfly across 3 light years.</p>
<div class="flex mt-2 space-x-2">
<span class="text-xs px-2 py-1 rounded-full bg-gray-800">News</span>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Email Content -->
<div class="hidden lg:flex flex-col w-1/2 xl:w-2/5 border-l border-gray-800 neon-border-yellow">
<div class="p-4 border-b border-gray-800 flex justify-between items-center neon-bg-purple">
<h2 class="neon-text-purple title-font text-xl">Message</h2>
<div class="flex space-x-3">
<button class="neon-button neon-button-blue p-2 rounded-full">
<i class="fas fa-reply"></i>
</button>
<button class="neon-button neon-button-green p-2 rounded-full">
<i class="fas fa-share"></i>
</button>
<button class="neon-button neon-button-pink p-2 rounded-full">
<i class="fas fa-trash"></i>
</button>
</div>
</div>
<div class="p-6 overflow-y-auto flex-1 scanline">
<div class="mb-8">
<h1 class="neon-text-blue title-font text-2xl mb-4">Your Qubit Allocation Request Has Been Approved</h1>
<div class="flex items-center justify-between mb-6">
<div class="flex items-center">
<div class="w-12 h-12 rounded-full bg-purple-900 flex items-center justify-center mr-4 neon-border-purple">
<i class="fas fa-user-astronaut neon-text-purple text-xl"></i>
</div>
<div>
<p class="font-bold neon-text-blue">Quantum Computing Division</p>
<p class="text-sm text-gray-400">[email protected]</p>
</div>
</div>
<div class="text-sm neon-text-yellow">12:47 PM • Today</div>
</div>
</div>
<div class="prose prose-invert max-w-none">
<p class="mb-4">Dear Quantum Researcher,</p>
<p class="mb-4">We are pleased to inform you that your request for quantum computing resources has been approved by the Orion Allocation Committee.</p>
<div class="neon-bg-blue p-4 rounded-lg mb-6">
<h3 class="neon-text-blue font-bold mb-2">Allocation Details:</h3>
<ul class="list-disc pl-5 space-y-1">
<li><span class="font-bold">Qubits:</span> 128 logical qubits</li>
<li><span class="font-bold">Cluster:</span> Orion-9 (7th generation photonic)</li>
<li><span class="font-bold">Time Slot:</span> 08:00 - 20:00 UTC daily</li>
<li><span class="font-bold">Duration:</span> 14 Earth days (extendable)</li>
<li><span class="font-bold">Coherence Time:</span> 450µs (guaranteed)</li>
</ul>
</div>
<p class="mb-4">Your project "<span class="neon-text-green">Topological Quantum Memory Optimization</span>" has been prioritized due to its potential impact on our quantum networking infrastructure.</p>
<p class="mb-4">Access credentials and connection protocols have been attached to this message. Please ensure you've completed the mandatory Quantum Safety Certification (QSC-9) before your first session.</p>
<div class="neon-bg-pink p-4 rounded-lg mb-6">
<h3 class="neon-text-pink font-bold mb-2">Important Notes:</h3>
<ul class="list-disc pl-5 space-y-1">
<li>The Orion-9 cluster operates at 0.008°K - ensure your cryogenic protocols are active before connecting</li>
<li>All quantum algorithms must be submitted for decoherence validation at least 6 hours before execution</li>
<li>Any detected quantum entanglement with unauthorized systems will result in immediate termination of your allocation</li>
</ul>
</div>
<p class="mb-4">We look forward to seeing the results of your research. Should you require any assistance, our Quantum Support Team is available 24/7 via neural link or through the Quantum Console in your dashboard.</p>
<p class="mb-4 neon-text-blue">For the future of quantum computing,</p>
<p class="font-bold neon-text-purple">Dr. Elara Voss</p>
<p class="text-sm">Director, Quantum Resource Allocation</p>
<p class="text-sm neon-text-blue">NeonCorp Quantum Division</p>
</div>
<div class="mt-8 pt-6 border-t border-gray-800 neon-border-green">
<h3 class="neon-text-green font-bold mb-4">Attachments (2)</h3>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
<div class="neon-bg-purple p-3 rounded-lg flex items-center cursor-pointer glow-on-hover">
<div class="w-12 h-12 rounded-lg bg-purple-900 flex items-center justify-center mr-3 neon-border-purple">
<i class="fas fa-key neon-text-purple"></i>
</div>
<div>
<p class="font-bold truncate">Orion-9_Access_Credentials.qkey</p>
<p class="text-xs text-gray-400">12.4 KB • Quantum Encrypted</p>
</div>
</div>
<div class="neon-bg-blue p-3 rounded-lg flex items-center cursor-pointer glow-on-hover">
<div class="w-12 h-12 rounded-lg bg-blue-900 flex items-center justify-center mr-3 neon-border-blue">
<i class="fas fa-book neon-text-blue"></i>
</div>
<div>
<p class="font-bold truncate">Orion-9_Protocol_Handbook.pdf</p>
<p class="text-xs text-gray-400">4.7 MB • 128 pages</p>
</div>
</div>
</div>
</div>
</div>
<div class="p-4 border-t border-gray-800 neon-border-pink">
<div class="flex space-x-3">
<button class="neon-button neon-button-green flex-1 py-3 rounded-lg flex items-center justify-center">
<i class="fas fa-reply mr-2"></i>
<span>Reply</span>
</button>
<button class="neon-button neon-button-blue flex-1 py-3 rounded-lg flex items-center justify-center">
<i class="fas fa-share mr-2"></i>
<span>Forward</span>
</button>
</div>
</div>
</div>
</div>
<!-- Mobile Compose Button -->
<div class="lg:hidden fixed bottom-6 right-6">
<button class="neon-button neon-button-pink w-14 h-14 rounded-full text-2xl flex items-center justify-center shadow-lg">
<i class="fas fa-plus"></i>
</button>
</div>
<!-- Status Bar -->
<footer class="bg-black bg-opacity-50 border-t border-gray-800 neon-border-blue p-2 text-xs flex justify-between items-center">
<div class="flex items-center space-x-4">
<div class="flex items-center neon-text-green">
<i class="fas fa-shield-alt mr-1"></i>
<span>Quantum Encryption Active</span>
</div>
<div class="hidden md:flex items-center">
<i class="fas fa-satellite-dish mr-1 neon-text-blue"></i>
<span>Neural Uplink: 12.7Gbps</span>
</div>
</div>
<div class="flex items-center space-x-4">
<div class="flex items-center">
<i class="fas fa-battery-three-quarters mr-1 neon-text-yellow"></i>
<span>78%</span>
</div>
<div class="hidden sm:flex items-center">
<i class="fas fa-cloud mr-1 neon-text-purple"></i>
<span>Orion-9 Cluster • 128Q Online</span>
</div>
<div class="neon-text-blue">
<span>Earth Standard Time: </span>
<span id="datetime" class="font-mono">Loading...</span>
</div>
</div>
</footer>
<script>
// Update datetime
function updateDateTime() {
const now = new Date();
const dateStr = now.toLocaleDateString('en-US', {
year: 'numeric',
month: 'short',
day: 'numeric',
timeZone: 'UTC'
});
const timeStr = now.toLocaleTimeString('en-US', {
hour12: false,
hour: '2-digit',
minute: '2-digit',
second: '2-digit',
timeZone: 'UTC'
});
document.getElementById('datetime').textContent = `${dateStr} • ${timeStr} UTC`;
}
updateDateTime();
setInterval(updateDateTime, 1000);
// Add hover effects to message previews
document.querySelectorAll('.message-preview').forEach(preview => {
preview.addEventListener('mouseenter', function() {
this.classList.add('glow-on-hover');
});
preview.addEventListener('mouseleave', function() {
this.classList.remove('glow-on-hover');
});
});
// Tab switching functionality
document.querySelectorAll('.neon-tab').forEach(tab => {
tab.addEventListener('click', function() {
document.querySelectorAll('.neon-tab').forEach(t => t.classList.remove('active'));
this.classList.add('active');
});
});
// Sidebar item switching
document.querySelectorAll('.sidebar-item').forEach(item => {
item.addEventListener('click', function() {
document.querySelectorAll('.sidebar-item').forEach(i => i.classList.remove('active'));
this.classList.add('active');
});
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=molonelaveh/email-client" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |