Spaces:
Running
Running
| @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;800&family=Outfit:wght@300;400;600;700&display=swap'); | |
| :root { | |
| --bg-color: #080a0f; | |
| --card-bg: rgba(13, 17, 24, 0.75); | |
| --card-border: rgba(0, 240, 255, 0.15); | |
| --card-border-hover: rgba(0, 240, 255, 0.35); | |
| --neon-cyan: #00f0ff; | |
| --neon-magenta: #ff007f; | |
| --neon-orange: #ff9900; | |
| --neon-red: #ff003c; | |
| --neon-green: #39ff14; | |
| --text-primary: #f0f4f8; | |
| --text-secondary: #8fa0b5; | |
| } | |
| * { | |
| box-sizing: border-box; | |
| margin: 0; | |
| padding: 0; | |
| } | |
| body { | |
| background-color: var(--bg-color); | |
| color: var(--text-primary); | |
| font-family: 'Outfit', 'Segoe UI', system-ui, sans-serif; | |
| overflow-x: hidden; | |
| background-image: | |
| radial-gradient(circle at 10% 20%, rgba(0, 240, 255, 0.05) 0%, transparent 40%), | |
| radial-gradient(circle at 90% 80%, rgba(255, 0, 127, 0.04) 0%, transparent 40%); | |
| background-attachment: fixed; | |
| min-height: 100vh; | |
| } | |
| /* Scrollbars */ | |
| ::-webkit-scrollbar { | |
| width: 6px; | |
| height: 6px; | |
| } | |
| ::-webkit-scrollbar-track { | |
| background: rgba(8, 10, 15, 0.5); | |
| } | |
| ::-webkit-scrollbar-thumb { | |
| background: rgba(0, 240, 255, 0.2); | |
| border-radius: 4px; | |
| } | |
| ::-webkit-scrollbar-thumb:hover { | |
| background: var(--neon-cyan); | |
| } | |
| /* Layout Utilities (Replaces Tailwind) */ | |
| .flex { display: flex; } | |
| .flex-col { display: flex; flex-direction: column; } | |
| .flex-row { display: flex; flex-direction: row; } | |
| .flex-between { display: flex; justify-content: space-between; align-items: center; } | |
| .flex-center { display: flex; justify-content: center; align-items: center; } | |
| .flex-center-gap { display: flex; align-items: center; gap: 12px; } | |
| .flex-wrap { flex-wrap: wrap; } | |
| .flex-1 { flex: 1 1 0%; } | |
| .flex-2 { flex: 2 1 0%; } | |
| .gap-2 { gap: 8px; } | |
| .gap-3 { gap: 12px; } | |
| .gap-4 { gap: 16px; } | |
| .gap-6 { gap: 24px; } | |
| .mt-1 { margin-top: 4px; } | |
| .mt-2 { margin-top: 8px; } | |
| .mb-2 { margin-bottom: 8px; } | |
| .pb-2 { padding-bottom: 8px; } | |
| .pb-3 { padding-bottom: 12px; } | |
| .pb-4 { padding-bottom: 16px; } | |
| .p-1 { padding: 4px; } | |
| .p-2 { padding: 8px; } | |
| .p-3 { padding: 12px; } | |
| .p-4 { padding: 16px; } | |
| .py-1 { padding-top: 4px; padding-bottom: 4px; } | |
| .py-2 { padding-top: 8px; padding-bottom: 8px; } | |
| .py-3 { padding-top: 12px; padding-bottom: 12px; } | |
| .px-2 { padding-left: 8px; padding-right: 8px; } | |
| .px-3 { padding-left: 12px; padding-right: 12px; } | |
| .px-4 { padding-left: 16px; padding-right: 16px; } | |
| /* Grid Systems & Mobile Responsiveness */ | |
| .dashboard-grid { | |
| display: grid; | |
| grid-template-columns: 2fr 1fr; | |
| gap: 20px; | |
| max-width: 1400px; | |
| margin: 0 auto; | |
| } | |
| .game-grid { | |
| display: grid; | |
| grid-template-columns: 1fr 3fr; | |
| gap: 24px; | |
| } | |
| .grid-cols-2 { | |
| display: grid; | |
| grid-template-columns: repeat(2, 1fr); | |
| gap: 16px; | |
| } | |
| .grid-md-2 { | |
| display: grid; | |
| grid-template-columns: repeat(2, 1fr); | |
| gap: 20px; | |
| } | |
| /* Glassmorphism Panel */ | |
| .glass-panel { | |
| background: var(--card-bg); | |
| border: 1px solid var(--card-border); | |
| border-radius: 16px; | |
| backdrop-filter: blur(16px); | |
| -webkit-backdrop-filter: blur(16px); | |
| padding: 20px; | |
| box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4); | |
| transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); | |
| } | |
| .glass-panel:hover { | |
| border-color: var(--card-border-hover); | |
| box-shadow: 0 8px 32px 0 rgba(0, 240, 255, 0.05); | |
| } | |
| /* Cyber Design Elements */ | |
| .cyber-font { | |
| font-family: 'Orbitron', sans-serif; | |
| letter-spacing: 1px; | |
| } | |
| .glitch-text { | |
| position: relative; | |
| text-shadow: 0.05em 0 0 rgba(255, 0, 127, 0.5), | |
| -0.025em -0.05em 0 rgba(0, 240, 255, 0.5); | |
| } | |
| .cyber-btn { | |
| background: rgba(0, 240, 255, 0.07); | |
| border: 1px solid var(--neon-cyan); | |
| color: var(--neon-cyan); | |
| padding: 10px 20px; | |
| font-family: 'Orbitron', sans-serif; | |
| font-size: 0.8rem; | |
| font-weight: 600; | |
| border-radius: 8px; | |
| cursor: pointer; | |
| transition: all 0.2s ease; | |
| display: inline-flex; | |
| align-items: center; | |
| gap: 8px; | |
| text-shadow: 0 0 5px rgba(0, 240, 255, 0.5); | |
| } | |
| .cyber-btn:hover { | |
| background: var(--neon-cyan); | |
| color: #080a0f; | |
| box-shadow: 0 0 15px rgba(0, 240, 255, 0.4); | |
| text-shadow: none; | |
| } | |
| .cyber-btn-magenta { | |
| border-color: var(--neon-magenta); | |
| color: var(--neon-magenta); | |
| background: rgba(255, 0, 127, 0.07); | |
| text-shadow: 0 0 5px rgba(255, 0, 127, 0.5); | |
| } | |
| .cyber-btn-magenta:hover { | |
| background: var(--neon-magenta); | |
| color: #080a0f; | |
| box-shadow: 0 0 15px rgba(255, 0, 127, 0.4); | |
| text-shadow: none; | |
| } | |
| .status-badge { | |
| display: inline-flex; | |
| align-items: center; | |
| gap: 6px; | |
| padding: 4px 10px; | |
| border-radius: 9999px; | |
| font-size: 11px; | |
| font-weight: 600; | |
| } | |
| .alert-box { | |
| background-color: rgba(255, 0, 60, 0.08); | |
| border: 1px solid rgba(255, 0, 60, 0.2); | |
| border-radius: 8px; | |
| padding: 12px; | |
| display: flex; | |
| gap: 10px; | |
| font-size: 13px; | |
| color: var(--neon-red); | |
| } | |
| .video-container { | |
| position: relative; | |
| aspect-ratio: 16 / 9; | |
| border-radius: 12px; | |
| background-color: rgba(0, 0, 0, 0.6); | |
| border: 1px solid rgba(255, 255, 255, 0.05); | |
| overflow: hidden; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| width: 100%; | |
| } | |
| .stat-icon { | |
| padding: 14px; | |
| border-radius: 12px; | |
| background-color: rgba(0, 240, 255, 0.08); | |
| border: 1px solid rgba(0, 240, 255, 0.15); | |
| color: var(--neon-cyan); | |
| } | |
| /* Animations */ | |
| @keyframes pulse-cyan { | |
| 0% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.7); } | |
| 70% { box-shadow: 0 0 0 10px rgba(0, 240, 255, 0); } | |
| 100% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0); } | |
| } | |
| @keyframes pulse-red { | |
| 0% { box-shadow: 0 0 0 0 rgba(255, 0, 60, 0.7); } | |
| 70% { box-shadow: 0 0 0 10px rgba(255, 0, 60, 0); } | |
| 100% { box-shadow: 0 0 0 0 rgba(255, 0, 60, 0); } | |
| } | |
| .pulse-badge-secure { | |
| width: 10px; | |
| height: 10px; | |
| background-color: var(--neon-cyan); | |
| border-radius: 50%; | |
| box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.7); | |
| animation: pulse-cyan 2s infinite; | |
| } | |
| .pulse-badge-alert { | |
| width: 10px; | |
| height: 10px; | |
| background-color: var(--neon-red); | |
| border-radius: 50%; | |
| box-shadow: 0 0 0 0 rgba(255, 0, 60, 0.7); | |
| animation: pulse-red 1.5s infinite; | |
| } | |
| .animate-fade-in { | |
| animation: fadeIn 0.4s ease-out forwards; | |
| } | |
| @keyframes fadeIn { | |
| from { opacity: 0; transform: translateY(8px); } | |
| to { opacity: 1; transform: translateY(0); } | |
| } | |
| /* Mobile Media Queries (Suitable for Phone Screens) */ | |
| @media (max-width: 768px) { | |
| .dashboard-grid { | |
| grid-template-columns: 1fr; | |
| padding: 10px 0; | |
| } | |
| .game-grid { | |
| grid-template-columns: 1fr; | |
| } | |
| .grid-cols-2 { | |
| grid-template-columns: 1fr; | |
| } | |
| .grid-md-2 { | |
| grid-template-columns: 1fr; | |
| } | |
| header.glass-panel { | |
| margin: 8px; | |
| padding: 12px; | |
| } | |
| header.glass-panel .flex-col { | |
| width: 100%; | |
| } | |
| .cyber-btn { | |
| width: 100%; | |
| justify-content: center; | |
| } | |
| } | |