File size: 3,403 Bytes
ee00155 | 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 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 | /* ==================== BRUTALIST LOADER ==================== */
#loader-wrapper {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background-color: #000000 !important;
z-index: 2147483647 !important;
/* Max Z-Index */
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
overflow: hidden;
color: #ffffff;
font-family: sans-serif;
/* Fallback first */
transition: transform 0.5s ease-in-out;
}
#loader-wrapper.loaded {
transform: translateY(-100%);
pointer-events: none;
}
/* Brutalist Content */
.loader-content {
text-align: center;
position: relative;
z-index: 2147483647;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
opacity: 1 !important;
visibility: visible !important;
}
.counter-wrapper {
font-size: 10vw;
font-weight: 900;
font-family: sans-serif;
line-height: 1;
color: #E3F514 !important;
/* Force Yellow */
position: absolute;
bottom: 40px;
right: 40px;
margin: 0;
display: block;
opacity: 1 !important;
text-align: right;
}
#loader-quote {
color: #ffffff;
font-family: 'Space Grotesk', sans-serif;
font-size: 2.5rem;
font-weight: 700;
text-align: center;
max-width: 90%;
margin-bottom: 2rem;
opacity: 1;
line-height: 1.3;
text-transform: uppercase;
letter-spacing: 0.1em;
z-index: 2147483648;
padding: 0;
border: none;
box-shadow: none;
backdrop-filter: none;
}
/* Character States for Monkeytype effect (DeepGuard Themed) */
.char-waiting {
color: rgba(255, 255, 255, 0.2);
transition: color 0.1s ease;
}
.char-typed {
color: #ffffff;
text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}
.char-current {
background-color: #E3F514;
color: #000000;
border-radius: 0px;
/* Brutalist sharp edges */
}
.quote-highlight {
/* Reset glass effect to allow inner spans to control color */
background: none;
-webkit-text-fill-color: initial;
text-fill-color: initial;
font-weight: inherit;
letter-spacing: inherit;
filter: none;
display: inline;
}
/* Remove underline for pure glass text look */
.quote-highlight::after {
display: none;
}
#loader-percent {
color: #E3F514 !important;
}
.percent-symbol {
font-size: 4vw;
vertical-align: super;
margin-left: 10px;
opacity: 1 !important;
color: #E3F514 !important;
}
/* Status Text */
.detection-status {
font-family: monospace, sans-serif;
font-size: 1.5rem;
letter-spacing: 0.1em;
text-transform: uppercase;
font-weight: bold;
min-height: 2em;
display: flex;
justify-content: center;
align-items: center;
color: #ffffff !important;
margin-bottom: 20px;
}
.status-text {
color: #ffffff !important;
}
/* Meta Information */
.loader-meta {
position: absolute;
bottom: 40px;
width: 100%;
text-align: center;
color: #666;
font-size: 14px;
z-index: 2147483647;
}
/* Mobile Responsive */
@media (max-width: 768px) {
.counter-wrapper {
font-size: 15vw;
bottom: 20px;
right: 20px;
}
#loader-quote {
font-size: 1.4rem;
width: 90%;
padding: 1.5rem;
letter-spacing: 0.05em;
}
} |