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

:root {
    --red:  #cc0000;
    --dark: #080808;
}

html, body { height: 100%; }

body {
    font-family: system-ui, -apple-system, sans-serif;
    background: var(--dark);
    color: #e0e0e0;
    overflow: hidden;
}

/* ─── Stage: fills the viewport, no scroll ─── */

.stage {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stage::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 50% at 50% 50%,
        rgba(160,0,0,0.25) 0%, transparent 70%);
    pointer-events: none;
}

/* ─── Faint hammer & sickle watermark behind everything ─── */

.watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: min(85vh, 85vw);
    line-height: 1;
    color: var(--red);
    opacity: 0.05;
    z-index: 0;
    user-select: none;
    pointer-events: none;
}

/* ─── RED — center, stands alone ─── */

.logo {
    position: relative;
    z-index: 5;
    font-size: clamp(7rem, 26vw, 22rem);
    font-weight: 900;
    color: var(--red);
    letter-spacing: -0.05em;
    line-height: 0.85;
    text-shadow:
        0 0 160px rgba(204,0,0,0.45),
        0 0 50px  rgba(204,0,0,0.25);
    user-select: none;
}

/* ─── Memes scattered around the center ─── */

.meme-card {
    position: absolute;
    width: clamp(150px, 16vw, 240px);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, z-index 0s;
    z-index: 2;
}

.meme-card:nth-child(3) {   /* top-left */
    top: 6vh;
    left: 5vw;
    transform: rotate(-9deg);
}
.meme-card:nth-child(4) {   /* top-right */
    top: 9vh;
    right: 6vw;
    transform: rotate(7deg);
}
.meme-card:nth-child(5) {   /* bottom-left */
    bottom: 9vh;
    left: 8vw;
    transform: rotate(6deg);
}
.meme-card:nth-child(6) {   /* bottom-right */
    bottom: 9vh;
    right: 7vw;
    transform: rotate(-8deg);
}

.meme-card:hover {
    transform: rotate(0deg) scale(1.08) !important;
    z-index: 10;
}

.meme-card img {
    width: 100%;
    display: block;
    border-radius: 2px;
    box-shadow:
        0 12px 44px rgba(0,0,0,0.8),
        0 2px  10px rgba(0,0,0,0.5);
    transition: box-shadow 0.3s ease;
}

.meme-card:hover img {
    box-shadow:
        0 22px 64px rgba(0,0,0,0.9),
        0 0   30px rgba(204,0,0,0.2);
}

/* ─── Small screens: shrink so it still fits one screen ─── */

@media (max-width: 720px) {
    .meme-card { width: clamp(96px, 30vw, 150px); }

    .meme-card:nth-child(3) { top: 4vh; left: 3vw;  }
    .meme-card:nth-child(4) { top: 4vh; right: 3vw; }
    .meme-card:nth-child(5) { bottom: 7vh; left: 4vw;  }
    .meme-card:nth-child(6) { bottom: 7vh; right: 4vw; }
}
