* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow: hidden;
    font-family: "Courier New", monospace;
    background-color: #000000;
    width: 100vw;
    height: 100vh;
    position: relative;
}

.background-container {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.meme-image {
    position: absolute;
    border: none;
    cursor: pointer;
    user-select: none;
    -webkit-user-drag: none;
    object-fit: contain;
    opacity: 0.8;
}

.logo-container {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.logo {
    position: absolute;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
    z-index: 2;
}

.error-text {
    position: fixed;
    font-weight: bold;
    z-index: 3;
    pointer-events: none;
    opacity: 1;
    
    background: linear-gradient(
        to right,
        #216aff,
        #00ffa8,
        #fffe37,
        #ffae00,
        #ff2000
    );
    background-size: 100% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}

.error-text[style*="transform"] {
    background: linear-gradient(
        45deg,
        #216aff,
        #00ffa8,
        #fffe37,
        #ffae00,
        #ff6c00,
        #ff2000
    );
    background-size: 100% 100%;
    -webkit-background-clip: text;
    background-clip: text;
}

.contract-container {
    position: absolute;
    z-index: 10;
    cursor: pointer;
    padding: 20px 30px;
    transition: background-color 0.3s;
}

.contract-text {
    font-family: "Courier New", monospace;
    font-size: 22px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 
        0 0 20px #9933ff,
        0 0 40px #9933ff,
        0 0 60px #9933ff,
        0 0 80px #9933ff,
        0 0 100px #9933ff;
    user-select: none;
    animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
    from {
        text-shadow: 
            0 0 20px #9933ff,
            0 0 40px #9933ff,
            0 0 60px #9933ff,
            0 0 80px #9933ff,
            0 0 100px #9933ff;
    }
    to {
        text-shadow: 
            0 0 25px #9933ff,
            0 0 50px #9933ff,
            0 0 75px #9933ff,
            0 0 100px #9933ff,
            0 0 125px #9933ff;
    }
}

.copy-notification {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #9933ff;
    color: white;
    padding: 8px 15px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 11;
}
