html,
body {
    margin: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: black;
}

body {
    position: relative;
    font-family: monospace;
}

/* =========================
   BACKGROUND
========================= */

.background {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.overlay {
    position: fixed;
    inset: 0;

    background: rgba(0,0,0,.45);
}

/* =========================
   PANEL ARCHIVO
========================= */

.archive-panel {
    position: absolute;
    top: 40px;
    left: 40px;

    z-index: 10;

    color: #9fe89f;

    font-family: monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.archive-title {
    font-size: 28px;
    margin-bottom: 18px;
}

.archive-meta {
    font-size: 14px;
    line-height: 1.8;
}

.archive-spacer {
    height: 12px;
}

.archive-divider {
    margin-top: 18px;
    width: 280px;
    border-top: 1px solid rgba(159,232,159,.45);
}

/* =========================
   LISTA DE PELÍCULAS
========================= */

.tape-list {
    margin-top: 20px;
}

/* ITEM PRINCIPAL */
.tape-item {
    display: flex;
    align-items: center;
    gap: 12px;

    width: 420px;

    margin-bottom: 14px;

    cursor: pointer;

    transition: transform 0.2s ease, filter 0.2s ease;
}

.tape-item:hover {
    transform: scale(1.02);
    filter: brightness(1.2) contrast(1.1);
}

/* MINIATURA */
.tape-thumb {
    width: 70px;
    height: 100px;
    object-fit: cover;

    border: 1px solid rgba(159,232,159,.3);

    filter: grayscale(10%) contrast(1.2);
}

/* INFO TEXTO */
.tape-info {
    display: flex;
    flex-direction: column;
}

/* TITULO */
.tape-title {
    color: #d8ffd8;
    font-size: 15px;
    letter-spacing: 1px;
}

/* ESTADO BASE */
.tape-status {
    font-size: 11px;
    opacity: 0.9;
}

/* =========================
   ESTADOS DEL ARCHIVO
========================= */

.recuperado {
    color: #8dff8d;
    text-shadow: 0 0 6px rgba(141,255,141,0.6);
}

.parcial {
    color: #ffd96a;
    text-shadow: 0 0 6px rgba(255,217,106,0.5);
}

.dañado {
    color: #ff8c8c;
    text-shadow: 0 0 6px rgba(255,140,140,0.5);
}

.classificado {
    color: #8cc7ff;
}