Spaces:
Running
Running
File size: 2,241 Bytes
8e156cf dd465d5 cdcf600 8e156cf cdcf600 dd465d5 8e156cf dd465d5 8e156cf cdcf600 8e156cf cdcf600 dd465d5 cdcf600 8e156cf cdcf600 8e156cf dd465d5 cdcf600 dd465d5 8e156cf cdcf600 dd465d5 8e156cf cdcf600 8e156cf cdcf600 8e156cf cdcf600 8e156cf cdcf600 8e156cf dd465d5 cdcf600 8e156cf cdcf600 dd465d5 8e156cf cdcf600 8e156cf cdcf600 8e156cf cdcf600 8e156cf cdcf600 8e156cf cdcf600 8e156cf dd465d5 cdcf600 8e156cf | 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 | .onboarding-overlay {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.85);
backdrop-filter: blur(12px);
display: flex;
align-items: center;
justify-content: center;
z-index: 2000;
animation: ob-fade 0.5s ease;
}
@keyframes ob-fade {
from { opacity: 0; }
to { opacity: 1; }
}
.onboarding-modal {
width: 90%;
max-width: 500px;
display: flex;
flex-direction: column;
padding: 40px;
border-radius: var(--radius-lg);
background: var(--bg-1);
border: 1px solid var(--border-1);
box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
position: relative;
overflow: hidden;
}
.onboarding-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 32px;
}
.step-indicator {
font-family: var(--font-mono);
font-size: 0.7rem;
letter-spacing: 0.1em;
color: var(--text-2);
}
.close-btn {
background: transparent;
border: none;
font-size: 1.5rem;
color: var(--text-2);
cursor: pointer;
line-height: 1;
transition: color 0.2s ease;
}
.close-btn:hover {
color: var(--pulse);
}
.onboarding-body {
flex: 1;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
}
.step-icon {
font-size: 3.5rem;
margin-bottom: 10px;
}
.onboarding-body h2 {
font-family: var(--font-display);
font-size: 1.8rem;
font-weight: 800;
color: var(--text-0);
}
.onboarding-body p {
font-size: 1rem;
line-height: 1.6;
color: var(--text-1);
}
.onboarding-footer {
margin-top: 40px;
display: flex;
justify-content: space-between;
align-items: center;
}
.onboarding-btn {
padding: 10px 24px;
}
.step-dots {
display: flex;
gap: 8px;
}
.step-dots .dot {
width: 8px;
height: 8px;
border-radius: 50%;
background: var(--bg-3);
transition: all 0.3s ease;
}
.step-dots .dot.active {
background: var(--pulse);
box-shadow: var(--glow-pulse);
transform: scale(1.2);
}
.neural-scan-line {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 2px;
background: var(--pulse);
box-shadow: 0 0 10px var(--pulse);
opacity: 0.3;
animation: scan 4s linear infinite;
}
@keyframes scan {
0% { transform: translateY(-100%); }
100% { transform: translateY(500px); }
}
|