.monolith-container {
width: 100%;
height: 100%;
background: radial-gradient(circle at 50% 50%, #060814 0%, #020205 100%);
overflow: hidden;
position: relative;
perspective: 1000px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 4%;
box-sizing: border-box;
}
.laser-line {
position: absolute;
pointer-events: none;
}
.ll-h {
width: 100%;
height: 1px;
top: 50%;
left: 0;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12) 50%, transparent);
}
.ll-v {
width: 1px;
height: 100%;
left: 50%;
top: 0;
background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.12) 50%, transparent);
}
.clean-grid {
position: absolute;
inset: 0;
background-image:
linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
background-size: 50px 50px;
background-position: center center;
mask-image: radial-gradient(circle at 50% 50%, black 50%, transparent 95%);
-webkit-mask-image: radial-gradient(circle at 50% 50%, black 50%, transparent 95%);
pointer-events: none;
}
.light-source {
position: absolute;
border-radius: 50%;
filter: blur(120px);
opacity: 0.6;
pointer-events: none;
}
.ls-1 {
width: 450px;
height: 450px;
background: radial-gradient(circle, rgba(59, 130, 246, 0.35) 0%, transparent 70%);
top: calc(10% + var(--mouse-y, 0) * 60px);
left: calc(15% + var(--mouse-x, 0) * 60px);
animation: pulse-light-1 10s infinite alternate ease-in-out;
}
.ls-2 {
width: 400px;
height: 400px;
background: radial-gradient(circle, rgba(139, 92, 246, 0.35) 0%, transparent 70%);
bottom: calc(10% - var(--mouse-y, 0) * 70px);
right: calc(15% - var(--mouse-x, 0) * 70px);
animation: pulse-light-2 14s infinite alternate ease-in-out;
}
@keyframes pulse-light-1 {
0% { transform: scale(1); opacity: 0.45; }
100% { transform: scale(1.25); opacity: 0.7; }
}
@keyframes pulse-light-2 {
0% { transform: scale(1.15); opacity: 0.7; }
100% { transform: scale(0.9); opacity: 0.4; }
}
.monolith-scene {
width: 500px;
height: 960px;
transform-style: preserve-3d;
transition: transform 0.25s cubic-bezier(0.1, 0.8, 0.3, 1);
display: flex;
align-items: center;
justify-content: center;
}
.ms-left {
transform: rotateX(calc(12deg + var(--mouse-y, 0) * -12deg)) rotateY(calc(84deg + var(--mouse-x, 0) * 8deg));
}
.ms-right {
transform: rotateX(calc(12deg + var(--mouse-y, 0) * -12deg)) rotateY(calc(-84deg + var(--mouse-x, 0) * 8deg));
}
.monolith-wrapper {
position: relative;
width: 450px;
height: 900px;
transform-style: preserve-3d;
}
.monolith-body {
width: 100%;
height: 100%;
position: relative;
transform-style: preserve-3d;
}
.mb-left {
animation: monolith-float-left 7s ease-in-out infinite alternate;
}
.mb-right {
animation: monolith-float-right 7s ease-in-out infinite alternate;
animation-delay: -3.5s;
}
@keyframes monolith-float-left {
0% { transform: translateY(-20px) rotateY(-0.5deg); }
100% { transform: translateY(20px) rotateY(1.5deg); }
}
@keyframes monolith-float-right {
0% { transform: translateY(20px) rotateY(-1.5deg); }
100% { transform: translateY(-20px) rotateY(0.5deg); }
}
.monolith-face {
position: absolute;
background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
border: 1px solid rgba(255, 255, 255, 0.25);
backdrop-filter: blur(15px);
box-shadow:
0 0 60px rgba(255, 255, 255, 0.03),
inset 0 0 35px rgba(255, 255, 255, 0.04),
inset 0 0 12px rgba(255, 255, 255, 0.15);
box-sizing: border-box;
}
.mf-front {
width: 450px;
height: 900px;
transform: translateZ(12px);
}
.mf-back {
width: 450px;
height: 900px;
transform: rotateY(180deg) translateZ(12px);
}
.mf-left {
width: 24px;
height: 900px;
left: calc(50% - 12px);
transform: rotateY(-90deg) translateZ(225px);
background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.25) 30%, rgba(255, 255, 255, 0.95) 50%, rgba(255, 255, 255, 0.2) 70%, rgba(255, 255, 255, 0.85) 100%);
border: 1.5px solid rgba(255, 255, 255, 0.75);
box-shadow: 0 0 25px rgba(255, 255, 255, 0.35);
}
.mf-right {
width: 24px;
height: 900px;
left: calc(50% - 12px);
transform: rotateY(90deg) translateZ(225px);
background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.25) 30%, rgba(255, 255, 255, 0.95) 50%, rgba(255, 255, 255, 0.2) 70%, rgba(255, 255, 255, 0.85) 100%);
border: 1.5px solid rgba(255, 255, 255, 0.75);
box-shadow: 0 0 25px rgba(255, 255, 255, 0.35);
}
.mf-top {
width: 450px;
height: 24px;
top: calc(50% - 12px);
transform: rotateX(90deg) translateZ(450px);
background: rgba(255, 255, 255, 0.18);
border: 1px solid rgba(255, 255, 255, 0.5);
}
.mf-bottom {
width: 450px;
height: 24px;
top: calc(50% - 12px);
transform: rotateX(-90deg) translateZ(450px);
background: rgba(255, 255, 255, 0.18);
border: 1px solid rgba(255, 255, 255, 0.5);
}
.glass-reflection-line {
position: absolute;
inset: 0;
background: linear-gradient(
135deg,
rgba(255, 255, 255, 0) 0%,
rgba(255, 255, 255, 0) 35%,
rgba(255, 255, 255, 0.3) 42%,
rgba(255, 255, 255, 0.85) 50%,
rgba(255, 255, 255, 0.3) 58%,
rgba(255, 255, 255, 0) 65%,
rgba(255, 255, 255, 0) 100%
);
background-size: 200% 200%;
background-position: 0% 0%;
animation: sweep-reflection 4.5s infinite cubic-bezier(0.4, 0, 0.2, 1);
pointer-events: none;
}
@keyframes sweep-reflection {
0% { background-position: 0% 0%; }
50% { background-position: 100% 100%; }
100% { background-position: 0% 0%; }
}
.monolith-inner-glow {
position: absolute;
inset: 4px;
background: radial-gradient(circle at calc(50% + var(--mouse-x, 0) * 80px) calc(50% + var(--mouse-y, 0) * 80px), rgba(255, 255, 255, 0.25) 0%, transparent 60%);
pointer-events: none;
}
.monolith-shadow {
position: absolute;
width: 450px;
height: 40px;
background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.75) 0%, transparent 75%);
bottom: -70px;
left: calc(50% - 225px);
filter: blur(15px);
transform: rotateX(80deg);
pointer-events: none;
}
.shadow-left {
animation: shadow-breathe-left 7s ease-in-out infinite alternate;
}
.shadow-right {
animation: shadow-breathe-right 7s ease-in-out infinite alternate;
animation-delay: -3.5s;
}
@keyframes shadow-breathe-left {
0% { transform: rotateX(80deg) scale(0.85); opacity: 0.4; filter: blur(12px); }
100% { transform: rotateX(80deg) scale(1.05); opacity: 0.7; filter: blur(8px); }
}
@keyframes shadow-breathe-right {
0% { transform: rotateX(80deg) scale(1.05); opacity: 0.7; filter: blur(8px); }
100% { transform: rotateX(80deg) scale(0.85); opacity: 0.4; filter: blur(12px); }
}