:root {
    --bg-dark: #07090f;
    --glass-bg: rgba(16, 22, 38, 0.7);
    --glass-border: rgba(43, 219, 255, 0.2);
    --neon-cyan: #00f0ff;
    --neon-pink: #ff003c;
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;
    --font-sans: 'Inter', sans-serif;
    --font-display: 'Orbitron', sans-serif;
    /* Timeline company colors */
    --timeline-color-0: #00f0ff;
    --timeline-color-1: #ff003c;
    --timeline-color-2: #00ff88;
    --timeline-color-3: #ffaa00;
    --timeline-color-4: #b366ff;
    --timeline-color-5: #ffeb3b;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(0, 240, 255, 0.05), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(255, 0, 60, 0.05), transparent 25%);
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-cyan);
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.glass-panel:hover {
    border-color: rgba(0, 240, 255, 0.5);
    box-shadow: 0 8px 32px 0 rgba(0, 240, 255, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(7, 9, 15, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo h1 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--text-main);
    letter-spacing: 2px;
}

.logo span {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

nav a:hover,
nav a.active {
    color: var(--neon-cyan);
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.5);
}

.language-selector {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-left: 2rem;
}

.lang-flag {
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
    filter: grayscale(100%) opacity(0.6);
}

.lang-flag:hover {
    transform: scale(1.2);
    filter: grayscale(0%) opacity(1);
}

.lang-flag.active-lang {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
    border-bottom: 2px solid var(--neon-cyan);
}

.ad-banner {
    width: 100%;
    max-width: 728px;
    height: 90px;
    margin: 1rem auto;
    background: #111827;
    border: 1px dashed #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    font-size: 0.8rem;
    border-radius: 8px;
}

main {
    flex: 1;
    padding: 2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.section-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 2px;
    border-left: 4px solid var(--neon-cyan);
    padding-left: 0.8rem;
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-header-flex .section-title {
    margin-bottom: 0;
}

.jump-link {
    color: var(--neon-cyan);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border: 1px solid var(--neon-cyan);
    border-radius: 4px;
    background: rgba(0, 240, 255, 0.1);
}

.jump-link:hover {
    background: var(--neon-cyan);
    color: #000;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

/* User counts styling */
.live-stats-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 1rem 2rem;
    margin-bottom: 2rem;
    align-items: center;
    border-color: rgba(0, 240, 255, 0.3);
}

.live-stat-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: var(--neon-pink);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-pink);
    animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #fff;
    font-weight: 700;
}

.hero-dashboard {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.main-gauge-container {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.speedometer {
    position: relative;
    width: 100%;
    max-width: 400px;
    display: flex;
    justify-content: center;
}

.meter {
    width: 100%;
    height: auto;
    transform: rotate(180deg);
}

.meter-bg {
    stroke: #1e293b;
}

.meter-value {
    stroke: var(--neon-cyan);
    filter: drop-shadow(0 0 8px var(--neon-cyan));
    transition: stroke-dashoffset 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.meter-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(20px);
}

.leader-name {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: -10px;
    z-index: 2;
}

.qbit-count {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.8), 0 0 40px rgba(0, 240, 255, 0.4);
    line-height: 1;
}

.qbit-label {
    font-size: 1rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 5px;
}

.side-panels {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    padding: 2rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-card h3 {
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--neon-pink);
    text-shadow: 0 0 15px rgba(255, 0, 60, 0.5);
}

.ad-card {
    background: #111827;
    border: 1px dashed #334155;
    color: #475569;
    font-size: 0.8rem;
}

.rankings-section {
    margin-bottom: 3rem;
}

.table-container {
    padding: 1rem;
    overflow-x: auto;
}

.ranking-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.ranking-table th {
    padding: 1rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--glass-border);
}

.ranking-table td {
    padding: 1.2rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1rem;
    vertical-align: middle;
}

.ranking-table tbody tr {
    transition: background 0.2s ease;
}

.ranking-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.ranking-table tbody tr:last-child td {
    border-bottom: none;
}

.rank-col {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text-muted);
    width: 60px;
}

.entity-col {
    font-weight: 600;
    color: #fff;
    min-width: 150px;
}

.lq-col {
    font-family: var(--font-display);
    font-weight: 700;
    color: #4facfe;
    white-space: nowrap;
    min-width: 120px;
}

.aq-col {
    font-family: var(--font-display);
    font-weight: 700;
    color: #00ffcc;
    white-space: nowrap;
    min-width: 120px;
}

.pq-col {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    min-width: 120px;
}

.qubit-physical {
    font-size: 1.1rem;
    color: var(--neon-cyan);
}

.trend-up {
    color: #10b981;
}

