/* ═══════════════════════════════════════════
   THE MARATHON FOOD COURT — Custom Styles
   Cyberpunk accountability archive theme
   ═══════════════════════════════════════════ */

/* ── Neon Glow Effects ─────────────────────── */
.neon-glow-cyan {
    box-shadow: 0 0 8px rgba(0, 212, 255, 0.3), 0 0 20px rgba(0, 212, 255, 0.1);
}
.neon-glow-blue {
    box-shadow: 0 0 8px rgba(10, 132, 255, 0.3), 0 0 20px rgba(10, 132, 255, 0.1);
}
.neon-glow-teal {
    box-shadow: 0 0 8px rgba(0, 255, 200, 0.3), 0 0 20px rgba(0, 255, 200, 0.1);
}
.neon-glow-orange {
    box-shadow: 0 0 8px rgba(255, 107, 43, 0.3), 0 0 20px rgba(255, 107, 43, 0.1);
}
.neon-glow-pink {
    box-shadow: 0 0 8px rgba(255, 45, 120, 0.3), 0 0 20px rgba(255, 45, 120, 0.1);
}
.neon-glow-green {
    box-shadow: 0 0 8px rgba(57, 255, 20, 0.3), 0 0 20px rgba(57, 255, 20, 0.1);
}
.neon-glow-red {
    box-shadow: 0 0 8px rgba(255, 50, 50, 0.4), 0 0 20px rgba(255, 50, 50, 0.15);
}

.neon-text-cyan {
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5), 0 0 30px rgba(0, 212, 255, 0.2);
}
.neon-text-blue {
    text-shadow: 0 0 10px rgba(10, 132, 255, 0.5), 0 0 30px rgba(10, 132, 255, 0.2);
}
.neon-text-teal {
    text-shadow: 0 0 10px rgba(0, 255, 200, 0.5), 0 0 30px rgba(0, 255, 200, 0.2);
}
.neon-text-orange {
    text-shadow: 0 0 10px rgba(255, 107, 43, 0.5), 0 0 30px rgba(255, 107, 43, 0.2);
}
.neon-text-pink {
    text-shadow: 0 0 10px rgba(255, 45, 120, 0.5), 0 0 30px rgba(255, 45, 120, 0.2);
}
.neon-text-green {
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.5), 0 0 30px rgba(57, 255, 20, 0.2);
}

/* ── Status Badges ────────────────────────── */
.status-badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    border-radius: 0.25rem;
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid transparent;
}
.status-open {
    background: rgba(0, 212, 255, 0.12);
    color: #00d4ff;
    border-color: rgba(0, 212, 255, 0.3);
}
.status-under_review {
    background: rgba(0, 255, 200, 0.12);
    color: #00ffc8;
    border-color: rgba(0, 255, 200, 0.3);
}
.status-substantiated {
    background: rgba(255, 45, 120, 0.12);
    color: #ff2d78;
    border-color: rgba(255, 45, 120, 0.3);
}
.status-unsubstantiated {
    background: rgba(57, 255, 20, 0.12);
    color: #39ff14;
    border-color: rgba(57, 255, 20, 0.3);
}
.status-resolved {
    background: rgba(168, 85, 247, 0.12);
    color: #c084fc;
    border-color: rgba(168, 85, 247, 0.3);
}
.status-closed {
    background: rgba(122, 140, 156, 0.15);
    color: #7a8c9c;
    border-color: rgba(122, 140, 156, 0.3);
}

