/* Apex Intel — Page-Specific Styles */
/* Extracted from apex.html inline <style> for SPA compatibility */

:root {
    --apex-red: #ff4655;
    --apex-accent: #ffb100;
}

.apex-header {
    border-left: 4px solid var(--apex-red);
    padding-left: 2rem;
    margin-bottom: 4rem;
}

.intel-log {
    margin-top: 4rem;
}

.apex-log-entry {
    border-bottom: 1px solid rgba(255, 70, 85, 0.2);
    padding-bottom: 4rem;
    margin-bottom: 4rem;
    display: block;
}

.log-header-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 70, 85, 0.3);
    box-shadow: 0 0 30px rgba(255, 70, 85, 0.1);
    display: block;
}

.apex-log-entry:last-child {
    border-bottom: none;
}

.log-meta {
    display: flex;
    gap: 1.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--apex-red);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.log-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    text-transform: uppercase;
    line-height: 1.2;
}

.apex-log-analysis {
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    color: #ccc;
    max-width: 900px;
    margin: 0 auto;
}

.analysis-block {
    background: rgba(255, 70, 85, 0.05);
    border-left: 2px solid var(--apex-red);
    padding: 1.5rem;
    margin: 2rem 0;
}

.analysis-block h4 {
    color: var(--apex-red);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.tactical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tactical-node {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 70, 85, 0.1);
    padding: 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.tactical-node:hover {
    background: rgba(255, 70, 85, 0.05);
    border-color: var(--apex-red);
    transform: translateY(-5px);
}

.node-label {
    color: var(--apex-red);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    display: block;
    margin-bottom: 0.5rem;
}

.node-content {
    font-size: 0.95rem;
    color: #eee;
}

/* Archive specific */
.archive-section {
    margin-top: 8rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 4rem;
}

.archive-log-min {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 70, 85, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 1rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.archive-log-min.loaded {
    opacity: 1;
    transform: translateY(0);
}

.archive-thumb {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 0.5rem;
    filter: grayscale(1) contrast(1.2);
    opacity: 0.5;
}

.archive-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.archive-info p {
    font-size: 0.85rem;
    color: #888;
}
