body {
    margin: 0;
    overflow: hidden;
    background: #0b0f0c;
    font-family: "Courier New", monospace;
}

/* FOREST BASE */
.forest {
    width: 100vw;
    height: 100vh;
    position: relative;

    background: radial-gradient(circle at center, #1a2a1d, #050705);
}

/* FOG LAYER */
.fog {
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(rgba(120,160,120,0.05), transparent 70%);
    animation: driftFog 40s linear infinite;
}

/* MEMORY FRAGMENTS */
.memory {
    position: absolute;
    max-width: 240px;

    color: rgba(200,255,200,0.35);
    font-size: 13px;
    line-height: 1.4;

    transition: all 0.4s ease;
}

/* HOVER = clarity */
.memory:hover {
    color: rgba(220,255,220,0.9);
    transform: scale(1.05);
}

/* FINAL LINE */
.memory.final {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
}

/* SUBTLE FLOAT */
.memory {
    animation: float 6s ease-in-out infinite;
}

.memory:nth-child(2) { animation-delay: 1s; }
.memory:nth-child(3) { animation-delay: 2s; }
.memory:nth-child(4) { animation-delay: 3s; }
.memory:nth-child(5) { animation-delay: 4s; }

/* ANIMATIONS */
@keyframes float {
    0%,100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}

@keyframes driftFog {
    0% { transform: translate(-10%, -10%); }
    100% { transform: translate(-30%, -30%); }
}