/* ========================================
   LOWCAP.FUN - Meme Token Launchpad
   Retro Arcade Aesthetic
   ======================================== */

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

:root {
    /* Neon Arcade Palette */
    --neon-green: #39ff14;
    --neon-blue: #00d4ff;
    --neon-orange: #ff6b35;
    --neon-pink: #ff2e63;
    --neon-yellow: #ffe600;
    --neon-purple: #bf00ff;

    /* Base Colors */
    --bg-dark: #0a0a0f;
    --bg-screen: #0d1117;
    --surface: #161b22;
    --border: #30363d;

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #8b949e;
    --text-muted: #484f58;

    /* Functional */
    --success: #39ff14;
    --warning: #ffe600;
    --danger: #ff2e63;
}

/* Fonts */
@font-face {
    font-family: "Press Start 2P";
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Space Mono", monospace;
    background: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* ========================================
   BACKGROUND EFFECTS
   ======================================== */

/* CRT Scanlines */
.scanlines {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1000;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15) 0px,
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 2px
    );
}

/* Noise Texture */
.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Floating Coins */
.floating-coins {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.coin {
    position: absolute;
    font-size: 24px;
    opacity: 0.6;
    animation: float-coin linear infinite;
    filter: drop-shadow(0 0 10px currentColor);
}

.coin-1 {
    left: 5%;
    animation-duration: 15s;
    animation-delay: 0s;
}
.coin-2 {
    left: 15%;
    animation-duration: 18s;
    animation-delay: 2s;
}
.coin-3 {
    left: 25%;
    animation-duration: 12s;
    animation-delay: 4s;
}
.coin-4 {
    left: 45%;
    animation-duration: 20s;
    animation-delay: 1s;
}
.coin-5 {
    left: 65%;
    animation-duration: 14s;
    animation-delay: 3s;
}
.coin-6 {
    left: 75%;
    animation-duration: 17s;
    animation-delay: 5s;
}
.coin-7 {
    left: 85%;
    animation-duration: 13s;
    animation-delay: 2s;
}
.coin-8 {
    left: 95%;
    animation-duration: 16s;
    animation-delay: 4s;
}

@keyframes float-coin {
    0% {
        transform: translateY(110vh) rotate(0deg) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-10vh) rotate(720deg) scale(1);
        opacity: 0;
    }
}

/* ========================================
   ARCADE CABINET LAYOUT
   ======================================== */

.arcade-cabinet {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Insert Coin Banner */
.insert-coin {
    text-align: center;
    padding: 12px;
    background: linear-gradient(
        90deg,
        var(--neon-orange),
        var(--neon-yellow),
        var(--neon-orange)
    );
    background-size: 200% 100%;
    animation: gradient-scroll 3s linear infinite;
    font-family: "Press Start 2P", cursive;
    font-size: 10px;
    color: var(--bg-dark);
    letter-spacing: 2px;
    border-radius: 8px 8px 0 0;
    text-shadow: none;
}

.blink {
    animation: blink-text 1s step-end infinite;
}

@keyframes blink-text {
    0%,
    50% {
        opacity: 1;
    }
    51%,
    100% {
        opacity: 0;
    }
}

@keyframes gradient-scroll {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

/* ========================================
   MAIN SCREEN
   ======================================== */

.screen {
    flex: 1;
    background: #1a1a2e;
    border-radius: 0 0 20px 20px;
    padding: 4px;
    box-shadow:
        0 0 0 4px #2d2d44,
        0 0 0 8px #1a1a2e,
        0 0 60px rgba(0, 212, 255, 0.2),
        inset 0 0 100px rgba(0, 0, 0, 0.5);
}

.screen-border {
    background: linear-gradient(145deg, #0f0f1a 0%, #1a1a2e 50%, #0f0f1a 100%);
    border-radius: 16px;
    padding: 3px;
    box-shadow: inset 0 0 30px rgba(0, 212, 255, 0.1);
}

.screen-inner {
    background: var(--bg-screen);
    border-radius: 14px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.screen-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center top,
        rgba(0, 212, 255, 0.05) 0%,
        transparent 60%
    );
    pointer-events: none;
}

/* ========================================
   HEADER
   ======================================== */

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px dashed var(--border);
}

.chain-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(57, 255, 20, 0.1);
    border: 1px solid var(--neon-green);
    border-radius: 4px;
    font-family: "Press Start 2P", cursive;
    font-size: 8px;
    color: var(--neon-green);
    letter-spacing: 1px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--neon-green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--neon-green);
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.high-score {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.high-score .label {
    font-family: "Press Start 2P", cursive;
    font-size: 8px;
    color: var(--text-muted);
}

.high-score .score {
    font-family: "Press Start 2P", cursive;
    font-size: 14px;
    color: var(--neon-yellow);
    text-shadow: 0 0 20px var(--neon-yellow);
    letter-spacing: 2px;
}

/* ========================================
   LOGO SECTION
   ======================================== */

.logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 30px;
}

