
body.secret-agent-theme {
    background: radial-gradient(circle at 50% 30%, #2b0c25 0%, #120310 60%, #050104 100%);
    color: #ffbdf2;
    font-family: monospace;
    margin: 0;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
    background-image: 
        radial-gradient(rgba(255, 77, 196, 0.15) 1px, transparent 1px),
        radial-gradient(circle at 50% 30%, #2b0c25 0%, #120310 60%, #050104 100%);
    background-size: 24px 24px, 100% 100%;
}

/* --- ESTADO 1: LA LAPTOP CERRADA (BOTÓN INICIAL) --- */
.laptop-closed-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    cursor: pointer;
}

.laptop-icon-box {
    border: 2px solid #ff4dc4;
    background: rgba(18, 5, 15, 0.9);
    padding: 30px 50px;
    text-align: center;
    box-shadow: 0 0 30px rgba(255, 77, 196, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.laptop-icon-box:hover {
    transform: scale(1.05);
    border-color: #fff;
    box-shadow: 0 0 50px rgba(255, 77, 196, 0.7);
}

.laptop-blink-led {
    color: #ff22b8;
    font-size: 1.5rem;
    animation: blink 1s infinite;
    display: block;
    margin-bottom: 10px;
}

.laptop-icon-box p {
    color: #ffbdf2;
    font-weight: bold;
    margin: 0 0 10px 0;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.system-id {
    font-size: 0.65rem;
    color: #ff79df;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

/* --- ESTADO 2: CONTENEDOR ABIERTO (EXPEDIENTE LAPTOP) --- */
.hidden-laptop {
    display: none !important;
}

.file-container {
    width: 100%;
    max-width: 980px;
    border: 2px solid #ff4dc4;
    background-color: rgba(18, 5, 15, 0.92);
    backdrop-filter: blur(8px);
    box-shadow: 0 0 40px rgba(255, 77, 196, 0.4), inset 0 0 20px rgba(255, 77, 196, 0.08);
    padding: 20px;
    position: relative;
    background-image: linear-gradient(rgba(255, 77, 196, 0.04) 1px, transparent 1px);
    background-size: 100% 4px;
    
    /* Animación épica de apertura de laptop (despliegue vertical y zoom) */
    transform-origin: bottom center;
    animation: openLaptopScreen 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes openLaptopScreen {
    0% { transform: scaleY(0.05) scaleX(0.2); opacity: 0; filter: brightness(3); }
    50% { transform: scaleY(1.02) scaleX(1); opacity: 0.8; }
    100% { transform: scaleY(1) scaleX(1); opacity: 1; filter: brightness(1); }
}

/* Barra superior simulada de la laptop abierta */
.laptop-os-header {
    background: #ff4dc4;
    color: #050204;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: -20px -20px 15px -20px;
}

.close-laptop-btn {
    background: #050204;
    border: none;
    color: #ff4dc4;
    font-weight: bold;
    cursor: pointer;
    font-size: 0.7rem;
    padding: 3px 8px;
    transition: 0.2s;
}

.close-laptop-btn:hover {
    background: #fff;
    color: #000;
}

/* Cabecera del Expediente */
.file-header {
    border-bottom: 2px solid #ff4dc4;
    padding-bottom: 10px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    gap: 15px;
    align-items: center;
}

.agency-tag {
    background: #ff4dc4;
    color: #050204;
    padding: 4px 10px;
    font-weight: bold;
    font-size: 11px;
    box-shadow: 0 0 8px #ff4dc4;
}

.file-header h1 {
    font-size: 1rem;
    color: #fff;
    margin: 0;
    text-shadow: 0 0 8px #ff4dc4, 0 0 15px #ff4dc4;
}

/* Grilla de 3 Columnas */
.file-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 12px;
}

.panel {
    border: 1px dashed #ff79df;
    padding: 12px;
    background: rgba(255, 77, 196, 0.03);
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.panel:hover {
    border-color: #fff;
    background: rgba(255, 77, 196, 0.07);
    box-shadow: 0 0 12px rgba(255, 77, 196, 0.3);
}

.panel h2 {
    font-size: 0.85rem;
    color: #ff4dc4;
    margin-top: 0;
    margin-bottom: 10px;
    border-bottom: 1px solid #ff79df;
    padding-bottom: 4px;
    letter-spacing: 1px;
}

/* Listas y Stats */
.stat-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.75rem;
}

.stat-list li {
    margin-bottom: 8px;
}

.bar {
    width: 100%;
    height: 6px;
    background: #2a0b22;
    border: 1px solid #ff4dc4;
    margin-top: 3px;
    overflow: hidden;
}

.fill {
    height: 100%;
    background: #ff4dc4;
    box-shadow: 0 0 8px #ff4dc4;
    width: var(--target-width);
}

.mini-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.6;
}

/* Dossier Central */
.main-dossier p {
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 6px 0;
}

.mission-box {
    border: 1px solid #ff4dc4;
    background: rgba(255, 77, 196, 0.08);
    padding: 8px;
    margin-top: 12px;
}

.mission-title {
    color: #fff;
    font-weight: bold;
    margin: 0 0 4px 0 !important;
}

.mission-desc {
    font-size: 0.75rem !important;
    font-style: italic;
    margin: 0 !important;
}

/* Fotos y Marcos de ID */
.agent-photo-frame {
    width: 100%;
    height: 180px;
    border: 1px solid #ff4dc4;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0066b2; 
    overflow: hidden;
}

.agent-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.id-code {
    text-align: center;
    font-size: 0.75rem;
    margin: 6px 0 0 0;
    color: #fff;
}

.notes-text {
    font-size: 0.75rem;
    font-style: italic;
    line-height: 1.4;
    margin: 0;
}

/* Footer */
.file-footer {
    border-top: 2px solid #ff4dc4;
    margin-top: 15px;
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.security-level {
    font-size: 0.7rem;
    color: #ff79df;
}

.back-btn {
    color: #ff4dc4;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid #ff4dc4;
    padding: 5px 12px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: #ff4dc4;
    color: #050204;
    box-shadow: 0 0 15px #ff4dc4;
}

.evidence-photo-frame {
    width: 100%;
    height: 180px;
    border: 1px solid #ff4dc4;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1a262c; 
    overflow: hidden;
}

.evidence-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}









