body {
    background-color: black;
    margin: 0;
    overflow: hidden;
    font-family: "Times New Roman", serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    cursor: crosshair; /* Меняем курсор на прицел для стиля */
}

/* Виньетка из начала */
body::after {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    animation: vignette-pulse 4s infinite ease-in-out;
    pointer-events: none; z-index: 999;
}

@keyframes vignette-pulse {
    0%, 100% { box-shadow: inset 0 0 300px rgba(0,0,0,1), inset 0 0 500px rgba(138,43,226,0.3); }
    50% { box-shadow: inset 0 0 250px rgba(0,0,0,1), inset 0 0 450px rgba(138,43,226,0.5); }
}

.main-title {
    color: white;
    font-size: 6rem;
    letter-spacing: 25px;
    text-transform: uppercase;
    user-select: none; /* Чтобы нельзя было выделить текст */
}

.spawned-meme {
    position: absolute;
    width: 250px;
    border: 2px solid white;
    z-index: 5;
    pointer-events: none; /* Чтобы картинки не мешали кликать дальше */
    transition: opacity 0.5s ease, transform 0.5s ease;
    animation: appear 0.2s ease-out;
}

@keyframes appear {
    from { transform: scale(0.2); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Твоя кнопка "назад" без крови */
.back-link {
    display: block;
    text-align: center;
    color: #444; 
    text-decoration: none;
    margin-top: 40px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1001;
}

.back-link:hover {
    color: #ff0000;
    text-shadow: 0 0 15px #ff0000;
    letter-spacing: 6px;
    transform: scale(1.1);
}
