File size: 2,717 Bytes
fcf8749 | 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 | *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--bg: #050508;
--bg-card: #0d0d10;
--bg-card2: #111115;
--border: rgba(255,255,255,0.07);
--border-hover: rgba(249,115,22,0.4);
--purple: #f97316;
--purple-light: #fb923c;
--purple-glow: rgba(249,115,22,0.15);
--blue: #f59e0b;
--green: #10b981;
--orange: #f97316;
--red: #ef4444;
--text: #fafaf8;
--text-muted: #a1a09a;
--text-dim: #57534e;
--mono: 'JetBrains Mono', monospace;
--sans: 'Inter', sans-serif;
}
html { scroll-behavior: smooth; }
body {
font-family: var(--sans);
background: var(--bg);
color: var(--text);
line-height: 1.6;
overflow-x: hidden;
}
/* Noise texture overlay */
body::before {
content: '';
position: fixed;
inset: 0;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
pointer-events: none;
z-index: 0;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2d2d3d; border-radius: 3px; }
/* Utilities */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.mono { font-family: var(--mono); }
.gradient-text {
background: linear-gradient(135deg, #fff 0%, var(--purple-light) 50%, var(--blue) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.tag {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 12px;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--purple-light);
background: rgba(249,115,22,0.1);
border: 1px solid rgba(249,115,22,0.2);
border-radius: 999px;
padding: 4px 12px;
}
/* Animations */
@keyframes float {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-8px); }
}
@keyframes pulse-glow {
0%, 100% { opacity: 0.5; }
50% { opacity: 1; }
}
@keyframes slide-up {
from { opacity: 0; transform: translateY(24px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: 0; }
}
.animate-slide-up { animation: slide-up 0.6s ease forwards; }
.animate-fade-in { animation: fade-in 0.5s ease forwards; }
|