/* Mascot */
.mascot {
    position: relative;
    width: 120px;
    height: 120px;
}

.mascot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--neon-orange);
    box-shadow:
        0 0 30px rgba(255, 107, 53, 0.5),
        0 0 60px rgba(255, 107, 53, 0.3);
    animation: mascot-float 3s ease-in-out infinite;
}

.mascot-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(
        circle,
        rgba(255, 107, 53, 0.4) 0%,
        transparent 70%
    );
    filter: blur(20px);
    animation: glow-pulse 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes mascot-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow-pulse {
    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Logo */
.logo-wrapper {
    text-align: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.logo-line-1 {
    display: flex;
    gap: 4px;
}

.letter {
    font-family: "Press Start 2P", cursive;
    font-size: clamp(28px, 8vw, 48px);
    color: var(--text-primary);
    text-shadow:
        0 0 10px var(--neon-blue),
        0 0 20px var(--neon-blue),
        0 0 40px var(--neon-blue),
        4px 4px 0 var(--neon-purple);
    animation: letter-wave 2s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.1s);
}

@keyframes letter-wave {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.logo-fun {
    font-family: "Press Start 2P", cursive;
    font-size: clamp(20px, 6vw, 36px);
    background: linear-gradient(
        90deg,
        var(--neon-orange),
        var(--neon-yellow),
        var(--neon-orange)
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-scroll 2s linear infinite;
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5));
}

.tagline-box {
    margin-top: 16px;
    padding: 8px 24px;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid var(--neon-blue);
    position: relative;
}

.tagline-box::before,
.tagline-box::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--neon-blue);
}

.tagline-box::before {
    top: -5px;
    left: -5px;
}

.tagline-box::after {
    bottom: -5px;
    right: -5px;
}

.tagline-text {
    font-family: "Press Start 2P", cursive;
    font-size: 10px;
    color: var(--neon-blue);
    letter-spacing: 3px;
}

/* ========================================
   CREATOR SECTION
   ======================================== */

.creator-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
    padding: 24px;
    background: rgba(255, 107, 53, 0.03);
    border: 1px dashed rgba(255, 107, 53, 0.3);
    border-radius: 12px;
}

.creator-label {
    font-family: "Press Start 2P", cursive;
    font-size: 8px;
    color: var(--text-muted);
    letter-spacing: 3px;
}

.creator-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid var(--neon-orange);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.creator-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.creator-avatar {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.creator-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--neon-orange);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
}

.creator-glow {
    position: absolute;
    inset: -10px;
    background: radial-gradient(
        circle,
        rgba(255, 107, 53, 0.3) 0%,
        transparent 70%
    );
    filter: blur(10px);
    z-index: -1;
    animation: glow-pulse 2s ease-in-out infinite;
}

.creator-info {
    text-align: left;
}

.creator-name {
    font-family: "Press Start 2P", cursive;
    font-size: 12px;
    color: var(--neon-orange);
    margin-bottom: 6px;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
}

.creator-title {
    font-family: "Space Mono", monospace;
    font-size: 11px;
    color: var(--text-secondary);
    font-style: italic;
}

/* ========================================
   TERMINAL / TYPEWRITER
   ======================================== */

.terminal {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 16px 20px;
    margin-bottom: 30px;
    font-family: "Space Mono", monospace;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.terminal-prompt {
    color: var(--neon-green);
    font-weight: bold;
}

#typewriter {
    color: var(--text-primary);
}

