* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    background-color: #000000;
    overflow: hidden;
}

.splash-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
}

.glitch-text {
    position: relative;
    color: #ffffff;
    font-family: 'Courier New', Courier, monospace;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: lowercase;
    text-align: center;
    animation: fadeIn 2s ease-in-out;
}

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

.glitch-text::before {
    left: 2px;
    text-shadow: -2px 0 #ff00c1;
    animation: glitch-1 3s infinite linear alternate-reverse;
}

.glitch-text::after {
    left: -2px;
    text-shadow: 2px 0 #00fff0;
    animation: glitch-2 3s infinite linear alternate-reverse;
}

@keyframes glitch-1 {
    0% { clip-path: inset(0% 0% 98% 0%); transform: translate(-2px, 0); }
    10% { clip-path: inset(20% 0% 60% 0%); transform: translate(2px, -2px); }
    20% { clip-path: inset(50% 0% 30% 0%); transform: translate(-2px, 2px); }
    30% { clip-path: inset(70% 0% 10% 0%); transform: translate(2px, 0); }
    40% { clip-path: inset(10% 0% 80% 0%); transform: translate(-2px, -2px); }
    50% { clip-path: inset(40% 0% 50% 0%); transform: translate(2px, 2px); }
    60% { clip-path: inset(0% 0% 85% 0%); transform: translate(-2px, 0); }
    70% { clip-path: inset(65% 0% 20% 0%); transform: translate(2px, -2px); }
    80% { clip-path: inset(30% 0% 60% 0%); transform: translate(-2px, 2px); }
    90% { clip-path: inset(85% 0% 5% 0%); transform: translate(2px, 0); }
    100% { clip-path: inset(0% 0% 98% 0%); transform: translate(-2px, 0); }
}

@keyframes glitch-2 {
    0% { clip-path: inset(0% 0% 95% 0%); transform: translate(2px, 0); }
    15% { clip-path: inset(30% 0% 60% 0%); transform: translate(-2px, -2px); }
    25% { clip-path: inset(60% 0% 20% 0%); transform: translate(2px, 2px); }
    35% { clip-path: inset(80% 0% 5% 0%); transform: translate(-2px, 0); }
    45% { clip-path: inset(5% 0% 85% 0%); transform: translate(2px, -2px); }
    55% { clip-path: inset(45% 0% 40% 0%); transform: translate(-2px, 2px); }
    65% { clip-path: inset(10% 0% 70% 0%); transform: translate(2px, 0); }
    75% { clip-path: inset(70% 0% 15% 0%); transform: translate(-2px, -2px); }
    85% { clip-path: inset(20% 0% 70% 0%); transform: translate(2px, 2px); }
    95% { clip-path: inset(90% 0% 0% 0%); transform: translate(-2px, 0); }
    100% { clip-path: inset(0% 0% 95% 0%); transform: translate(2px, 0); }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}


@media (max-width: 600px) {
    .glitch-text {
        font-size: 1.8rem;
    }
}