@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700;900&family=Cinzel:wght@400;600&display=swap');

/* =====================================
   NEBULA TINT — TRANSMISSIONS PAGE
   Neutral cold blue — no member color
   ===================================== */
.nebula-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 10%, rgba(160, 180, 255, 1) 0%, transparent 60%);
    opacity: 0.12;
    pointer-events: none;
}

/* =====================================
   PAGE PANEL
   ===================================== */
.transmissions-page {
    position: relative;
    z-index: 5;
    min-height: 100vh;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    background: rgba(8, 8, 18, 0.93);
    box-shadow: 0 0 120px rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 60px 100px;
    gap: 50px;
}

/* =====================================
   BACK NAVIGATION
   ===================================== */
.back-link {
    position: fixed;
    top: 28px;
    left: 28px;
    z-index: 20;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.back-link:hover {
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

/* =====================================
   HUB HEADER — ARCHIVE CLASSIFICATION
   ===================================== */
.hub-header {
    width: 100%;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 2px solid rgba(255, 255, 255, 0.3);
    padding: 26px 30px;
    font-family: 'Courier New', 'Lucida Console', monospace;
}

.hub-header-title {
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    text-transform: uppercase;
    line-height: 1.8;
}

.hub-header-row {
    display: flex;
    gap: 16px;
    margin-bottom: 7px;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    line-height: 1.7;
}

.hub-header-label {
    color: rgba(255, 255, 255, 0.5);
    min-width: 200px;
    flex-shrink: 0;
}

.hub-header-value {
    color: rgba(255, 255, 255, 0.88);
}

.hub-header-warning {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    color: rgba(220, 80, 80, 1);
    line-height: 1.9;
    text-transform: uppercase;
}

/* =====================================
   TRANSMISSION LIST
   ===================================== */
.transmission-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* =====================================
   TRANSMISSION ENTRY
   ===================================== */
.transmission-entry {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-left: 3px solid rgba(255, 255, 255, 0.08);
    padding: 28px 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.transmission-entry.is-decrypted {
    border-left-color: rgba(111, 255, 176, 0.5);
}

.transmission-entry.is-decrypted:hover {
    background: rgba(111, 255, 176, 0.03);
    border-color: rgba(111, 255, 176, 0.15);
    border-left-color: rgba(111, 255, 176, 0.7);
}

.transmission-entry.is-signal-detected {
    border-left-color: rgba(255, 200, 60, 0.5);
}

.transmission-entry.is-incoming {
    border-left-color: rgba(255, 255, 255, 0.12);
}

/* =====================================
   ENTRY META ROW
   ===================================== */
.entry-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    font-family: 'Courier New', monospace;
}

.entry-number {
    font-size: 0.95rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.6);
}

.entry-date {
    font-size: 0.82rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.55);
}

.entry-type {
    font-family: 'Orbitron', monospace;
    font-size: 0.62rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 3px 8px;
}

.entry-status {
    font-family: 'Orbitron', monospace;
    font-size: 0.62rem;
    letter-spacing: 3px;
    padding: 3px 10px;
    margin-left: auto;
}

.entry-status.status-decrypted {
    color: #6fffb0;
    border: 1px solid rgba(111, 255, 176, 0.3);
    text-shadow: 0 0 10px rgba(111, 255, 176, 0.4);
}

.entry-status.status-signal-detected {
    color: #ffcc44;
    border: 1px solid rgba(255, 200, 60, 0.3);
}

.entry-status.status-incoming {
    color: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* =====================================
   ENTRY TITLE + FRAGMENT
   ===================================== */
.entry-title {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.92);
    text-transform: uppercase;
}

.transmission-entry.is-signal-detected .entry-title,
.transmission-entry.is-incoming .entry-title {
    color: rgba(255, 255, 255, 0.7);
}

.entry-fragment {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.9;
    max-width: 680px;
}

/* =====================================
   ACCESS LINK
   ===================================== */
.entry-access {
    display: inline-block;
    align-self: flex-end;
    font-family: 'Orbitron', monospace;
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: #6fffb0;
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(111, 255, 176, 0.3);
    padding-bottom: 2px;
    transition: color 0.3s ease, border-color 0.3s ease, text-shadow 0.3s ease;
}

.entry-access:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
    text-shadow: 0 0 10px rgba(111, 255, 176, 0.5);
}

/* =====================================
   HUB FOOTER
   ===================================== */
.hub-footer {
    width: 100%;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    text-align: center;
}

.hub-footer-text {
    font-family: 'Orbitron', monospace;
    font-size: 0.6rem;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.15);
    text-transform: uppercase;
}

/* =====================================
   RESPONSIVE
   ===================================== */
@media (max-width: 768px) {
    .transmissions-page {
        padding: 80px 25px 80px;
        gap: 40px;
    }

    .hub-header {
        padding: 20px;
    }

    .hub-header-label {
        min-width: 150px;
    }

    .transmission-entry {
        padding: 22px 20px;
    }

    .entry-meta {
        gap: 14px;
    }

    .entry-status {
        margin-left: 0;
        margin-top: 4px;
    }

    .entry-title {
        font-size: 1.1rem;
    }

    .entry-access {
        align-self: flex-start;
    }
}

/* =====================================
   REDUCED MOTION
   ===================================== */
@media (prefers-reduced-motion: reduce) {
    .transmission-entry {
        transition: none;
    }
}
