@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #050505;
    font-family: 'Share Tech Mono', monospace;
    overflow: hidden;
    color: #00ffcc;
}

.holo-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

canvas {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(60deg) rotateZ(-30deg);
    width: 200%;
    height: 200%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.8;
}

.overlay-content {
    position: relative;
    z-index: 2;
    text-align: center;
    text-transform: uppercase;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.4);
    padding: 3rem;
    border: 1px solid rgba(0, 255, 204, 0.3);
    box-shadow: 0 0 30px rgba(0, 255, 204, 0.1);
    backdrop-filter: blur(5px);
}

h1 {
    font-size: 5rem;
    margin: 0;
    letter-spacing: 15px;
    position: relative;
    display: inline-block;
    color: #ffffff;
    text-shadow: 0 0 10px #00ffcc, 0 0 20px #00ffcc, 0 0 40px #ff00ff;
}

.glitch {
    position: relative;
}

.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
}

.glitch::before {
    left: 4px;
    text-shadow: -2px 0 red;
    animation: glitch-anim-1 2s infinite linear alternate-reverse;
}

.glitch::after {
    left: -4px;
    text-shadow: -2px 0 blue;
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

.subtitle {
    font-size: 1.2rem;
    letter-spacing: 5px;
    margin-top: 10px;
    opacity: 0.8;
}

.data-stream {
    margin-top: 40px;
    font-size: 0.9rem;
    opacity: 0.6;
    letter-spacing: 2px;
}

@keyframes glitch-anim-1 {
    0% { clip-path: inset(20% 0 80% 0); }
    20% { clip-path: inset(60% 0 10% 0); }
    40% { clip-path: inset(40% 0 50% 0); }
    60% { clip-path: inset(80% 0 5% 0); }
    80% { clip-path: inset(10% 0 70% 0); }
    100% { clip-path: inset(30% 0 20% 0); }
}

@keyframes glitch-anim-2 {
    0% { clip-path: inset(10% 0 60% 0); }
    20% { clip-path: inset(30% 0 20% 0); }
    40% { clip-path: inset(70% 0 10% 0); }
    60% { clip-path: inset(20% 0 50% 0); }
    80% { clip-path: inset(50% 0 30% 0); }
    100% { clip-path: inset(5% 0 80% 0); }
}