.trend-down {
    color: var(--neon-pink);
}

/* --- Intel Section --- */
.intel-section {
    margin-bottom: 3rem;
    padding-top: 2rem;
}

.intel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.intel-card {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
}

.intel-card h3 {
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.4;
    font-family: var(--font-display);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.intel-card p.intel-summary {
    font-size: 0.95rem;
    color: var(--text-main);
    flex-grow: 1;
}

.intel-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 8px;
    border: 1px dashed rgba(43, 219, 255, 0.3);
}

.intel-badge {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.intel-badge-label {
    color: var(--text-muted);
    font-weight: 600;
}

.intel-badge-value {
    color: var(--neon-cyan);
    font-weight: 700;
    text-align: right;
}

.intel-badge-value.qubit-val {
    font-size: 1rem;
    color: var(--neon-pink);
    text-shadow: 0 0 5px rgba(255, 0, 60, 0.5);
}

.intel-btn {
    display: inline-block;
    text-align: center;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    text-decoration: none;
    padding: 0.6rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.intel-btn:hover {
    background: var(--neon-cyan);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.6);
}

footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid var(--glass-border);
    background: rgba(7, 9, 15, 0.8);
    backdrop-filter: blur(10px);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-cyan);
}

/* --- Buy Me A Coffee Floating Button --- */
.bmc-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: rgba(255, 221, 0, 0.9);
    color: #000;
    text-decoration: none;
    font-family: var(--font-main);
    font-weight: 700;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 221, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bmc-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 221, 0, 0.6);
}

@media (max-width: 900px) {
    .hero-dashboard {
        grid-template-columns: 1fr;
    }

    .side-panels {
        flex-direction: row;
    }
}

@media (max-width: 600px) {
    .side-panels {
        flex-direction: column;
    }

    .qbit-count {
        font-size: 4rem;
    }

    .nav ul {
        gap: 1rem;
    }

    .logo h1 {
        font-size: 1.4rem;
    }
}

/* Content Pages (About / Privacy) */
.content-page {
    max-width: 800px;
    margin: 2rem auto;
}

.text-content {
    padding: 3rem;
}

.article-body h3 {
    font-family: var(--font-display);
    color: var(--neon-cyan);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.article-body p {
    margin-bottom: 1.5rem;
    color: var(--text-main);
    font-size: 1.05rem;
    line-height: 1.8;
}

.article-body ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    color: var(--text-main);
}

.article-body li {
    margin-bottom: 0.5rem;
}

/* --- Qbit History --- */
.history-page .history-intro {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.history-controls {
    margin-bottom: 2rem;
}

.history-filter-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.history-org-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
}

.history-org-checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-main);
    user-select: none;
}

.history-org-checkbox-label input {
    margin: 0;
}

.org-checkbox-name {
    white-space: nowrap;
}

/* Company shapes + colors: same in filter and on timeline */
.org-shape {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: var(--neon-cyan);
    border: 1px solid rgba(0, 240, 255, 0.5);
    flex-shrink: 0;
}

.org-shape.color-0 { background: var(--timeline-color-0); border-color: rgba(0, 240, 255, 0.6); }
.org-shape.color-1 { background: var(--timeline-color-1); border-color: rgba(255, 0, 60, 0.6); }
.org-shape.color-2 { background: var(--timeline-color-2); border-color: rgba(0, 255, 136, 0.6); }
.org-shape.color-3 { background: var(--timeline-color-3); border-color: rgba(255, 170, 0, 0.6); }
.org-shape.color-4 { background: var(--timeline-color-4); border-color: rgba(179, 102, 255, 0.6); }
.org-shape.color-5 { background: var(--timeline-color-5); border-color: rgba(255, 235, 59, 0.6); }

.org-shape.shape-0 {
    border-radius: 50%;
}

.org-shape.shape-1 {
    border-radius: 0;
}

