#lights {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.glitch-text {
    position: relative;
    color: #fff;
    display: inline-block;
}

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

.glitch-text::before {
    left: 2px;
    text-shadow: -1px 0 #ff00c1;
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim 3s infinite linear alternate-reverse;
}

.glitch-text::after {
    left: -2px;
    text-shadow: -1px 0 #00fff9;
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim2 3s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(13px, 9999px, 88px, 0); }
    20% { clip: rect(69px, 9999px, 8px, 0); }
    40% { clip: rect(6px, 9999px, 98px, 0); }
    60% { clip: rect(42px, 9999px, 14px, 0); }
    80% { clip: rect(14px, 9999px, 59px, 0); }
    100% { clip: rect(63px, 9999px, 99px, 0); }
}
@keyframes glitch-anim2 {
    0% { clip: rect(65px, 9999px, 99px, 0); }
    20% { clip: rect(21px, 9999px, 9px, 0); }
    40% { clip: rect(98px, 9999px, 47px, 0); }
    60% { clip: rect(3px, 9999px, 44px, 0); }
    80% { clip: rect(24px, 9999px, 66px, 0); }
    100% { clip: rect(83px, 9999px, 15px, 0); }
}

body.theme-cyber .glitch-text::before,
body.theme-cyber .glitch-text::after {
    content: none !important;
    display: none !important;
    animation: none !important;
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
    clip: auto !important;
    clip-path: none !important;
    background: transparent !important;
}

body.theme-cyber .glitch-text {
    animation: none !important;
    text-shadow: none !important;
    transform: none !important;
    color: var(--text-color, #fff) !important;
    background: transparent !important;
    position: static !important; 
    display: inline !important; 
}

body.theme-cyber .glitch-text {
    text-shadow: 0 0 8px var(--accent, #0ff) !important;
    position: relative !important; 
}

.decrypted-wrapper {
    display: inline-block;
    white-space: pre-wrap;
    color: #fff;
}
.decrypted-char { display: inline-block; min-width: 0.3em; }
.encrypted-char { color: var(--accent); opacity: 0.7; }

.text-pressure-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 10px;
    text-align: center;
}

.text-pressure-title {
    font-family: 'Compressa VF', sans-serif;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    line-height: 1;
    margin: 0;
    -webkit-user-select: none;
    user-select: none;
    cursor: none;
    white-space: nowrap;
    font-size: clamp(4rem, 16vw, 12rem); 
    max-width: 100%;
    display: inline-block;
}

.text-pressure-span {
    display: inline-block;
    transition: font-variation-settings 0.1s ease;
}