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

html,
body {
    width: 100%;
    height: 100%;
}

body {
    overflow: hidden;
    position: relative;
    background: #000;
    font-family: "Courier New", monospace;
}

.background-container,
.logo-container {
    position: fixed;
    inset: 0;
    overflow: hidden;
}

.background-container {
    z-index: 1;
    background: #000;
}

.logo-container {
    z-index: 2;
    pointer-events: none;
}

.meme-image {
    position: absolute;
    display: block;
    object-fit: contain;
    cursor: pointer;
    user-select: none;
    -webkit-user-drag: none;
    filter: saturate(1.35) contrast(1.12);
}

.logo {
    position: absolute;
    display: block;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    filter:
        drop-shadow(0 0 8px #6cff00)
        drop-shadow(0 0 18px #00ff55);
}

.error-text {
    position: fixed;
    z-index: 4;
    max-width: 420px;
    pointer-events: none;
    white-space: nowrap;
    font-weight: 900;
    line-height: 0.95;
    text-transform: uppercase;
    opacity: 1;
    color: #fff;
    text-shadow:
        2px 2px 0 #000,
        -2px -2px 0 #000,
        0 0 8px #7cff00,
        0 0 18px #00ff55,
        0 0 30px #ffee00;
    mix-blend-mode: screen;
}

.floating-highlight {
    position: fixed;
    z-index: 40;
    user-select: none;
}

.contract-container {
    position: fixed;
    z-index: 40;
    max-width: calc(100vw - 20px);
    padding: 18px 26px;
    cursor: pointer;
    user-select: none;
    background: rgba(0, 0, 0, 0.58);
    border: 3px solid #7cff00;
    box-shadow:
        0 0 12px #7cff00,
        0 0 30px #00ff55,
        inset 0 0 16px rgba(124, 255, 0, 0.45);
    text-shadow:
        0 0 8px #fff,
        0 0 18px #7cff00,
        0 0 36px #00ff55;
    animation: socialPulse 0.55s infinite alternate;
}

.contract-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: clamp(15px, 2vw, 24px);
    font-weight: 900;
    letter-spacing: 1px;
    color: #fff;
    text-shadow:
        0 0 8px #fff,
        0 0 18px #7cff00,
        0 0 36px #00ff55;
    animation: contractPulse 0.65s infinite alternate;
}

.social-link {
    display: block;
    padding: 16px 24px;
    text-decoration: none;
    font-size: clamp(18px, 2.4vw, 30px);
    font-weight: 900;
    letter-spacing: 2px;
    color: #fff;
    background: rgba(0, 0, 0, 0.68);
    border: 3px solid #7cff00;
    box-shadow:
        0 0 12px #7cff00,
        0 0 30px #00ff55,
        inset 0 0 16px rgba(124, 255, 0, 0.45);
    text-shadow:
        0 0 8px #fff,
        0 0 18px #7cff00,
        0 0 36px #00ff55;
    animation: socialPulse 0.55s infinite alternate;
}

.twitter-link {
    transform: rotate(3deg);
}

.pump-link {
    transform: rotate(-4deg);
}

@keyframes socialPulse {
    from {
        filter: hue-rotate(0deg);
    }
    to {
        filter: hue-rotate(90deg) brightness(1.25);
    }
}

.copy-notification {
    position: absolute;
    left: 50%;
    top: -44px;
    transform: translateX(-50%) rotate(3deg);
    padding: 8px 14px;
    color: #000;
    background: #7cff00;
    border: 2px solid #000;
    font-size: 14px;
    font-weight: 900;
    opacity: 0;
    transition: opacity 0.15s;
    pointer-events: none;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 30;
    pointer-events: none;
    opacity: 0.15;
    background: repeating-linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.2) 0,
        rgba(255, 255, 255, 0.2) 1px,
        transparent 1px,
        transparent 4px
    );
}

@keyframes contractPulse {
    from {
        transform: scale(1);
        filter: hue-rotate(0deg);
    }
    to {
        transform: scale(1.045);
        filter: hue-rotate(65deg);
    }
}

@media (max-width: 700px) {
    .contract-container {
        padding: 14px 18px;
    }

    .error-text {
        max-width: 260px;
        white-space: normal;
    }
}
