File size: 1,837 Bytes
cdf1899
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
/* assets/style.css */
#galaxy-canvas {
    position: fixed;
    top: 0; left: 0;
    z-index: -2;
    pointer-events: none;
}

/* SaaS Background Glow */
.bg-glow {
    position: fixed;
    top: -10%; left: -10%;
    width: 50%; height: 50%;
    background: radial-gradient(circle, rgba(157, 80, 187, 0.1) 0%, transparent 70%);
    filter: blur(150px);
    z-index: -1;
    pointer-events: none;
}

/* Sidebar - Fixed and Glassy */
.sidebar-container {
    position: fixed;
    top: 0; left: 0; bottom: 0; 
    width: 18rem;
    background: rgba(8, 9, 12, 0.95);
    backdrop-filter: blur(30px);
    border-right: 1px solid rgba(0, 210, 255, 0.15);
    padding: 3rem 1.5rem;
    z-index: 1000;
}

/* Push content to clear sidebar */
.content-container {
    margin-left: 18rem; 
    padding: 3rem 5rem;
    min-height: 100vh;
}

/* Nebula Spinning Animation */
.nebula-icon-spin i {
    animation: rotate-nebula 10s linear infinite;
}

@keyframes rotate-nebula {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Glass Cards */
.modern-card {
    background: rgba(255, 255, 255, 0.02) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 28px !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transition: 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.modern-card:hover {
    border: 1px solid rgba(37, 212, 252, 0.4) !important;
    transform: scale(1.02);
}

/* Glowing Typography */
.prediction-value {
    font-size: 5.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00d2ff 0%, #9d50bb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(0, 210, 255, 0.4));
}