* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow: hidden;
    background-color: #000;
    font-family: 'Times New Roman', Times, serif;
}

#enter-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    color: #555;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    cursor: pointer;
    transition: opacity 2s ease;
    font-family: monospace;
    font-size: 16px;
    letter-spacing: 4px;
}

#enter-screen p {
    transition: color 0.3s ease;
}

#enter-screen:hover p {
    color: #900;
}

/* --- BACKGROUND --- */
#forest-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('img/forest.jpg');
    background-size: cover;
    background-position: center;
    filter: grayscale(80%) brightness(40%);
    z-index: 0;
}

/* --- FOREGROUND PERSON --- */
#suspect-img {
    position: fixed;
    bottom: -5%;
    left: 50%;
    transform: translateX(-50%);
    height: 85vh;
    width: auto;
    opacity: 0.6;
    z-index: 2;
    pointer-events: none;
    filter: contrast(120%) drop-shadow(0px 0px 20px rgba(0,0,0,0.8));
}

#newspaper-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
}

.newspaper {
    position: absolute;
    background-color: #e8e6df;
    padding: 15px;
    width: 300px;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.5);
    border: 1px solid #ccc;
    right: -400px; 
}

.newspaper h2 {
    font-size: 22px;
    text-align: center;
    border-bottom: 2px solid #333;
    padding-bottom: 5px;
    margin-bottom: 10px;
    line-height: 1.1;
}

.news-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.news-body img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    filter: grayscale(100%) contrast(150%);
}

.fake-text .line {
    height: 6px;
    background-color: #999;
    margin-bottom: 6px;
    width: 100%;
}
.fake-text .line:last-child {
    width: 60%;
}

.paper-1 {
    top: 10%;
    animation: flyPast 25s linear infinite;
    animation-delay: 0s;
}

.paper-2 {
    top: 50%;
    animation: flyPast 20s linear infinite;
    animation-delay: 5s;
}

.paper-3 {
    top: 25%;
    animation: flyPast 28s linear infinite;
    animation-delay: 12s;
}

.paper-4 {
    top: 65%;
    animation: flyPast 22s linear infinite;
    animation-delay: 18s;
}

@keyframes flyPast {
    0% {
        transform: translateX(0) rotate(5deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateX(-120vw) rotate(-15deg);
        opacity: 0;
    }
}