.org-shape.shape-2 {
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.org-shape.shape-3 {
    transform: rotate(45deg);
    border-radius: 0;
}

.org-shape.shape-4 {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.org-shape.shape-5 {
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

/* Timeline graph: horizontal axis = date */
.history-timeline-graph {
    padding: 1.5rem 1rem 2rem;
    margin-bottom: 2rem;
}

.timeline-axis {
    display: flex;
    justify-content: space-between;
    padding: 0 0.5rem 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.timeline-track {
    position: relative;
    height: 56px;
    background: linear-gradient(to right, var(--glass-border), rgba(0, 240, 255, 0.4));
    border-radius: 4px;
    margin: 0 0.5rem;
}

.timeline-event {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--neon-cyan);
    z-index: 2;
}

.timeline-event:hover .timeline-event-dot {
    box-shadow: 0 0 12px var(--neon-cyan);
}

.timeline-event:hover .timeline-event-dot.shape-0,
.timeline-event:hover .timeline-event-dot.shape-1,
.timeline-event:hover .timeline-event-dot.shape-3,
.timeline-event:hover .timeline-event-dot.shape-4,
.timeline-event:hover .timeline-event-dot.shape-5 {
    transform: scale(1.3);
}

.timeline-event-dot {
    width: 14px;
    height: 14px;
    background: var(--neon-cyan);
    border: 2px solid var(--bg-dark);
    box-sizing: border-box;
    margin-bottom: 4px;
}

.timeline-event-dot.color-0 { background: var(--timeline-color-0); }
.timeline-event-dot.color-1 { background: var(--timeline-color-1); }
.timeline-event-dot.color-2 { background: var(--timeline-color-2); }
.timeline-event-dot.color-3 { background: var(--timeline-color-3); }
.timeline-event-dot.color-4 { background: var(--timeline-color-4); }
.timeline-event-dot.color-5 { background: var(--timeline-color-5); }

.timeline-event-dot.shape-0 { border-radius: 50%; }
.timeline-event-dot.shape-1 { border-radius: 0; }
.timeline-event-dot.shape-2 {
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}
.timeline-event-dot.shape-3 {
    transform: rotate(45deg);
    border-radius: 0;
}
.timeline-event-dot.shape-4 {
    border-radius: 0;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.timeline-event-dot.shape-5 {
    border-radius: 0;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.timeline-event-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.history-timeline {
    list-style: none;
}

.history-post {
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    border-left: 3px solid var(--neon-cyan);
}

.history-post-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.35rem;
}

.history-date {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.history-org-badge {
    display: inline-block;
    font-size: 0.8rem;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    background: rgba(0, 240, 255, 0.12);
    color: var(--neon-cyan);
    border: 1px solid rgba(0, 240, 255, 0.35);
    text-decoration: none;
}

.history-org-badge:hover {
    background: rgba(0, 240, 255, 0.2);
    color: var(--neon-cyan);
}

.history-post-link {
    color: var(--neon-cyan);
    text-decoration: none;
    font-size: 1.1rem;
}

.history-post-link:hover {
    text-decoration: underline;
}

.history-post-summary {
    margin-top: 0.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.history-back {
    display: inline-block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-decoration: none;
}

.history-back:hover {
    color: var(--neon-cyan);
}

.history-article-header time {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.history-article-body {
    margin-top: 1.5rem;
}

.history-article-body p {
    margin-bottom: 1.25rem;
}

.history-source {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
    font-size: 0.95rem;
}

.history-source a {
    color: var(--neon-cyan);
    word-break: break-all;
}

.history-post-url {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--neon-cyan);
}

.history-post-url:hover {
    text-decoration: underline;
}

/* --- Entity Detail Specific --- */

.entity-header-detail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.type-badge-detail {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    background: rgba(0, 255, 204, 0.1);
    color: #00ffcc;
    border: 1px solid rgba(0, 255, 204, 0.3);
}

.logo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.logo-placeholder span {
    font-size: 2em;
    font-weight: bold;
    opacity: 0.5;
}

.stats-grid-detail {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-box-detail {
    padding: 20px;
    text-align: center;
}

.stat-box-label {
    font-size: 0.9em;
    opacity: 0.7;
    margin-bottom: 10px;
}

.stat-box-val {
    font-size: 2.5em;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
}

.val-aq {
    color: #4facfe;
}

.val-pq {
    color: #fff;
}

.val-ratio {
    font-size: 1.5em;
    color: #00ffcc;
    margin-top: 15px;
}

.intel-report-container {
    background: rgba(0, 0, 0, 0.2);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.intel-report-title {
    margin-top: 0;
    color: #00ffcc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.intel-report-icon {
    font-size: 1.2em;
}

.intel-report-summary {
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 25px;
}

.intel-evidence-box {
    background: rgba(0, 255, 204, 0.05);
    border-left: 4px solid #00ffcc;
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 25px;
}

.evidence-label {
    display: block;
    margin-bottom: 12px;
    color: #00ffcc;
    font-size: 1.1em;
}

.evidence-content {
    line-height: 1.7;
    opacity: 0.85;
    margin: 0;
    font-size: 0.95em;
}

.no-intel-box {
    padding: 40px;
    text-align: center;
    opacity: 0.5;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 12px;
}

.back-nav-container {
    margin-top: 40px;
    text-align: center;
}

.back-nav-link {
    color: #4facfe;
    text-decoration: none;
    font-size: 0.9em;
}