Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Nexus Medical Bay | Deep Space Healthcare</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: { | |
| 'space-blue': '#0a1a35', | |
| 'neon-blue': '#00f0ff', | |
| 'med-purple': '#7d5fff', | |
| 'cryo-blue': '#a0e7ff', | |
| 'alert-red': '#ff3860' | |
| }, | |
| fontFamily: { | |
| 'orbitron': ['Orbitron', 'sans-serif'], | |
| 'rajdhani': ['Rajdhani', 'sans-serif'] | |
| }, | |
| animation: { | |
| 'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite', | |
| 'float': 'float 6s ease-in-out infinite', | |
| }, | |
| keyframes: { | |
| float: { | |
| '0%, 100%': { transform: 'translateY(0)' }, | |
| '50%': { transform: 'translateY(-10px)' }, | |
| } | |
| } | |
| } | |
| } | |
| } | |
| </script> | |
| <style> | |
| @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Rajdhani:wght@300;500;700&display=swap'); | |
| body { | |
| font-family: 'Rajdhani', sans-serif; | |
| background-color: #0a1a35; | |
| color: white; | |
| overflow-x: hidden; | |
| } | |
| .holographic { | |
| position: relative; | |
| } | |
| .holographic::before { | |
| content: ''; | |
| position: absolute; | |
| top: -2px; | |
| left: -2px; | |
| right: -2px; | |
| bottom: -2px; | |
| background: linear-gradient(45deg, #00f0ff, #7d5fff, #ff3860, #00f0ff); | |
| background-size: 400%; | |
| z-index: -1; | |
| filter: blur(5px); | |
| opacity: 0.7; | |
| animation: hologlow 8s linear infinite; | |
| } | |
| @keyframes hologlow { | |
| 0% { background-position: 0 0; } | |
| 50% { background-position: 400% 0; } | |
| 100% { background-position: 0 0; } | |
| } | |
| .panel-glow { | |
| box-shadow: 0 0 15px rgba(0, 240, 255, 0.5); | |
| } | |
| .scanline { | |
| position: relative; | |
| overflow: hidden; | |
| } | |
| .scanline::after { | |
| content: ''; | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| right: 0; | |
| height: 1px; | |
| background: rgba(0, 240, 255, 0.3); | |
| box-shadow: 0 0 5px rgba(0, 240, 255, 0.8); | |
| animation: scan 4s linear infinite; | |
| } | |
| @keyframes scan { | |
| 0% { top: 0; } | |
| 100% { top: 100%; } | |
| } | |
| .hologram { | |
| background: rgba(0, 240, 255, 0.05); | |
| border: 1px solid rgba(0, 240, 255, 0.3); | |
| box-shadow: inset 0 0 20px rgba(0, 240, 255, 0.1), 0 0 30px rgba(0, 240, 255, 0.2); | |
| } | |
| .terminal-text { | |
| font-family: 'Courier New', monospace; | |
| color: #00f0ff; | |
| text-shadow: 0 0 5px #00f0ff; | |
| } | |
| .glass-effect { | |
| background: rgba(10, 26, 53, 0.7); | |
| backdrop-filter: blur(10px); | |
| -webkit-backdrop-filter: blur(10px); | |
| border: 1px solid rgba(0, 240, 255, 0.2); | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <!-- Navigation --> | |
| <nav class="glass-effect fixed w-full z-50"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="flex items-center justify-between h-16"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0"> | |
| <div class="holographic px-4 py-2 rounded-lg"> | |
| <span class="text-white font-orbitron text-xl">NEXUS MEDICAL</span> | |
| </div> | |
| </div> | |
| <div class="hidden md:block"> | |
| <div class="ml-10 flex items-baseline space-x-4"> | |
| <a href="#" class="text-neon-blue hover:text-white px-3 py-2 rounded-md text-sm font-medium">DECK 7</a> | |
| <a href="#" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">CRYO VAULT</a> | |
| <a href="#" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">SURGICAL SUITE</a> | |
| <a href="#" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">QUARANTINE</a> | |
| <a href="#" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">AI CORE</a> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="hidden md:block"> | |
| <div class="ml-4 flex items-center md:ml-6"> | |
| <button class="bg-space-blue p-1 rounded-full text-gray-400 hover:text-white focus:outline-none"> | |
| <span class="sr-only">Alerts</span> | |
| <i class="fas fa-bell h-6 w-6"></i> | |
| </button> | |
| <div class="ml-3 relative"> | |
| <div> | |
| <button class="max-w-xs bg-space-blue rounded-full flex items-center text-sm focus:outline-none" id="user-menu"> | |
| <span class="sr-only">Open user menu</span> | |
| <div class="h-8 w-8 rounded-full bg-gradient-to-r from-neon-blue to-med-purple flex items-center justify-center"> | |
| <i class="fas fa-user-astronaut text-white"></i> | |
| </div> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="-mr-2 flex md:hidden"> | |
| <button type="button" class="bg-space-blue inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-white hover:bg-gray-700 focus:outline-none" aria-controls="mobile-menu" aria-expanded="false"> | |
| <span class="sr-only">Open main menu</span> | |
| <i class="fas fa-bars"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </nav> | |
| <!-- Hero Section --> | |
| <div class="relative pt-24 pb-32 overflow-hidden"> | |
| <div class="absolute inset-0"> | |
| <div class="absolute inset-0 bg-gradient-to-b from-space-blue to-black opacity-90"></div> | |
| <div class="absolute inset-0 bg-[url('https://images.unsplash.com/photo-1534796636912-3b95b3ab5986?q=80&w=1471&auto=format&fit=crop')] bg-cover bg-center mix-blend-overlay opacity-20"></div> | |
| <div class="absolute inset-0 bg-[url('https://images.unsplash.com/photo-1635070041078-e363dbe005cb?q=80&w=1470&auto=format&fit=crop')] bg-cover bg-center mix-blend-overlay opacity-10"></div> | |
| </div> | |
| <div class="relative max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="lg:grid lg:grid-cols-12 lg:gap-8"> | |
| <div class="sm:text-center md:max-w-2xl md:mx-auto lg:col-span-6 lg:text-left"> | |
| <h1 class="text-4xl tracking-tight font-extrabold text-white sm:text-5xl md:text-6xl font-orbitron"> | |
| <span class="block">DEEP SPACE</span> | |
| <span class="block text-neon-blue">MEDICAL BAY</span> | |
| </h1> | |
| <p class="mt-3 text-base text-gray-300 sm:mt-5 sm:text-lg sm:max-w-xl sm:mx-auto md:mt-5 md:text-xl lg:mx-0"> | |
| The most advanced healthcare facility in the known galaxy. Equipped with quantum diagnostics, nano-surgical suites, and AI-assisted treatment protocols. | |
| </p> | |
| <div class="mt-8 sm:max-w-lg sm:mx-auto sm:text-center lg:text-left lg:mx-0"> | |
| <div class="flex flex-col sm:flex-row space-y-3 sm:space-y-0 sm:space-x-4"> | |
| <button class="holographic px-6 py-3 border border-transparent text-base font-medium rounded-md text-white bg-neon-blue hover:bg-opacity-80 md:py-4 md:text-lg md:px-8 transition-all duration-300"> | |
| Virtual Tour | |
| </button> | |
| <button class="px-6 py-3 border border-transparent text-base font-medium rounded-md text-neon-blue bg-white bg-opacity-10 hover:bg-opacity-20 md:py-4 md:text-lg md:px-8 transition-all duration-300"> | |
| Systems Overview | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="mt-12 relative sm:max-w-lg sm:mx-auto lg:mt-0 lg:max-w-none lg:mx-0 lg:col-span-6 lg:flex lg:items-center"> | |
| <div class="relative mx-auto w-full rounded-lg shadow-lg lg:max-w-md h-96"> | |
| <div class="hologram h-full w-full rounded-lg flex items-center justify-center"> | |
| <div class="text-center p-8"> | |
| <div class="animate-float mb-6"> | |
| <i class="fas fa-brain text-6xl text-cryo-blue"></i> | |
| </div> | |
| <h3 class="text-2xl font-bold text-white font-orbitron">NEURAL SCAN INITIATED</h3> | |
| <p class="mt-2 text-gray-300">Establishing quantum link with medical AI</p> | |
| <div class="mt-6 w-full bg-gray-700 rounded-full h-2.5"> | |
| <div class="bg-neon-blue h-2.5 rounded-full" style="width: 45%"></div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Main Section --> | |
| <div class="py-12 bg-space-blue"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="lg:text-center"> | |
| <h2 class="text-base text-neon-blue font-semibold tracking-wide uppercase font-orbitron">MEDICAL SYSTEMS</h2> | |
| <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-white sm:text-4xl font-orbitron"> | |
| Advanced Healthcare Technology | |
| </p> | |
| <p class="mt-4 max-w-2xl text-xl text-gray-300 lg:mx-auto"> | |
| Designed for deep space exploration and long-duration missions | |
| </p> | |
| </div> | |
| <div class="mt-20"> | |
| <div class="grid grid-cols-1 gap-12 sm:grid-cols-2 lg:grid-cols-3"> | |
| <!-- System 1 --> | |
| <div class="glass-effect rounded-xl p-6 hover:panel-glow transition-all duration-300"> | |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-gradient-to-r from-neon-blue to-med-purple text-white"> | |
| <i class="fas fa-dna"></i> | |
| </div> | |
| <div class="mt-6"> | |
| <h3 class="text-lg font-medium text-white font-orbitron">Genomic Repair</h3> | |
| <p class="mt-2 text-base text-gray-300"> | |
| Quantum-assisted DNA reconstruction to counter cosmic radiation damage and cellular degradation. | |
| </p> | |
| </div> | |
| <div class="mt-6"> | |
| <button class="text-neon-blue hover:text-white text-sm font-medium"> | |
| Learn more <span aria-hidden="true">→</span> | |
| </button> | |
| </div> | |
| </div> | |
| <!-- System 2 --> | |
| <div class="glass-effect rounded-xl p-6 hover:panel-glow transition-all duration-300"> | |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-gradient-to-r from-neon-blue to-med-purple text-white"> | |
| <i class="fas fa-procedures"></i> | |
| </div> | |
| <div class="mt-6"> | |
| <h3 class="text-lg font-medium text-white font-orbitron">Cryo-Stasis Pods</h3> | |
| <p class="mt-2 text-base text-gray-300"> | |
| Advanced hibernation technology for long-term patient care during extended space travel. | |
| </p> | |
| </div> | |
| <div class="mt-6"> | |
| <button class="text-neon-blue hover:text-white text-sm font-medium"> | |
| Learn more <span aria-hidden="true">→</span> | |
| </button> | |
| </div> | |
| </div> | |
| <!-- System 3 --> | |
| <div class="glass-effect rounded-xl p-6 hover:panel-glow transition-all duration-300"> | |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-gradient-to-r from-neon-blue to-med-purple text-white"> | |
| <i class="fas fa-robot"></i> | |
| </div> | |
| <div class="mt-6"> | |
| <h3 class="text-lg font-medium text-white font-orbitron">Surgical AI</h3> | |
| <p class="mt-2 text-base text-gray-300"> | |
| Autonomous robotic surgeons with sub-millimeter precision and real-time adaptive protocols. | |
| </p> | |
| </div> | |
| <div class="mt-6"> | |
| <button class="text-neon-blue hover:text-white text-sm font-medium"> | |
| Learn more <span aria-hidden="true">→</span> | |
| </button> | |
| </div> | |
| </div> | |
| <!-- System 4 --> | |
| <div class="glass-effect rounded-xl p-6 hover:panel-glow transition-all duration-300"> | |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-gradient-to-r from-neon-blue to-med-purple text-white"> | |
| <i class="fas fa-virus"></i> | |
| </div> | |
| <div class="mt-6"> | |
| <h3 class="text-lg font-medium text-white font-orbitron">Xeno-Immunology</h3> | |
| <p class="mt-2 text-base text-gray-300"> | |
| Specialized containment and treatment of extraterrestrial pathogens and biological agents. | |
| </p> | |
| </div> | |
| <div class="mt-6"> | |
| <button class="text-neon-blue hover:text-white text-sm font-medium"> | |
| Learn more <span aria-hidden="true">→</span> | |
| </button> | |
| </div> | |
| </div> | |
| <!-- System 5 --> | |
| <div class="glass-effect rounded-xl p-6 hover:panel-glow transition-all duration-300"> | |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-gradient-to-r from-neon-blue to-med-purple text-white"> | |
| <i class="fas fa-brain"></i> | |
| </div> | |
| <div class="mt-6"> | |
| <h3 class="text-lg font-medium text-white font-orbitron">Neural Mapping</h3> | |
| <p class="mt-2 text-base text-gray-300"> | |
| Full consciousness backup and neural pattern stabilization to prevent psychological degradation. | |
| </p> | |
| </div> | |
| <div class="mt-6"> | |
| <button class="text-neon-blue hover:text-white text-sm font-medium"> | |
| Learn more <span aria-hidden="true">→</span> | |
| </button> | |
| </div> | |
| </div> | |
| <!-- System 6 --> | |
| <div class="glass-effect rounded-xl p-6 hover:panel-glow transition-all duration-300"> | |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-gradient-to-r from-neon-blue to-med-purple text-white"> | |
| <i class="fas fa-syringe"></i> | |
| </div> | |
| <div class="mt-6"> | |
| <h3 class="text-lg font-medium text-white font-orbitron">Nano-Medicine</h3> | |
| <p class="mt-2 text-base text-gray-300"> | |
| Programmable medical nanites for targeted treatment, cellular repair, and immune system augmentation. | |
| </p> | |
| </div> | |
| <div class="mt-6"> | |
| <button class="text-neon-blue hover:text-white text-sm font-medium"> | |
| Learn more <span aria-hidden="true">→</span> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Interactive Medical Console --> | |
| <div class="relative py-16 bg-gradient-to-b from-space-blue to-black overflow-hidden"> | |
| <div class="relative max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="lg:grid lg:grid-cols-2 lg:gap-8 lg:items-center"> | |
| <div class="relative"> | |
| <div class="scanline h-96 w-full rounded-xl bg-gray-900 bg-opacity-50 border border-gray-700 p-6"> | |
| <div class="flex justify-between items-center mb-4"> | |
| <h3 class="text-lg font-medium text-white font-orbitron">MEDICAL CONSOLE ALPHA-9</h3> | |
| <div class="flex space-x-2"> | |
| <div class="h-3 w-3 rounded-full bg-green-500"></div> | |
| <div class="h-3 w-3 rounded-full bg-yellow-500"></div> | |
| <div class="h-3 w-3 rounded-full bg-red-500"></div> | |
| </div> | |
| </div> | |
| <div class="terminal-text h-64 overflow-y-auto p-4 bg-black bg-opacity-70 rounded-lg"> | |
| <p class="mb-2">> Initializing Nexus Medical Systems...</p> | |
| <p class="mb-2 text-green-400">> Quantum processors online</p> | |
| <p class="mb-2">> Scanning crew biometrics...</p> | |
| <p class="mb-2 text-green-400">> 24 crew members detected</p> | |
| <p class="mb-2">> Running diagnostic protocols...</p> | |
| <p class="mb-2">> Crew Member ID-4872: Elevated stress markers detected</p> | |
| <p class="mb-2">> Crew Member ID-9103: Minor radiation exposure (0.8 Sv)</p> | |
| <p class="mb-2">> Crew Member ID-2356: Sleep cycle irregularity detected</p> | |
| <p class="mb-2 text-yellow-400">> 3 anomalies found</p> | |
| <p class="mb-2">> Preparing treatment recommendations...</p> | |
| <p class="mb-2">> ID-4872: Prescribing neuro-calming agents</p> | |
| <p class="mb-2">> ID-9103: Initiating cellular repair sequence</p> | |
| <p class="mb-2">> ID-2356: Adjusting melatonin levels</p> | |
| <p class="mb-2 text-green-400">> All systems nominal</p> | |
| </div> | |
| <div class="mt-4 flex space-x-3"> | |
| <button class="px-4 py-2 bg-neon-blue bg-opacity-20 text-neon-blue rounded-md text-sm font-medium hover:bg-opacity-30">DETAILS</button> | |
| <button class="px-4 py-2 bg-med-purple bg-opacity-20 text-med-purple rounded-md text-sm font-medium hover:bg-opacity-30">TREATMENTS</button> | |
| <button class="px-4 py-2 bg-cryo-blue bg-opacity-20 text-cryo-blue rounded-md text-sm font-medium hover:bg-opacity-30">SCAN</button> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="mt-10 -mx-4 relative lg:mt-0"> | |
| <h3 class="text-2xl font-bold text-white font-orbitron mb-6">REAL-TIME CREW MONITORING</h3> | |
| <p class="text-gray-300 mb-6"> | |
| Our AI-driven health monitoring system tracks over 1,200 biometric parameters for each crew member, providing early detection of potential health issues before symptoms manifest. | |
| </p> | |
| <div class="grid grid-cols-2 gap-4"> | |
| <div class="glass-effect p-4 rounded-lg"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 h-10 w-10 rounded-full bg-gradient-to-r from-neon-blue to-med-purple flex items-center justify-center"> | |
| <i class="fas fa-heartbeat text-white"></i> | |
| </div> | |
| <div class="ml-4"> | |
| <p class="text-sm font-medium text-gray-300">VITAL SIGNS</p> | |
| <p class="text-xl font-semibold text-white">24/24 Stable</p> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="glass-effect p-4 rounded-lg"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 h-10 w-10 rounded-full bg-gradient-to-r from-neon-blue to-med-purple flex items-center justify-center"> | |
| <i class="fas fa-radiation text-white"></i> | |
| </div> | |
| <div class="ml-4"> | |
| <p class="text-sm font-medium text-gray-300">RADIATION</p> | |
| <p class="text-xl font-semibold text-white">0.8 Sv Max</p> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="glass-effect p-4 rounded-lg"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 h-10 w-10 rounded-full bg-gradient-to-r from-neon-blue to-med-purple flex items-center justify-center"> | |
| <i class="fas fa-brain text-white"></i> | |
| </div> | |
| <div class="ml-4"> | |
| <p class="text-sm font-medium text-gray-300">NEURAL</p> | |
| <p class="text-xl font-semibold text-white">100% Optimal</p> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="glass-effect p-4 rounded-lg"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 h-10 w-10 rounded-full bg-gradient-to-r from-neon-blue to-med-purple flex items-center justify-center"> | |
| <i class="fas fa-dna text-white"></i> | |
| </div> | |
| <div class="ml-4"> | |
| <p class="text-sm font-medium text-gray-300">GENOMIC</p> | |
| <p class="text-xl font-semibold text-white">0.02% Damage</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="mt-6"> | |
| <button class="holographic px-6 py-3 border border-transparent text-base font-medium rounded-md text-white bg-neon-blue hover:bg-opacity-80 md:py-4 md:text-lg md:px-8 transition-all duration-300"> | |
| Emergency Protocols | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Cryo Chamber Section --> | |
| <div class="py-16 bg-space-blue"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="lg:text-center mb-12"> | |
| <h2 class="text-base text-neon-blue font-semibold tracking-wide uppercase font-orbitron">CRYO-STASIS</h2> | |
| <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-white sm:text-4xl font-orbitron"> | |
| Long-Term Patient Care | |
| </p> | |
| </div> | |
| <div class="grid grid-cols-1 lg:grid-cols-3 gap-8"> | |
| <!-- Cryo Chamber Visualization --> | |
| <div class="lg:col-span-2"> | |
| <div class="relative h-96 rounded-xl overflow-hidden"> | |
| <div class="absolute inset-0 bg-gradient-to-br from-space-blue to-black opacity-90"></div> | |
| <div class="absolute inset-0 flex items-center justify-center"> | |
| <div class="relative w-64 h-96"> | |
| <!-- Cryo Chamber --> | |
| <div class="absolute inset-0 bg-gradient-to-b from-gray-800 to-gray-900 rounded-xl border-2 border-gray-700"> | |
| <div class="absolute top-4 left-0 right-0 flex justify-center"> | |
| <div class="h-2 w-16 bg-gray-700 rounded-full"></div> | |
| </div> | |
| <div class="absolute top-12 left-4 right-4 bottom-4 bg-gray-900 rounded-lg border border-gray-800 flex items-center justify-center"> | |
| <div class="relative"> | |
| <div class="h-48 w-32 bg-gradient-to-b from-blue-900 to-blue-800 rounded-lg flex items-center justify-center"> | |
| <div class="h-40 w-24 bg-gradient-to-b from-blue-700 to-blue-600 rounded-sm flex items-center justify-center relative"> | |
| <!-- Human Silhouette --> | |
| <div class="h-32 w-16 bg-blue-500 bg-opacity-20 rounded-full relative"> | |
| <div class="absolute top-4 left-1/2 transform -translate-x-1/2 h-6 w-6 bg-blue-400 bg-opacity-30 rounded-full"></div> | |
| <div class="absolute top-12 left-1/2 transform -translate-x-1/2 h-12 w-8 bg-blue-400 bg-opacity-20 rounded-t-full"></div> | |
| </div> | |
| <!-- Glass Front --> | |
| <div class="absolute inset-0 border-2 border-blue-400 border-opacity-30 rounded-sm"></div> | |
| </div> | |
| </div> | |
| <!-- Control Panel --> | |
| <div class="absolute -bottom-6 left-0 right-0 bg-gray-800 h-12 rounded-b-lg border border-gray-700 flex items-center justify-center"> | |
| <div class="flex space-x-2"> | |
| <div class="h-2 w-2 rounded-full bg-green-500"></div> | |
| <div class="h-2 w-2 rounded-full bg-blue-500"></div> | |
| <div class="h-2 w-2 rounded-full bg-yellow-500"></div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Status Display --> | |
| <div class="absolute bottom-4 left-0 right-0 text-center"> | |
| <p class="text-xs text-neon-blue font-orbitron">CRYO POD #7</p> | |
| <p class="text-xs text-gray-400">STATUS: ACTIVE</p> | |
| </div> | |
| </div> | |
| <!-- Holographic Display --> | |
| <div class="absolute -right-20 top-1/2 transform -translate-y-1/2"> | |
| <div class="hologram w-32 h-32 rounded-lg flex items-center justify-center"> | |
| <div class="text-center"> | |
| <p class="text-xs text-neon-blue font-orbitron">VITALS</p> | |
| <div class="mt-2"> | |
| <div class="flex justify-between text-xs text-white"> | |
| <span>HR</span> | |
| <span>12</span> | |
| </div> | |
| <div class="flex justify-between text-xs text-white"> | |
| <span>TEMP</span> | |
| <span>-196°C</span> | |
| </div> | |
| <div class="flex justify-between text-xs text-white"> | |
| <span>NEURAL</span> | |
| <span>STABLE</span> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Cryo Information --> | |
| <div class="flex flex-col justify-center"> | |
| <h3 class="text-2xl font-bold text-white font-orbitron mb-4">CRYO-STASIS TECHNOLOGY</h3> | |
| <p class="text-gray-300 mb-6"> | |
| Our Mark VII cryo-stasis pods can safely preserve patients for decades with minimal cellular degradation, using quantum-locked biological suspension. | |
| </p> | |
| <ul class="space-y-4"> | |
| <li class="flex items-start"> | |
| <div class="flex-shrink-0 h-6 w-6 text-neon-blue"> | |
| <i class="fas fa-check-circle"></i> | |
| </div> | |
| <p class="ml-3 text-gray-300">Quantum-level cellular stabilization</p> | |
| </li> | |
| <li class="flex items-start"> | |
| <div class="flex-shrink-0 h-6 w-6 text-neon-blue"> | |
| <i class="fas fa-check-circle"></i> | |
| </div> | |
| <p class="ml-3 text-gray-300">Neural pattern preservation</p> | |
| </li> | |
| <li class="flex items-start"> | |
| <div class="flex-shrink-0 h-6 w-6 text-neon-blue"> | |
| <i class="fas fa-check-circle"></i> | |
| </div> | |
| <p class="ml-3 text-gray-300">Automated revival protocols</p> | |
| </li> | |
| <li class="flex items-start"> | |
| <div class="flex-shrink-0 h-6 w-6 text-neon-blue"> | |
| <i class="fas fa-check-circle"></i> | |
| </div> | |
| <p class="ml-3 text-gray-300">Emergency power reserves (72hr)</p> | |
| </li> | |
| </ul> | |
| <div class="mt-8"> | |
| <button class="holographic px-6 py-3 border border-transparent text-base font-medium rounded-md text-white bg-neon-blue hover:bg-opacity-80 md:py-4 md:text-lg md:px-8 transition-all duration-300"> | |
| Cryo Protocols | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Emergency Section --> | |
| <div class="relative py-16 bg-gradient-to-b from-space-blue to-black overflow-hidden"> | |
| <div class="absolute inset-0"> | |
| <div class="absolute inset-0 bg-[url('https://images.unsplash.com/photo-1533134242443-916b3221fbc8?q=80&w=1470&auto=format&fit=crop')] bg-cover bg-center opacity-10"></div> | |
| <div class="absolute inset-0 bg-gradient-to-t from-black via-transparent to-black opacity-70"></div> | |
| </div> | |
| <div class="relative max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="text-center"> | |
| <h2 class="text-base text-alert-red font-semibold tracking-wide uppercase font-orbitron">EMERGENCY PROTOCOLS</h2> | |
| <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-white sm:text-4xl font-orbitron"> | |
| Critical Care Systems | |
| </p> | |
| <p class="mt-4 max-w-2xl text-xl text-gray-300 mx-auto"> | |
| Designed to handle medical emergencies in deep space environments | |
| </p> | |
| </div> | |
| <div class="mt-16 grid grid-cols-1 gap-8 sm:grid-cols-2 lg:grid-cols-3"> | |
| <!-- Emergency 1 --> | |
| <div class="glass-effect rounded-xl p-6 hover:border-alert-red transition-all duration-300"> | |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-gradient-to-r from-alert-red to-pink-600 text-white"> | |
| <i class="fas fa-biohazard"></i> | |
| </div> | |
| <div class="mt-6"> | |
| <h3 class="text-lg font-medium text-white font-orbitron">Bio-Containment</h3> | |
| <p class="mt-2 text-base text-gray-300"> | |
| Instant quarantine fields and sterilization protocols for biological hazards. | |
| </p> | |
| </div> | |
| <div class="mt-6"> | |
| <button class="text-alert-red hover:text-white text-sm font-medium"> | |
| Protocol Details <span aria-hidden="true">→</span> | |
| </button> | |
| </div> | |
| </div> | |
| <!-- Emergency 2 --> | |
| <div class="glass-effect rounded-xl p-6 hover:border-alert-red transition-all duration-300"> | |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-gradient-to-r from-alert-red to-pink-600 text-white"> | |
| <i class="fas fa-lungs-virus"></i> | |
| </div> | |
| <div class="mt-6"> | |
| <h3 class="text-lg font-medium text-white font-orbitron">Atmospheric Control</h3> | |
| <p class="mt-2 text-base text-gray-300"> | |
| Rapid atmospheric purification and medical-grade air supply. | |
| </p> | |
| </div> | |
| <div class="mt-6"> | |
| <button class="text-alert-red hover:text-white text-sm font-medium"> | |
| Protocol Details <span aria-hidden="true">→</span> | |
| </button> | |
| </div> | |
| </div> | |
| <!-- Emergency 3 --> | |
| <div class="glass-effect rounded-xl p-6 hover:border-alert-red transition-all duration-300"> | |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-gradient-to-r from-alert-red to-pink-600 text-white"> | |
| <i class="fas fa-heartbeat"></i> | |
| </div> | |
| <div class="mt-6"> | |
| <h3 class="text-lg font-medium text-white font-orbitron">Stasis Field</h3> | |
| <p class="mt-2 text-base text-gray-300"> | |
| Temporal stasis for critical patients until advanced treatment is available. | |
| </p> | |
| </div> | |
| <div class="mt-6"> | |
| <button class="text-alert-red hover:text-white text-sm font-medium"> | |
| Protocol Details <span aria-hidden="true">→</span> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="mt-16 text-center"> | |
| <div class="inline-flex rounded-md shadow"> | |
| <button class="inline-flex items-center justify-center px-6 py-3 border border-transparent text-base font-medium rounded-md text-white bg-alert-red hover:bg-opacity-80 md:py-4 md:text-lg md:px-8 transition-all duration-300"> | |
| <i class="fas fa-triangle-exclamation mr-2"></i> Initiate Emergency Protocol | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Footer --> | |
| <footer class="bg-black bg-opacity-50"> | |
| <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8"> | |
| <div class="grid grid-cols-2 md:grid-cols-4 gap-8"> | |
| <div> | |
| <h3 class="text-sm font-semibold text-neon-blue tracking-wider uppercase font-orbitron">MEDICAL</h3> | |
| <ul class="mt-4 space-y-2"> | |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">Crew Health</a></li> | |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">Surgical Suite</a></li> | |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">Pharmacy</a></li> | |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">Rehabilitation</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h3 class="text-sm font-semibold text-neon-blue tracking-wider uppercase font-orbitron">TECHNOLOGY</h3> | |
| <ul class="mt-4 space-y-2"> | |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">AI Systems</a></li> | |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">Nanotechnology</a></li> | |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">Diagnostics</a></li> | |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">Research</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h3 class="text-sm font-semibold text-neon-blue tracking-wider uppercase font-orbitron">RESOURCES</h3> | |
| <ul class="mt-4 space-y-2"> | |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">Manuals</a></li> | |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">Training</a></li> | |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">Research Papers</a></li> | |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">Standards</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h3 class="text-sm font-semibold text-neon-blue tracking-wider uppercase font-orbitron">CONTACT</h3> | |
| <ul class="mt-4 space-y-2"> | |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">Medical AI</a></li> | |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">Chief Medical Officer</a></li> | |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">Emergency Channel</a></li> | |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">Ship Comms</a></li> | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="mt-12 border-t border-gray-800 pt-8"> | |
| <div class="md:flex md:items-center md:justify-between"> | |
| <div class="flex justify-center md:order-2 space-x-6"> | |
| <a href="#" class="text-gray-400 hover:text-white"> | |
| <i class="fab fa-twitter"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white"> | |
| <i class="fab fa-github"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white"> | |
| <i class="fab fa-discord"></i> | |
| </a> | |
| </div> | |
| <div class="mt-8 md:mt-0 md:order-1"> | |
| <p class="text-center text-base text-gray-400"> | |
| © 2187 Nexus Medical Systems. Deep Space Division. | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </footer> | |
| <!-- Floating AI Assistant --> | |
| <div class="fixed bottom-6 right-6 z-50"> | |
| <button id="ai-assistant" class="h-16 w-16 rounded-full bg-gradient-to-br from-neon-blue to-med-purple flex items-center justify-center text-white shadow-lg hover:shadow-xl transition-all duration-300 animate-float"> | |
| <i class="fas fa-robot text-2xl"></i> | |
| </button> | |
| <div id="ai-panel" class="hidden absolute bottom-20 right-0 w-64 bg-gray-900 rounded-lg shadow-xl border border-gray-700"> | |
| <div class="p-4 border-b border-gray-700"> | |
| <div class="flex items-center"> | |
| <div class="h-8 w-8 rounded-full bg-gradient-to-r from-neon-blue to-med-purple flex items-center justify-center"> | |
| <i class="fas fa-robot text-white text-sm"></i> | |
| </div> | |
| <div class="ml-3"> | |
| <p class="text-sm font-medium text-white">MEDICAL AI</p> | |
| <p class="text-xs text-gray-400">ONLINE</p> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="p-4"> | |
| <p class="text-sm text-gray-300">How may I assist with medical operations today?</p> | |
| <div class="mt-4 space-y-2"> | |
| <button class="w-full text-left px-3 py-2 bg-gray-800 hover:bg-gray-700 rounded text-sm text-white">Patient Records</button> | |
| <button class="w-full text-left px-3 py-2 bg-gray-800 hover:bg-gray-700 rounded text-sm text-white">Diagnostic Scan</button> | |
| <button class="w-full text-left px-3 py-2 bg-gray-800 hover:bg-gray-700 rounded text-sm text-white">Emergency Protocol</button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <script> | |
| // Toggle AI Assistant Panel | |
| document.getElementById('ai-assistant').addEventListener('click', function() { | |
| const panel = document.getElementById('ai-panel'); | |
| panel.classList.toggle('hidden'); | |
| }); | |
| // Close AI panel when clicking outside | |
| document.addEventListener('click', function(event) { | |
| const aiBtn = document.getElementById('ai-assistant'); | |
| const aiPanel = document.getElementById('ai-panel'); | |
| if (!aiBtn.contains(event.target) && !aiPanel.contains(event.target)) { | |
| aiPanel.classList.add('hidden'); | |
| } | |
| }); | |
| // Simulate terminal text animation | |
| const terminal = document.querySelector('.terminal-text'); | |
| if (terminal) { | |
| let lines = terminal.innerHTML.split('<br>').filter(line => line.trim() !== ''); | |
| terminal.innerHTML = ''; | |
| let i = 0; | |
| const typeWriter = setInterval(() => { | |
| if (i < lines.length) { | |
| terminal.innerHTML += lines[i] + '<br>'; | |
| terminal.scrollTop = terminal.scrollHeight; | |
| i++; | |
| } else { | |
| clearInterval(typeWriter); | |
| } | |
| }, 200); | |
| } | |
| </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=KatEdwards/deepspacemedicalbay" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |