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

    html {
        height: 100%;
        background: linear-gradient(45deg, #0f0c29, #302b63, #24243e);
        font-family: 'Space Grotesk', sans-serif;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2rem;
        color: white;
        overflow: hidden;
    }

    .quote {
        font-size: clamp(2rem, 6vw, 5rem);
        font-weight: 500;
        text-align: center;
        line-height: 1.2;
        position: relative;
        letter-spacing: 0.02em;
        text-transform: uppercase;
        animation: fadeIn 1.5s ease-out forwards;
        z-index: 10;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    .quote span {
        display: block;
        opacity: 0;
        animation: textSlide 1.5s forwards;
        transform: translateY(100px);
    }

    .quote span:nth-child(2) {
        animation-delay: 0.3s;
    }

    .quote span:nth-child(3) {
        animation-delay: 0.6s;
    }

    .quote span:nth-child(4) {
        animation-delay: 0.9s;
    }

    @keyframes textSlide {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .glitch {
        position: relative;
        display: inline-block;
        color: #fff;
        font-weight: bold;
        z-index: 20;
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.4);
        letter-spacing: 2px;
    }

    .glitch::before,
    .glitch::after {
        content: attr(data-text);
        position: absolute;
        left: 0;
        width: 100%;
        top: 0;
        color: #00f;
        clip: rect(0, 0, 0, 0);
        z-index: -1;
        opacity: 0.8;
    }

    .glitch::before {
        animation: glitchTop 1.2s infinite linear alternate-reverse;
        color: rgb(255, 152, 255);
        left: -2px;
    }

    .glitch::after {
        animation: glitchBottom 1.5s infinite linear alternate-reverse;
        color: rgb(145, 237, 255);
        left: 2px;
    }

    @keyframes glitchTop {
        0% {
            clip: rect(0, 9999px, 0, 0);
        }

        20% {
            clip: rect(0, 9999px, 20px, 0);
            transform: translate(-3px, -2px);
        }

        40% {
            clip: rect(0, 9999px, 15px, 0);
            transform: translate(3px, 0);
        }

        60% {
            clip: rect(0, 9999px, 18px, 0);
            transform: translate(0, 3px) skewX(10deg);
        }

        80% {
            clip: rect(0, 9999px, 22px, 0);
            transform: translate(-3px, -2px);
        }

        100% {
            clip: rect(0, 9999px, 0, 0);
            transform: translate(0);
        }
    }

    @keyframes glitchBottom {
        0% {
            clip: rect(0, 9999px, 0, 0);
        }

        20% {
            clip: rect(18px, 9999px, 30px, 0);
            transform: translate(3px, 2px);
        }

        40% {
            clip: rect(14px, 9999px, 24px, 0);
            transform: translate(-3px, 0);
        }

        60% {
            clip: rect(16px, 9999px, 28px, 0);
            transform: translate(0, -3px) skewX(-10deg);
        }

        80% {
            clip: rect(20px, 9999px, 34px, 0);
            transform: translate(3px, 2px);
        }

        100% {
            clip: rect(0, 9999px, 0, 0);
            transform: translate(0);
        }
    }

    .quote .highlight {
        color: #ff5f6d;
        animation: glowText 1.5s infinite alternate;
    }

    @keyframes glowText {
        0% {
            text-shadow: 0 0 10px #ff5f6d, 0 0 20px #ff5f6d;
        }

        100% {
            text-shadow: 0 0 30px #ff5f6d, 0 0 50px #ff5f6d;
        }
    }

    @media (max-width: 768px) {
        .quote {
            font-size: clamp(2rem, 8vw, 4rem);
        }
    }
