/* Classified Header Component - El Archivo Infinito */

.classified-header {
    background: rgba(0, 255, 0, 0.03);
    border: 2px solid #0f0;
    padding: 1.5rem;
    margin-bottom: 2rem;
    font-family: 'Courier New', monospace;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
}

.classified-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 255, 0, 0.03) 0px,
        rgba(0, 255, 0, 0.03) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
}

.classified-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 255, 0, 0.3);
}

.classified-label {
    font-size: 0.9rem;
    color: #f00;
    letter-spacing: 0.2em;
    font-weight: bold;
    text-transform: uppercase;
}

.classified-status {
    font-size: 0.7rem;
    color: #0f0;
    opacity: 0.6;
    letter-spacing: 0.1em;
}

.classified-header-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.8rem;
    position: relative;
    z-index: 1;
}

.classified-field {
    font-size: 0.75rem;
    color: #0f0;
    opacity: 0.8;
}

.classified-field-label {
    color: #0ff;
    opacity: 0.6;
    margin-right: 0.5rem;
}

.classified-field-value {
    color: #0f0;
    font-weight: bold;
}

.classified-warning {
    margin-top: 1rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 0, 0, 0.3);
    font-size: 0.65rem;
    color: #f00;
    text-align: center;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .classified-header {
        padding: 1rem;
    }
    
    .classified-header-content {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .classified-label {
        font-size: 0.75rem;
    }
    
    .classified-field {
        font-size: 0.7rem;
    }
}

/* Animation on load */
@keyframes classified-flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.95; }
}

.classified-header {
    animation: classified-flicker 0.1s ease-in-out 3;
}
