Spaces:
Running
Running
File size: 2,488 Bytes
cf93910 | 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 | @import "tailwindcss";
/* ββ Custom CSS variables ββββββββββββββββββββββββββββββββββββββββ */
:root {
--color-neon: #00f5d4;
--color-accent: #9b5de5;
--color-warn: #fee440;
--color-danger: #f15bb5;
--color-bg: #050816;
--color-surface: rgba(255, 255, 255, 0.06);
--color-border: rgba(255, 255, 255, 0.12);
}
html,
body,
#root {
height: 100%;
margin: 0;
font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
background-color: var(--color-bg);
color: #e2e8f0;
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
}
/* ββ Glassmorphism utility βββββββββββββββββββββββββββββββββββββββ */
.glass {
background: var(--color-surface);
backdrop-filter: blur(16px) saturate(180%);
-webkit-backdrop-filter: blur(16px) saturate(180%);
border: 1px solid var(--color-border);
border-radius: 1rem;
}
/* ββ Neon glow text ββββββββββββββββββββββββββββββββββββββββββββββ */
.glow-text {
text-shadow:
0 0 8px var(--color-neon),
0 0 20px var(--color-neon),
0 0 40px rgba(0, 245, 212, 0.4);
}
/* ββ Neon glow border ββββββββββββββββββββββββββββββββββββββββββββ */
.glow-border {
box-shadow:
0 0 10px rgba(0, 245, 212, 0.3),
inset 0 0 10px rgba(0, 245, 212, 0.05);
border-color: rgba(0, 245, 212, 0.5) !important;
}
/* ββ Animated gradient background ββββββββββββββββββββββββββββββ */
.bg-animated {
background:
radial-gradient(ellipse at 20% 50%, rgba(155, 93, 229, 0.15) 0%, transparent 60%),
radial-gradient(ellipse at 80% 20%, rgba(0, 245, 212, 0.10) 0%, transparent 50%),
radial-gradient(ellipse at 60% 80%, rgba(241, 91, 181, 0.08) 0%, transparent 50%),
#050816;
}
/* ββ Scrollbar ββββββββββββββββββββββββββββββββββββββββββββββββββ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(0, 245, 212, 0.3); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0, 245, 212, 0.6); }
|