.terminal-cursor {
    color: var(--neon-green);
    animation: cursor-blink 0.8s step-end infinite;
}

@keyframes cursor-blink {
    0%,
    50% {
        opacity: 1;
    }
    51%,
    100% {
        opacity: 0;
    }
}

/* ========================================
   COUNTDOWN
   ======================================== */

.countdown-section {
    margin-bottom: 30px;
}

.countdown-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: "Press Start 2P", cursive;
    font-size: 10px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.pixel-arrow {
    color: var(--neon-pink);
    animation: arrow-bounce 1s ease-in-out infinite;
}

.pixel-arrow:last-child {
    animation-delay: 0.5s;
}

@keyframes arrow-bounce {
    0%,
    100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(4px);
    }
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.countdown-block {
    background: linear-gradient(
        180deg,
        rgba(57, 255, 20, 0.1) 0%,
        rgba(57, 255, 20, 0.05) 100%
    );
    border: 2px solid var(--neon-green);
    border-radius: 8px;
    padding: 16px 12px;
    min-width: 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.countdown-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.countdown-value {
    font-family: "Press Start 2P", cursive;
    font-size: clamp(20px, 5vw, 28px);
    color: var(--neon-green);
    text-shadow: 0 0 20px var(--neon-green);
    position: relative;
    z-index: 1;
}

.countdown-unit {
    font-family: "Press Start 2P", cursive;
    font-size: 8px;
    color: var(--text-muted);
    margin-top: 8px;
    letter-spacing: 1px;
}

.countdown-separator {
    font-family: "Press Start 2P", cursive;
    font-size: 24px;
    color: var(--neon-green);
    animation: separator-blink 1s step-end infinite;
}

@keyframes separator-blink {
    0%,
    50% {
        opacity: 1;
    }
    51%,
    100% {
        opacity: 0.3;
    }
}

/* ========================================
   FEATURES
   ======================================== */

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature:hover {
    border-color: var(--neon-blue);
    background: rgba(0, 212, 255, 0.05);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.feature-icon {
    font-size: 28px;
    line-height: 1;
}

.feature-content h3 {
    font-family: "Press Start 2P", cursive;
    font-size: 10px;
    color: var(--neon-orange);
    margin-bottom: 6px;
}

.feature-content p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ========================================
   SIGNUP
   ======================================== */

.signup {
    margin-bottom: 30px;
}

.signup-box {
    background: linear-gradient(
        135deg,
        rgba(255, 107, 53, 0.1) 0%,
        rgba(255, 230, 0, 0.1) 100%
    );
    border: 2px solid var(--neon-orange);
    border-radius: 12px;
    padding: 24px;
    position: relative;
}

.signup-box::before {
    content: "";
    position: absolute;
    inset: 4px;
    border: 1px dashed rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    pointer-events: none;
}

.signup-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: "Press Start 2P", cursive;
    font-size: 12px;
    color: var(--neon-orange);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.pixel-star {
    animation: star-spin 3s linear infinite;
}

@keyframes star-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.signup-form {
    display: flex;
    gap: 12px;
}

.signup-form input {
    flex: 1;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--border);
    border-radius: 6px;
    font-family: "Space Mono", monospace;
    font-size: 12px;
    color: var(--text-primary);
    letter-spacing: 1px;
    outline: none;
    transition: all 0.3s ease;
}

.signup-form input::placeholder {
    color: var(--text-muted);
}

.signup-form input:focus {
    border-color: var(--neon-orange);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
}

.signup-form button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: linear-gradient(
        135deg,
        var(--neon-orange) 0%,
        var(--neon-yellow) 100%
    );
    border: none;
    border-radius: 6px;
    font-family: "Press Start 2P", cursive;
    font-size: 10px;
    color: var(--bg-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.signup-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.signup-form button:active {
    transform: translateY(0);
}

.btn-icon {
    font-size: 12px;
}

/* Success State */
.signup-success {
    display: none;
    text-align: center;
    padding: 30px;
    background: rgba(57, 255, 20, 0.1);
    border: 2px solid var(--neon-green);
    border-radius: 12px;
}

.signup-success.show {
    display: block;
    animation: success-pop 0.5s ease;
}

.signup-box.hide {
    display: none;
}

@keyframes success-pop {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon {
    width: 50px;
    height: 50px;
    background: var(--neon-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: var(--bg-dark);
    font-weight: bold;
    box-shadow: 0 0 30px var(--neon-green);
}

.signup-success h3 {
    font-family: "Press Start 2P", cursive;
    font-size: 14px;
    color: var(--neon-green);
    margin-bottom: 8px;
}

.signup-success p {
    font-size: 12px;
    color: var(--text-secondary);
}

/* ========================================
   SOCIAL LINKS
   ======================================== */

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text-secondary);
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    border-color: var(--neon-blue);
    color: var(--neon-blue);
    background: rgba(0, 212, 255, 0.05);
}

.social-btn svg {
    width: 16px;
    height: 16px;
}

.globe {
    font-size: 14px;
}

/* ========================================
   ARCADE CONTROLS
   ======================================== */

.arcade-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 20px;
    margin-top: 20px;
}

.control-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow:
        inset 0 -4px 0 rgba(0, 0, 0, 0.3),
        0 4px 10px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: all 0.1s ease;
}

