body {
    background-color: #0a0500; /* Майже чорний */
    color: #ff8c00; /* Оранжевий колір тексту */
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    justify-content: center;
    padding: 20px;
    margin: 0;
}



/* Контейнер для секретного фото */
.evidence-photo {
    margin: 20px 0;
    border: 2px solid #ff8c00;
    padding: 5px;
    background: #000;
    position: relative;
}

.secret-img {
    width: 100%;
    height: auto;
    display: block;
    /* Ефект старого фото: оранжевий відтінок і зернистість */
    filter: sepia(1) hue-rotate(320deg) saturate(1.5) contrast(1.2);
    opacity: 0.9;
}

.photo-label {
    background: #ff8c00;
    color: #000;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 10px;
    text-align: center;
    letter-spacing: 2px;
}

/* Додамо трохи "миготіння" для фото, ніби воно на старому екрані */
.evidence-photo:after {
    content: "";
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%), 
                linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
    background-size: 100% 4px, 3px 100%;
    pointer-events: none;
}







/* Ефект сканування (лінія, що бігає) */
.scanline {
    width: 100%;
    height: 100px;
    z-index: 10;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(255, 140, 0, 0.1) 50%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.1;
    position: absolute;
    bottom: 100%;
    animation: scan 4s linear infinite;
}

@keyframes scan {
    0% { bottom: 100%; }
    100% { bottom: -100px; }
}

.secret-container {
    max-width: 800px;
    background: #1a0f00;
    border: 2px solid #ff8c00;
    padding: 30px;
    box-shadow: 0 0 30px rgba(255, 140, 0, 0.2);
}

.status-tag {
    color: #ff4444;
    font-weight: bold;
    border-bottom: 1px solid #ff4444;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

h1, h2, h3, h4 { text-transform: uppercase; margin-top: 0; }
h1 { font-size: 1.8rem; text-align: center; color: #ff8c00; }

.alert {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
    padding: 15px;
    margin-bottom: 25px;
}

.location-box {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 5px;
}

.moon { border-left: 5px solid #888; background: rgba(255, 255, 255, 0.05); }
.mars { border-left: 5px solid #ff4444; background: rgba(255, 68, 68, 0.05); }

.file-item {
    font-size: 0.8rem;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 140, 0, 0.2);
}

.btn-exit {
    width: 100%;
    padding: 15px;
    background: #ff8c00;
    color: #000;
    border: none;
    font-weight: bold;
    cursor: pointer;
    margin-top: 30px;
    transition: 0.3s;
}

.btn-exit:hover {
    background: #ff4444;
    box-shadow: 0 0 20px #ff4444;
}