/* ── Severity Badges ──────────────────────── */
.severity-badge {
    font-size: 0.65rem;
    padding: 0.15rem 0.5rem;
    border-radius: 0.2rem;
    font-weight: 600;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.severity-low {
    background: rgba(122, 140, 156, 0.2);
    color: #a0b5c4;
}
.severity-moderate {
    background: rgba(0, 255, 200, 0.15);
    color: #00ffc8;
}
.severity-high {
    background: rgba(255, 107, 43, 0.2);
    color: #ff6b2b;
}
.severity-critical {
    background: rgba(255, 45, 120, 0.2);
    color: #ff2d78;
    font-weight: 700;
    animation: pulse-critical 2s ease-in-out infinite;
}

@keyframes pulse-critical {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ── Red Flag Stamp ────────────────────────── */
.red-flag-stamp {
    position: relative;
    border: 3px solid;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-family: 'Bebas Neue', sans-serif;
}
.red-flag-CONFIRMED {
    border-color: #ff2d78;
    background: rgba(255, 45, 120, 0.06);
}
.red-flag-LIKELY {
    border-color: #ff6b2b;
    background: rgba(255, 107, 43, 0.06);
}
.red-flag-POSSIBLE {
    border-color: #00ffc8;
    background: rgba(0, 255, 200, 0.06);
}

.red-flag-label {
    position: absolute;
    top: -0.5rem;
    left: 0.75rem;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 0 0.4rem;
    text-transform: uppercase;
    font-family: 'JetBrains Mono', monospace;
}
.red-flag-CONFIRMED .red-flag-label {
    background: #080c12;
    color: #ff2d78;
}
.red-flag-LIKELY .red-flag-label {
    background: #080c12;
    color: #ff6b2b;
}
.red-flag-POSSIBLE .red-flag-label {
    background: #080c12;
    color: #00ffc8;
}

/* ── Evidence Receipt Style ────────────────── */
.evidence-receipt {
    border-left: 3px dashed;
    padding-left: 1rem;
    position: relative;
}
.evidence-receipt::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
}
.evidence-receipt[data-kind="video"] {
    border-left-color: #ff2d78;
}
.evidence-receipt[data-kind="video"]::before {
    background: #ff2d78;
}
.evidence-receipt[data-kind="screenshot"] {
    border-left-color: #00d4ff;
}
.evidence-receipt[data-kind="screenshot"]::before {
    background: #00d4ff;
}
.evidence-receipt[data-kind="document"] {
    border-left-color: #00ffc8;
}
.evidence-receipt[data-kind="document"]::before {
    background: #00ffc8;
}
.evidence-receipt[data-kind="link"] {
    border-left-color: #39ff14;
}
.evidence-receipt[data-kind="link"]::before {
    background: #39ff14;
}
.evidence-receipt[data-kind="text"] {
    border-left-color: #0a84ff;
}
.evidence-receipt[data-kind="text"]::before {
    background: #0a84ff;
}

/* ── Case Card ────────────────────────────── */
.order-ticket {
    background: #0f1923;
    border: 1px solid #1e3248;
    border-top: 3px solid #00d4ff;
    border-radius: 0 0 0.75rem 0.75rem;
    transition: all 0.2s ease;
}
.order-ticket:hover {
    border-color: #00d4ff;
    background: #162233;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.1);
}

/* ── Line clamp utility ────────────────────── */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Section Header ───────────────────────── */
.menu-board-header {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.08em;
    border-bottom: 2px solid #1e3248;
    padding-bottom: 0.5rem;
}

/* ── Smooth transitions ────────────────────── */
a, button {
    transition-property: color, background-color, border-color, opacity, transform;
    transition-duration: 150ms;
    transition-timing-function: ease-in-out;
}

/* ── Scrollbar styling ─────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #080c12; }
::-webkit-scrollbar-thumb { background: #1e3248; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #3a4f5c; }

/* ── Dotted Divider ────────────────────────── */
.receipt-divider {
    border-top: 2px dashed #1e3248;
    margin: 1rem 0;
}

/* ── Verified Stamp ────────────────────────── */
.verified-stamp {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.6rem;
    padding: 0.1rem 0.4rem;
    border-radius: 0.2rem;
    background: rgba(57, 255, 20, 0.1);
    color: #39ff14;
    border: 1px solid rgba(57, 255, 20, 0.3);
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