.control-btn:active {
    transform: translateY(2px);
    box-shadow:
        inset 0 -2px 0 rgba(0, 0, 0, 0.3),
        0 2px 5px rgba(0, 0, 0, 0.5);
}

.control-btn.red {
    background: linear-gradient(180deg, #ff4757 0%, #c0392b 100%);
}

.control-btn.yellow {
    background: linear-gradient(180deg, #ffe600 0%, #f39c12 100%);
}

.control-btn.green {
    background: linear-gradient(180deg, #39ff14 0%, #27ae60 100%);
}

.joystick {
    position: relative;
    margin-left: 20px;
}

.joystick-base {
    width: 60px;
    height: 60px;
    background: #2d2d44;
    border-radius: 50%;
    box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.5);
}

.joystick-stick {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(180deg, #4a4a6a 0%, #2d2d44 100%);
    border-radius: 50%;
    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    animation: joystick-wobble 4s ease-in-out infinite;
}

@keyframes joystick-wobble {
    0%,
    100% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    25% {
        transform: translate(-45%, -55%) rotate(-5deg);
    }
    50% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    75% {
        transform: translate(-55%, -45%) rotate(5deg);
    }
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    margin-top: 10px;
}

.footer-text {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    color: var(--text-muted);
}

.divider {
    color: var(--border);
}

.slogan {
    color: var(--neon-pink);
    font-style: italic;
}

.credits {
    font-family: "Press Start 2P", cursive;
    font-size: 10px;
    color: var(--neon-yellow);
    padding: 6px 16px;
    background: rgba(255, 230, 0, 0.1);
    border: 1px solid var(--neon-yellow);
    border-radius: 4px;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 600px) {
    .arcade-cabinet {
        padding: 10px;
    }

    .screen-inner {
        padding: 20px 16px;
    }

    .header {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .high-score {
        align-items: center;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .signup-form {
        flex-direction: column;
    }

    .countdown {
        gap: 4px;
    }

    .countdown-block {
        min-width: 60px;
        padding: 12px 8px;
    }

    .countdown-separator {
        font-size: 18px;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .arcade-controls {
        transform: scale(0.8);
    }

    .footer {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-text {
        flex-direction: column;
        gap: 8px;
    }
}

/* ========================================
   GLITCH EFFECT (Optional hover)
   ======================================== */

.logo:hover .letter {
    animation: glitch 0.3s ease infinite;
}

@keyframes glitch {
    0%,
    100% {
        transform: translateY(0);
        text-shadow:
            0 0 10px var(--neon-blue),
            0 0 20px var(--neon-blue),
            0 0 40px var(--neon-blue),
            4px 4px 0 var(--neon-purple);
    }
    20% {
        transform: translate(-2px, 2px);
        text-shadow:
            -2px 0 var(--neon-pink),
            2px 0 var(--neon-blue),
            0 0 40px var(--neon-blue);
    }
    40% {
        transform: translate(2px, -2px);
        text-shadow:
            2px 0 var(--neon-pink),
            -2px 0 var(--neon-blue),
            0 0 40px var(--neon-blue);
    }
    60% {
        transform: translate(-2px, -2px);
    }
    80% {
        transform: translate(2px, 2px);
    }
}
