﻿@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&family=Oxanium:wght@400;600;700&family=Space+Grotesk:wght@400;500;600&display=swap');

:root {
    --bg-color: #04070c;
    --card-bg: rgba(8, 18, 30, 0.7);
    --primary: #01ffff; 
    --accent-green: #01ffff;
    --danger: #00a3ff; 
    --warning: #7cf7ff; 
    --text-main: #e0e6ed;
    --text-muted: #94a3b8;
    --glow-blue: rgba(34, 211, 255, 0.35);
    --glow-blue-strong: rgba(34, 211, 255, 0.7);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-color);
    background-image:
        radial-gradient(circle at 20% 10%, rgba(34, 211, 255, 0.16), transparent 45%),
        radial-gradient(circle at 80% 20%, rgba(0, 170, 255, 0.12), transparent 50%),
        radial-gradient(circle at 30% 80%, rgba(0, 120, 255, 0.12), transparent 45%),
        linear-gradient(180deg, rgba(4, 7, 12, 0.95), rgba(4, 7, 12, 1));
    color: var(--text-main);
    font-family: 'Space Grotesk', 'Oxanium', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.whoami-theme {
    --primary: #ff4b4b;
    --accent-green: #ff4b4b;
    --glow-blue: rgba(255, 80, 80, 0.35);
    --glow-blue-strong: rgba(255, 80, 80, 0.7);
    --card-bg: rgba(30, 8, 8, 0.7);
    --text-muted: #c4a2a2;
    background-image:
        radial-gradient(circle at 50% 50%, rgba(255, 40, 40, 0.12), transparent 55%),
        radial-gradient(circle at 20% 80%, rgba(255, 20, 20, 0.08), transparent 60%),
        linear-gradient(180deg, rgba(6, 0, 0, 0.98), rgba(6, 0, 0, 1));
}

.whoami-theme::before,
.whoami-theme::after {
    content: none;
    background-image: none;
}

.whoami-theme header,
.whoami-theme footer {
    border-color: rgba(255, 80, 80, 0.25);
    background: rgba(10, 2, 2, 0.9);
}

.whoami-theme footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
}

.whoami-theme main {
    padding-bottom: 80px;
}

.whoami-page {
    flex: 1;
    display: grid;
    place-items: center;
    padding: 40px 6%;
    position: relative;
    z-index: 8;
}

.whoami-stage {
    position: relative;
    width: min(620px, 92vw);
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    margin-top: 22px;
    border-radius: 0;
    overflow: visible;
    border: none;
    background: transparent;
}

.whoami-stage::before {
    content: "";
    position: absolute;
    inset: -35% -25%;
    background:
        radial-gradient(circle at 40% 35%, rgba(255, 40, 40, 0.25), transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(255, 20, 20, 0.2), transparent 65%);
    filter: blur(38px);
    opacity: 0.6;
    z-index: 1;
    animation: stageGlow 2.2s ease-in-out infinite;
    pointer-events: none;
}

    
.whoami-image {
    width: 100%;
    height: auto;
    z-index: 4;
    will-change: transform, filter, opacity;
}

.whoami-image--ghost {
    opacity: 0.95;
}

.whoami-terminal {
    position: fixed;
    left: 24px;
    top: 50px;
    bottom: 100px;
    width: 60vw;
    max-width: 760px;
    max-height: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    font-family: 'JetBrains Mono', monospace;
    color: rgba(255, 130, 130, 0.8);
    text-shadow: 0 0 10px rgba(255, 40, 40, 0.8);
    z-index: 0;
    overflow: visible;
    display: flex;
    align-items: flex-end;
}

.whoami-terminal-output {
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.5px;
    white-space: pre-wrap;
    margin: 0;
    display: block;
    min-height: 120px;
    width: 100%;
}

.whoami-caret {
    display: none;
}


.whoami-glitch {
    position: relative;
    width: min(86%, 520px);
    display: grid;
    place-items: center;
    z-index: 26;
    transition: transform 0.6s ease;
}

.whoami-theme {
    overflow: hidden;
}

.whoami-image--ghost {
    opacity: 0.95;
}

.whoami-entry {
    position: absolute;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
    display: grid;
    gap: 8px;
    align-items: center;
    justify-items: start;
    opacity: 0;
    pointer-events: none;
    z-index: 30;
    color: rgba(255, 130, 130, 0.95);
    text-shadow: 0 0 10px rgba(255, 40, 40, 0.95);
}

.whoami-entry label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.whoami-entry input {
    width: 260px;
    background: transparent;
    border: 1px solid rgba(255, 80, 80, 0.6);
    padding: 8px 10px;
    color: rgba(255, 150, 150, 0.95);
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    box-shadow: 0 0 14px rgba(255, 40, 40, 0.4);
    outline: none;
}

.whoami-entry input:focus {
    box-shadow: 0 0 18px rgba(255, 40, 40, 0.7);
}

.whoami-entry-open .whoami-glitch {
    transform: translateY(-140px);
}

.whoami-entry-open .whoami-entry {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.6s ease 0.2s;
}

.whoami-unlocked {
    --primary: #01ffff;
    --accent-green: #01ffff;
    --glow-blue: rgba(34, 211, 255, 0.35);
    --glow-blue-strong: rgba(34, 211, 255, 0.7);
    --card-bg: rgba(8, 18, 30, 0.7);
    --text-muted: #94a3b8;
    background-image:
        radial-gradient(circle at 20% 10%, rgba(34, 211, 255, 0.16), transparent 45%),
        radial-gradient(circle at 80% 20%, rgba(0, 170, 255, 0.12), transparent 50%),
        radial-gradient(circle at 30% 80%, rgba(0, 120, 255, 0.12), transparent 45%),
        linear-gradient(180deg, rgba(4, 7, 12, 0.95), rgba(4, 7, 12, 1));
    transition: background 0.8s ease, color 0.8s ease;
}

.whoami-unlocked header,
.whoami-unlocked footer {
    border-color: rgba(34, 211, 255, 0.25);
    background: rgba(4, 7, 12, 0.85);
}

.whoami-unlocked .whoami-glitch,
.whoami-unlocked .whoami-slice,
.whoami-unlocked .whoami-entry,
.whoami-unlocked .whoami-terminal {
    opacity: 0;
    transition: opacity 1.2s ease;
    pointer-events: none;
}

.whoami-unlocked .whoami-stage::before {
    animation: stageGlowOut 1.2s ease forwards !important;
    pointer-events: none;
}

.whoami-unlocked .whoami-entry {
    display: none;
}

.whoami-unlocked .whoami-image--ghost {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.whoami-unlocked .whoami-random {
    text-shadow: none;
}

.whoami-unlocked .whoami-stage::after {
    content: none;
}

.whoami-unlocked .whoami-terminal,
.whoami-unlocked .whoami-terminal-output {
    text-shadow: none;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.whoami-pong {
    position: fixed;
    inset: 70px 0 70px;
    display: none;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    z-index: 140;
    pointer-events: none;
}

.whoami-pong.is-active {
    display: flex;
    pointer-events: auto;
}

.whoami-congrats {
    align-self: center;
    font-family: 'Oxanium', 'Space Grotesk', sans-serif;
    font-size: 2.4rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    text-shadow: 0 0 12px rgba(1, 255, 255, 0.35);
    text-align: center;
    max-width: min(92vw, 900px);
    line-height: 1.15;
    overflow-wrap: anywhere;
}

.pong-box {
    align-self: center;
    padding: 10px;
    border: 1px solid rgba(34, 211, 255, 0.25);
    box-shadow: 0 0 18px rgba(34, 211, 255, 0.35);
    background: rgba(4, 10, 18, 0.35);
    width: calc(100vw - 120px);
    max-width: 900px;
    height: calc(100vh - 220px);
    max-height: 520px;
    position: relative;
    touch-action: none;
}

#pong-canvas {
    display: block;
    border: none;
    box-shadow: none;
    background: transparent;
    width: 100%;
    height: 100%;
    touch-action: none;
}

.pong-help {
    align-self: center;
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.pong-hint {
    align-self: center;
    font-family: 'JetBrains Mono', monospace;
    color: var(--primary);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(1, 255, 255, 0.35);
}

.pong-prize {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: min(88vw, 520px);
    font-family: 'Oxanium', 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #d9f6ff;
    background: linear-gradient(145deg, rgba(4, 14, 28, 0.96), rgba(6, 20, 38, 0.98));
    border: 1px solid rgba(34, 211, 255, 0.6);
    padding: 18px 22px;
    box-shadow: 0 0 28px rgba(34, 211, 255, 0.34), inset 0 0 22px rgba(12, 86, 138, 0.3);
    text-align: center;
    text-decoration: none;
    z-index: 60;
    pointer-events: auto !important;
    touch-action: auto;
    -webkit-tap-highlight-color: transparent;
    clip-path: none;
}

.pong-prize[hidden] {
    display: none !important;
}

.pong-prize:hover {
    box-shadow: 0 0 30px rgba(34, 211, 255, 0.46), inset 0 0 24px rgba(12, 86, 138, 0.42);
}

.pong-prize span {
    display: block;
    line-height: 1.2;
    text-align: center;
}

.pong-prize-spark {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.86rem;
    letter-spacing: 2px;
    opacity: 0.92;
    color: #7cf7ff;
    text-shadow: 0 0 12px rgba(34, 211, 255, 0.6);
    animation: pongPrizeSpark 0.9s steps(2) infinite;
}

.pong-prize-title {
    font-size: clamp(1.55rem, 5vw, 2.35rem);
    letter-spacing: 4px;
    color: #01ffff;
    text-shadow: 0 0 14px rgba(1, 255, 255, 0.8), 0 0 30px rgba(1, 163, 255, 0.55);
    animation: pongPrizePulse 1.05s ease-in-out infinite;
}

.pong-prize-subtitle {
    font-size: clamp(0.88rem, 2vw, 1.08rem);
    letter-spacing: 1px;
    line-height: 1.35;
    max-width: 58ch;
    color: #9ac0da;
}

.pong-prize-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 6px;
    width: auto;
    min-height: 46px;
    min-width: 220px;
    padding: 11px 18px;
    border: 1px solid rgba(34, 211, 255, 0.75);
    background: linear-gradient(135deg, rgba(10, 38, 66, 0.9), rgba(7, 24, 48, 0.96));
    color: #d9f6ff;
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    box-shadow: 0 0 16px rgba(34, 211, 255, 0.34);
    clip-path: none;
    cursor: pointer;
    touch-action: manipulation;
    pointer-events: auto;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.pong-prize-button:hover,
.pong-prize-button:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(124, 247, 255, 0.95);
    box-shadow: 0 0 20px rgba(34, 211, 255, 0.52);
    outline: none;
}

@keyframes pongPrizePulse {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.04); filter: brightness(1.2); }
}

@keyframes pongPrizeSpark {
    0%, 100% { opacity: 0.55; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-2px); }
}

.pong-scoreboard {
    position: absolute;
    top: 10px;
    right: 14px;
    display: grid;
    gap: 6px;
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.pong-status {
    position: absolute;
    top: 40px;
    right: 14px;
    font-family: 'Oxanium', 'Space Grotesk', sans-serif;
    color: var(--primary);
    text-shadow: 0 0 12px rgba(1, 255, 255, 0.35);
    letter-spacing: 2px;
    font-size: 1rem;
}

.pong-scoreboard strong {
    color: var(--primary);
}

.whoami-slice {
    position: absolute;
    inset: -4% -2%;
    background-image: url("Images/Danger.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 0.85;
    mix-blend-mode: normal;
    pointer-events: none;
    z-index: 5;
}

.whoami-slice.slice-1 {
    clip-path: polygon(0 0, 100% 0, 100% 20%, 0 20%);
    animation: whoamiSliceA 0.55s steps(2) infinite;
}

.whoami-slice.slice-2 {
    clip-path: polygon(0 35%, 100% 35%, 100% 55%, 0 55%);
    animation: whoamiSliceB 0.7s steps(2) infinite;
}

.whoami-slice.slice-3 {
    clip-path: polygon(0 70%, 100% 70%, 100% 100%, 0 100%);
    animation: whoamiSliceC 0.85s steps(2) infinite;
}


.whoami-stage.whoami-fade .whoami-image {
    animation: dangerJitter 0.018s steps(2) infinite,
        glowPulse 1.1s ease-in-out infinite,
        imageFade 5s ease forwards,
        motionBlur 0.09s steps(2) infinite;
}

.whoami-stage.whoami-fade .whoami-stage.whoami-fade .whoami-slice.slice-1 {
    animation: whoamiSliceA 0.55s steps(2) infinite, sliceFade 5s ease forwards;
}

.whoami-stage.whoami-fade .whoami-slice.slice-2 {
    animation: whoamiSliceB 0.7s steps(2) infinite, sliceFade 5s ease forwards;
}

.whoami-stage.whoami-fade .whoami-slice.slice-3 {
    animation: whoamiSliceC 0.85s steps(2) infinite, sliceFade 5s ease forwards;
}

.whoami-stage.whoami-fade::before {
    animation: stageGlowFade 5s ease forwards;
}

.whoami-stage.whoami-fade 
@keyframes imageFade {
    0% { opacity: 1; }
    70% { opacity: 0.85; }
    100% { opacity: 0; }
}

@keyframes dangerJitter {
    0%, 100% { transform: translate(0, 0); }
    15% { transform: translate(-6px, 3px) skewX(-3deg); }
    30% { transform: translate(7px, -5px) skewX(4deg); }
    45% { transform: translate(-8px, 4px) skewX(-5deg); }
    60% { transform: translate(9px, -6px) skewX(6deg); }
    75% { transform: translate(-7px, 5px) skewX(-4deg); }
    90% { transform: translate(6px, -4px) skewX(3deg); }
}

@keyframes glowPulse {
    0% {
        filter: drop-shadow(0 0 10px rgba(255, 90, 90, 0.7))
                drop-shadow(0 0 22px rgba(255, 40, 40, 0.55));
    }
    50% {
        filter: drop-shadow(0 0 18px rgba(255, 110, 110, 0.95))
                drop-shadow(0 0 36px rgba(255, 60, 60, 0.85));
    }
    100% {
        filter: drop-shadow(0 0 12px rgba(255, 90, 90, 0.8))
                drop-shadow(0 0 26px rgba(255, 40, 40, 0.6));
    }
}

@keyframes codeFlow {
    0% { transform: translateY(-60%); opacity: 0; }
    30% { opacity: 0.75; }
    100% { transform: translateY(0%); opacity: 0.2; }
}

@keyframes stageGlow {
    0% { opacity: 0.55; transform: scale(0.98); }
    50% { opacity: 0.9; transform: scale(1.03); }
    100% { opacity: 0.6; transform: scale(1); }
}

@keyframes stageGlowFade {
    0% { opacity: 0.8; }
    70% { opacity: 0.5; }
    100% { opacity: 0; }
}

@keyframes stageGlowOut {
    0% { opacity: 0.6; }
    100% { opacity: 0; }
}

@keyframes codeRain {
    0% { transform: translateY(0%); opacity: 0.6; }
    100% { transform: translateY(-50%); opacity: 0.6; }
}

@keyframes motionBlur {
    0%, 100% { filter: blur(0px); }
    50% { filter: blur(0.8px); }
}

@keyframes codeFade {
    0% { opacity: 0.5; }
    70% { opacity: 0.35; }
    100% { opacity: 0; }
}

@keyframes sliceFade {
    0% { opacity: 0.9; }
    70% { opacity: 0.6; }
    100% { opacity: 0; }
}

@keyframes whoamiSliceA {
    0%, 45% { opacity: 0.2; transform: translate(0, 0) skewX(0deg); }
    50% { opacity: 0.95; transform: translate(-16px, -6px) skewX(-10deg); }
    58% { opacity: 0.6; transform: translate(14px, 5px) skewX(8deg); }
    65% { opacity: 0.85; transform: translate(-12px, -2px) skewX(-7deg); }
    100% { opacity: 0.25; transform: translate(0, 0) skewX(0deg); }
}

@keyframes whoamiSliceB {
    0%, 42% { opacity: 0.15; transform: translate(0, 0) skewX(0deg); }
    48% { opacity: 0.9; transform: translate(18px, 2px) skewX(12deg); }
    54% { opacity: 0.5; transform: translate(-14px, -1px) skewX(-9deg); }
    60% { opacity: 0.8; transform: translate(12px, -4px) skewX(8deg); }
    100% { opacity: 0.2; transform: translate(0, 0) skewX(0deg); }
}

@keyframes whoamiSliceC {
    0%, 50% { opacity: 0.12; transform: translate(0, 0) skewX(0deg); }
    56% { opacity: 0.9; transform: translate(-18px, 4px) skewX(-12deg); }
    62% { opacity: 0.45; transform: translate(16px, -4px) skewX(10deg); }
    70% { opacity: 0.8; transform: translate(-12px, 3px) skewX(-9deg); }
    100% { opacity: 0.18; transform: translate(0, 0) skewX(0deg); }
}


body::after {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='900' height='600' viewBox='0 0 900 600'><style>.trace{fill:none;stroke:rgba(34,211,255,0.35);stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel}.via{fill:rgba(34,211,255,0.55)}</style><path class='trace' d='M72 92 H228 V172 H396 V118 H566 V188 H746 V126 H854'/><path class='trace' d='M132 92 V262 H286 V338 H448 V262 H612 V378 H792'/><path class='trace' d='M182 474 H362 V408 H544 V474 H712 V410 H856'/><path class='trace' d='M396 118 V262'/><path class='trace' d='M566 188 V262'/><path class='trace' d='M746 126 V378'/><rect class='via' x='224' y='88' width='8' height='8'/><rect class='via' x='392' y='114' width='8' height='8'/><rect class='via' x='562' y='184' width='8' height='8'/><rect class='via' x='742' y='122' width='8' height='8'/><rect class='via' x='282' y='334' width='8' height='8'/><rect class='via' x='444' y='258' width='8' height='8'/><rect class='via' x='608' y='258' width='8' height='8'/><rect class='via' x='708' y='406' width='8' height='8'/></svg>");
    background-size: 900px 600px;
    background-repeat: repeat;
    opacity: 0.15;
    mix-blend-mode: screen;
    filter: blur(0.2px) drop-shadow(0 0 10px var(--glow-blue));
    pointer-events: none;
    z-index: 0;
}

.whoami-theme::before,
.whoami-theme::after {
    background-image: none;
}


header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%; 
    border-bottom: 1px solid rgba(34, 211, 255, 0.25);
    background: rgba(4, 7, 12, 0.85); 
    backdrop-filter: blur(10px);
    position: sticky; 
    top: 0; 
    z-index: 100;
}

header h1 {
    font-family: 'Oxanium', 'Space Grotesk', sans-serif;
    font-size: 2.1rem;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 4px;
    width: 250px;
}

.whoami-random {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
    text-shadow: 0 0 12px rgba(255, 60, 60, 0.95);
}

.whoami-theme header h1 {
    width: auto;
    max-width: none;
    font-size: 1.7rem;
}

.nav-rail {
    --nav-width: 220px;
    position: fixed;
    right: 5%;
    top: 12px;
    transform: none;
    z-index: 120;
    display: inline-flex;
    align-items: flex-end;
    flex-direction: column;
}

.nav-handle {
    writing-mode: horizontal-tb;
    transform: none;
    font-family: 'Oxanium', 'Space Grotesk', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 34px;
    background: var(--accent-green);
    border: none;
    color: #0d1407;
    box-shadow: 0 0 8px rgba(198, 255, 0, 0.35);
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
    position: relative;
    overflow: hidden;
}

.nav-handle:hover {
    color: #0d1407;
    background: var(--accent-green);
    box-shadow: 0 0 10px rgba(198, 255, 0, 0.5);
}

.nav-handle::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 10px;
    bottom: -10px;
    background: transparent;
}

.nav-handle::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 25%, rgba(255, 255, 255, 0.38) 50%, transparent 72%);
    transform: translateX(-125%);
    animation: footerLinkedSweep 2.6s ease-in-out infinite;
    pointer-events: none;
}

.nav-rail nav {
    width: var(--nav-width);
    position: absolute;
    top: 100%;
    right: 0;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease;
    background: rgba(4, 12, 18, 0.42);
    border: 1px solid rgba(34, 211, 255, 0.22);
    border-left: 6px solid var(--primary);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55), 0 0 14px rgba(34, 211, 255, 0.2);
    padding: 12px 12px 12px 0;
    border-radius: 0;
    backdrop-filter: blur(6px);
    clip-path: none;
}

.nav-handle:hover + nav,
.nav-rail nav:hover,
.nav-rail:focus-within nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.nav-rail ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
}

.nav-rail a { 
    display: block;
    position: relative;
    z-index: 1;
    text-decoration: none; 
    color: var(--text-muted); 
    font-family: 'Oxanium', 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    text-transform: uppercase; 
    letter-spacing: 1px; 
    transition: 0.3s; 
    padding: 8px 12px 8px 18px;
    margin-right: -12px;
    background: rgba(4, 12, 18, 0.42);
    border: 1px solid transparent;
    border-left: 2px solid transparent;
    clip-path: none;
    box-shadow: none;
    text-shadow: 0 0 8px rgba(34, 211, 255, 0.16);
}

.nav-rail a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 12px;
    height: 1px;
    background: var(--primary);
    transform: translateY(-50%);
    opacity: 0.7;
    pointer-events: none;
}

.nav-rail a:hover { 
    color: #001818; 
    text-shadow: none; 
    background: var(--primary);
    border-color: rgba(34, 211, 255, 0.3);
    border-left-color: var(--primary);
    box-shadow: none;
    transform: translateY(-1px);
}

.nav-rail a:hover::before {
    content: none;
}

.nav-rail button {
    display: block;
    width: 100%;
    text-align: left;
    font-family: 'Oxanium', 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 12px 8px 18px;
    margin-right: -12px;
    background: rgba(4, 12, 18, 0.42);
    border: 1px solid transparent;
    border-left: 2px solid transparent;
    color: var(--text-muted);
    cursor: pointer;
}

.nav-rail .nav-disable button {
    background: rgba(255, 75, 75, 0.9);
    border-color: rgba(255, 75, 75, 0.85);
    color: #0d1407;
    text-shadow: none;
    box-shadow: 0 0 10px rgba(255, 75, 75, 0.45);
}

.nav-rail .nav-disable button:hover {
    background: rgba(255, 75, 75, 0.95);
    color: #0d1407;
}

.nav-rail.nav-disable-only nav {
    background: linear-gradient(135deg, rgba(60, 10, 10, 0.8), rgba(30, 6, 6, 0.78));
    border-color: rgba(255, 75, 75, 0.85);
    border-left-color: rgba(255, 75, 75, 0.95);
    box-shadow: 0 0 10px rgba(255, 75, 75, 0.45);
}

@keyframes navJitter {
    0% { transform: translate(0, 0); }
    20% { transform: translate(-1px, 1px); }
    40% { transform: translate(1px, -1px); }
    60% { transform: translate(-1px, 0); }
    80% { transform: translate(1px, 1px); }
    100% { transform: translate(0, 0); }
}

.nav-rail.nav-jitter nav {
    animation: navJitter 0.18s steps(2) infinite;
}

.nav-rail.nav-jitter button {
    animation: navJitter 0.18s steps(2) infinite;
}

.nav-rail.nav-jitter .nav-handle {
    animation: navJitter 0.18s steps(2) infinite;
}

.nav-rail.nav-disable-only li:not(.nav-disable) {
    display: none;
}

main { 
    flex: 1; 
    padding: 20px 6%; 
    max-width: 1400px; 
    margin: 0 auto; 
    width: 100%; 
}

.leak-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    min-height: calc(100vh - 235px);
}

.home-page main {
    display: flex;
}

.home-page .leak-grid {
    flex: 1;
}

.leak-card {
    background: rgb(6, 16, 28);
    border: 1px solid rgba(34, 211, 255, 0.25);
    padding: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.65);
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
    display: flex;
    flex-direction: column;
    min-height: 260px;
    transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    cursor: pointer;
}

.leak-card:hover {
    border-color: rgba(120, 230, 255, 0.9);
    box-shadow:
        0 0 12px rgba(34, 211, 255, 0.45),
        0 0 28px rgba(34, 211, 255, 0.35),
        0 12px 30px rgba(0, 0, 0, 0.55);
    transform: translateY(-2px);
}

.leak-card.is-locked {
    cursor: default;
    opacity: 0.85;
}

.leak-card.is-locked:hover {
    border-color: rgba(34, 211, 255, 0.25);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
    transform: none;
}

.leak-card.is-locked .leak-link {
    pointer-events: none;
}

.leak-card.is-locked .leak-link:hover {
    box-shadow: none;
}

.leak-card.is-locked .leak-link {
    filter: none;
}

.leak-desc--hash {
    word-break: break-all;
    overflow-wrap: anywhere;
}


.leak-card--published {
    border-color: rgba(255, 80, 80, 0.75);
}

.leak-card--published:hover {
    border-color: rgba(255, 110, 110, 0.95);
    box-shadow:
        0 0 12px rgba(255, 80, 80, 0.5),
        0 0 28px rgba(255, 80, 80, 0.35),
        0 12px 30px rgba(0, 0, 0, 0.55);
}


.leak-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}

.leak-avatar {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(34, 211, 255, 0.5);
    overflow: hidden;
    flex: 0 0 42px;
    box-shadow: 0 0 10px rgba(34, 211, 255, 0.25);
    background: rgba(10, 30, 50, 0.6);
}

.leak-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.leak-title {
    font-family: 'Oxanium', 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 6px;
}

.glitch-title {
    position: relative;
    display: inline-block;
}

.glitch-title::before,
.glitch-title::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    color: var(--primary);
    background: transparent;
    overflow: hidden;
    mix-blend-mode: screen;
    pointer-events: none;
}

.glitch-title::before {
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    transform: translateX(-2px);
    opacity: 0.8;
    animation: glitch-slice 4s infinite;
}

.glitch-title::after {
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
    transform: translateX(2px);
    opacity: 0.6;
    animation: glitch-slice 4s infinite reverse;
}

.glitch-title--strong::before {
    animation: glitch-slice 1.4s infinite;
    opacity: 0.95;
    transform: translateX(-4px);
}

.glitch-title--strong::after {
    animation: glitch-slice 1.4s infinite reverse;
    opacity: 0.85;
    transform: translateX(4px);
}

.secret-title--active {
    color: #ff4b4b;
    text-shadow: 0 0 12px rgba(255, 80, 80, 0.75);
    animation: secretJitter 0.14s steps(2) infinite;
}

.secret-title--active::before,
.secret-title--active::after {
    color: #ff4b4b;
}

@keyframes secretJitter {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-2px, 1px); }
    50% { transform: translate(2px, -2px); }
    75% { transform: translate(-1px, -2px); }
}

.leak-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.leak-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.leak-desc-block {
    text-align: left;
    margin: 10px 0 12px;
}

.leak-desc {
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.leak-row {
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.leak-views {
    margin-top: auto;
}

.leak-unit {
    font-size: 0.75em;
    letter-spacing: 0.5px;
    margin-left: 2px;
}

.leak-link {
    display: inline-block;
    margin-top: 8px;
    text-decoration: none;
    font-family: 'Oxanium', 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    border: none;
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(170, 20, 30, 0.9), rgba(90, 10, 16, 0.8));
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.leak-link:hover {
    box-shadow: 0 0 12px rgba(255, 60, 60, 0.65);
}

.leak-link--scheduled {
    background: linear-gradient(135deg, rgba(12, 120, 70, 0.95), rgba(6, 50, 28, 0.9));
    border-color: rgba(53, 255, 138, 0.85);
    color: #eafff3;
}

.leak-link--scheduled:hover {
    border-color: rgba(53, 255, 138, 0.95);
    box-shadow: 0 0 12px rgba(53, 255, 138, 0.65);
}

.content-box {
    background: var(--card-bg);
    border: 1px solid rgba(34, 211, 255, 0.15);
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-left: 4px solid var(--primary);
}

.reports-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.about-card {
    padding: 28px;
}

.about-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.about-photo {
    width: 100%;
    height: 440px;
    border: 1px solid rgba(34, 211, 255, 0.25);
    background: rgba(8, 18, 30, 0.7);
    padding: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
    clip-path: polygon(22px 0, 100% 0, calc(100% - 22px) 100%, 0 100%);
    overflow: hidden;
    margin-left: -12px;
}

.about-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text p {
    margin-bottom: 14px;
}

.about-text a {
    color: #7cf7ff;
    text-decoration: none;
}

.about-text a:hover {
    text-decoration: underline;
}

.terminal-panel {
    margin-top: 26px;
    border: 1px solid rgba(34, 211, 255, 0.25);
    background: linear-gradient(180deg, rgba(6, 16, 24, 0.95), rgba(4, 10, 16, 0.9));
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.55);
    border-radius: 10px;
    overflow: hidden;
    font-family: 'JetBrains Mono', monospace;
}

.terminal-header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: linear-gradient(90deg, rgba(8, 26, 40, 0.95), rgba(12, 30, 42, 0.9));
    border-bottom: 1px solid rgba(34, 211, 255, 0.25);
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.terminal-controls {
    display: inline-flex;
    gap: 6px;
}

.terminal-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    display: inline-block;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.35);
}

.terminal-dot.dot-red {
    background: #ff5f56;
}

.terminal-dot.dot-yellow {
    background: #ffbd2e;
}

.terminal-dot.dot-green {
    background: #27c93f;
}

.terminal-title {
    text-transform: lowercase;
    color: var(--text-main);
    font-weight: 600;
    letter-spacing: 0.6px;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.terminal-status {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-green);
    justify-self: end;
    white-space: nowrap;
}

.terminal-body {
    padding: 18px 20px 22px;
    display: grid;
    gap: 16px;
    font-size: 0.95rem;
    color: #c7d3e0;
}

.terminal-line {
    color: #8fe8ff;
}

.terminal-prompt {
    color: var(--accent-green);
    margin-right: 8px;
}

.terminal-output {
    background: rgba(4, 12, 18, 0.7);
    border: 1px solid rgba(34, 211, 255, 0.15);
    border-radius: 8px;
    padding: 14px 16px;
    display: grid;
    gap: 6px;
    box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.35);
    font-size: 1.05rem;
}

.terminal-heading {
    color: var(--primary);
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.terminal-subtle {
    color: var(--text-muted);
}

.terminal-label {
    color: #7cf7ff;
}

.terminal-note {
    color: #9fb4c8;
    font-style: italic;
}

.terminal-file {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.terminal-file a {
    color: #0b1b1b;
    background: var(--accent-green);
    padding: 4px 8px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.terminal-file a:hover {
    box-shadow: 0 0 12px rgba(53, 255, 138, 0.65);
}

.terminal-list {
    list-style: none;
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.terminal-list li {
    padding-left: 14px;
    position: relative;
    color: #c7d3e0;
    line-height: 1.55;
}

.terminal-list li::before {
    content: "-";
    position: absolute;
    left: 0;
    color: var(--accent-green);
}

.terminal-sublist {
    list-style: none;
    margin: 6px 0 0 0;
    padding-left: 22px;
    display: grid;
    gap: 6px;
}

.terminal-sublist li {
    position: relative;
    padding-left: 12px;
}

.terminal-sublist li::before {
    content: "-";
    position: absolute;
    left: 0;
    color: var(--accent-green);
}

.terminal-award {
    font-weight: 700;
    color: #7cf7ff;
}

.terminal-source {
    font-weight: 700;
    color: inherit;
}

.terminal-link a {
    color: #7cf7ff;
    text-decoration: none;
}

.terminal-link a:hover {
    text-decoration: underline;
}

.terminal-output a {
    color: #7cf7ff;
    text-decoration: none;
}

.terminal-output a:hover {
    text-decoration: underline;
}

.terminal-download {
    color: #0b1b1b !important;
    background: var(--accent-green);
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-size: 0.85rem;
}

.terminal-download:hover {
    text-decoration: none;
    box-shadow: 0 0 12px rgba(53, 255, 138, 0.65);
}

.reports-hero {
    margin-bottom: 18px;
    background: transparent;
    border: none;
    box-shadow: none;
    border-left: none;
    padding: 0;
}

.page-title {
    margin-bottom: 10px;
    font-size: 2.6rem;
    position: relative;
    display: inline-block;
    color: var(--primary);
    text-shadow: 0 0 12px rgba(1, 255, 255, 0.35);
}

.page-title::before,
.page-title::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    color: var(--primary);
    background: transparent;
    overflow: hidden;
    mix-blend-mode: screen;
    pointer-events: none;
}

.page-title::before {
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
    transform: translateX(-6px);
    opacity: 0.8;
    animation: glitch-slice 3.5s infinite;
}

.page-title::after {
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
    transform: translateX(6px);
    opacity: 0.6;
    animation: glitch-slice 3.5s infinite reverse;
}

@keyframes glitch-slice {
    0%, 78% {
        transform: translateX(0);
    }
    80% {
        transform: translateX(-6px);
    }
    82% {
        transform: translateX(6px);
    }
    84% {
        transform: translateX(-3px);
    }
    86% {
        transform: translateX(3px);
    }
    88% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(0);
    }
}


.reports-feed {
    display: grid;
    gap: 18px;
}

.podcasts-page .reports-layout {
    grid-template-columns: minmax(0, 1fr) 220px;
}

.podcasts-page .reports-sidebar {
    justify-self: end;
    margin-top: 0;
}

.podcasts-page .reports-feed {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-items: stretch;
}

.podcasts-page .report-entry {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    min-height: 440px;
    overflow: hidden;
    padding-bottom: 0;
    background: #1f1f1f;
    border-color: rgba(31, 31, 31, 0.9);
    border-left: 4px solid var(--primary);
    position: relative;
}



.podcasts-page .report-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    line-height: 1.25;
    min-height: calc(1.3em * 4);
    align-items: flex-start;
    font-size: 1.2rem;
}

.podcasts-page .report-meta {
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 0;
    padding: 6px 10px;
    height: auto;
    min-height: 0;
    background: transparent;
    color: #ffffff;
    font-family: 'Oxanium', 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    z-index: 2;
    pointer-events: none;
}

.podcast-embed {
    margin: -30px -30px 0;
    flex: 1 1 auto;
    display: flex;
    background: #1f1f1f;
    min-height: 0;
    align-items: stretch;
    padding: 0;
    position: relative;
}

.podcast-embed iframe {
    width: 100%;
    border: none;
    display: block;
    margin: 0;
    height: 100%;
    border-radius: 0 !important;
}

.podcast-embed.loading::after {
    content: "Loading Podcast .";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-family: 'Oxanium', 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 1px;
    background: rgba(31, 31, 31, 0.85);
    z-index: 1;
    animation: loadingDots 1.5s infinite;
}

@keyframes loadingDots {
    0% { content: "Loading Podcast ."; }
    33% { content: "Loading Podcast .."; }
    66% { content: "Loading Podcast ..."; }
    100% { content: "Loading Podcast ."; }
}

.reports-pagination {
    display: flex;
    gap: 8px;
    justify-content: flex-start;
    margin-top: 16px;
    flex-wrap: wrap;
}

.page-btn {
    border: 1px solid rgba(34, 211, 255, 0.5);
    background: rgba(8, 18, 30, 0.6);
    color: var(--text-main);
    font-family: 'Oxanium', 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 10px;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.page-btn:hover {
    border-color: rgba(53, 255, 138, 0.95);
    box-shadow: 0 0 12px rgba(53, 255, 138, 0.5);
    color: var(--accent-green);
}

.page-btn.is-active {
    border-color: rgba(53, 255, 138, 0.95);
    box-shadow: 0 0 14px rgba(53, 255, 138, 0.65);
    color: var(--accent-green);
}

.report-entry h3 {
    font-family: 'Oxanium', 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    text-transform: none;
    letter-spacing: 1px;
    color: #001818;
    background: var(--primary);
    padding: 16px 20px 6px 20px;
    display: block;
    margin: -30px -30px 0 -30px;
}

.report-meta {
    font-size: 0.9rem;
    color: #001818;
    background: var(--primary);
    padding: 0 20px 12px 20px;
    margin: 0 -30px 14px -30px;
    border-bottom: 1px solid rgba(0, 24, 24, 0.25);
}

.report-comments {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-top: 10px;
}

.archives-box h3 {
    font-family: 'Oxanium', 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    color: var(--primary);
}

.archives-list {
    list-style: none;
    display: grid;
    gap: 10px;
    width: 100%;
}

.archives-list li {
    width: 100%;
}

.archives-list a {
    display: block;
    width: 100%;
    text-decoration: none;
    color: var(--text-muted);
    font-family: 'Oxanium', 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    transition: color 0.2s ease, text-shadow 0.2s ease;
    cursor: pointer;
    padding: 2px 0;
}

.archives-list a:hover {
    color: var(--accent-green);
    text-shadow: 0 0 12px rgba(53, 255, 138, 0.6);
}

.report-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: 'Oxanium', 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    padding: 8px 14px;
    color: #0d1407;
    border: none;
    background: var(--accent-green);
    box-shadow: inset 0 0 10px rgba(10, 20, 7, 0.25), 0 0 8px rgba(198, 255, 0, 0.35);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.report-button:hover {
    box-shadow: inset 0 0 12px rgba(10, 20, 7, 0.35), 0 0 14px rgba(198, 255, 0, 0.6);
    transform: translateY(-1px);
}

.report-button.is-disabled,
.report-button[aria-disabled="true"] {
    background: #6b6b6b;
    color: #e6e6e6;
    box-shadow: none;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.8;
}

.report-button.is-disabled:hover,
.report-button[aria-disabled="true"]:hover {
    box-shadow: none;
    transform: none;
}

.personal-blog-page .report-entry {
    position: relative;
    background: linear-gradient(180deg, rgba(16, 28, 46, 0.96), rgba(11, 20, 34, 0.96));
    border: 1px solid rgba(72, 130, 186, 0.75);
    border-left: 6px solid var(--primary);
    box-shadow: 0 0 16px rgba(72, 130, 186, 0.28);
}

.personal-blog-page .report-entry::before {
    content: ">>> python3 personal_blog.py";
    display: block;
    margin: -30px -30px 12px -30px;
    padding: 8px 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    color: var(--primary);
    background: rgba(8, 16, 28, 0.95);
    border-bottom: 1px solid rgba(72, 130, 186, 0.5);
}

.personal-blog-page .report-entry h3 {
    margin: 0 0 8px 0;
    padding: 0;
    background: transparent;
    color: #c3e5ff;
    font-size: 1.35rem;
}

.personal-blog-page .blog-output-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    letter-spacing: 0.4px;
    color: var(--primary);
    text-transform: none;
}

.personal-blog-page .report-meta {
    margin: 0 0 12px 0;
    padding: 0;
    background: transparent;
    border-bottom: none;
    color: #89b4de;
    font-family: 'JetBrains Mono', monospace;
}

.personal-blog-page .report-entry p {
    color: #d7e6f6;
}

.personal-blog-page .blog-code-preview {
    margin: 0 0 14px;
    padding: 12px 14px;
    background: rgba(7, 14, 25, 0.9);
    border: 1px solid rgba(72, 130, 186, 0.45);
    border-radius: 4px;
    overflow-x: hidden;
}

.personal-blog-page .blog-code-preview code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.92rem;
    line-height: 1.55;
    color: #d4d4d4;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.personal-blog-page .py-keyword {
    color: #c586c0;
}

.personal-blog-page .py-func {
    color: #dcdcaa;
}

.personal-blog-page .py-string {
    color: #ce9178;
}

.personal-blog-page .py-variable {
    color: #9cdcfe;
}

.personal-blog-page .report-button {
    background: var(--primary);
    color: #0d1407;
    box-shadow: inset 0 0 10px rgba(10, 20, 7, 0.25), 0 0 8px rgba(34, 211, 255, 0.45);
}

.personal-blog-page .report-button:hover {
    box-shadow: inset 0 0 12px rgba(10, 20, 7, 0.35), 0 0 14px rgba(34, 211, 255, 0.6);
}

.personal-blog-page .blog-archives-box {
    border-left: 4px solid var(--primary);
    background: linear-gradient(180deg, rgba(8, 18, 30, 0.92), rgba(5, 12, 22, 0.95));
}

.personal-blog-page .reports-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
}

.personal-blog-page .reports-sidebar {
    justify-self: end;
    margin-right: -20px;
}

.personal-blog-page .blog-archives-cmd {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.82rem;
    color: var(--primary);
    margin-bottom: 0;
    padding: 8px 10px;
    background: rgba(5, 12, 22, 0.8);
    border: 1px solid rgba(34, 211, 255, 0.2);
    border-bottom: none;
}

.personal-blog-page .blog-archives-list {
    margin: 0;
    padding: 8px 10px;
    gap: 0;
    background: rgba(5, 12, 22, 0.8);
    border: 1px solid rgba(34, 211, 255, 0.2);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.25);
}

.personal-blog-page .blog-archives-list li {
    margin: 0;
}

.personal-blog-page .blog-archives-list a {
    font-family: 'JetBrains Mono', monospace;
    text-transform: none;
    font-size: 0.84rem;
    letter-spacing: 0.2px;
    color: #b6d5ea;
    white-space: nowrap;
    padding: 5px 0;
}

.personal-blog-page .blog-archives-list a::before {
    content: "-rw-r--r-- ";
    color: #7faac7;
    margin-right: 4px;
}

.personal-blog-page .blog-archives-list a[data-filter="all"]::before {
    content: "drwxr-xr-x ";
}

.personal-blog-page .blog-archives-list a:hover,
.personal-blog-page .blog-archives-list a.is-active {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(34, 211, 255, 0.45);
}

.personal-blog-page .blog-empty {
    margin-top: 6px;
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-muted);
}

.blog-post-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 6% 48px;
}

.blog-hero {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.blog-hero-main p {
    margin-top: 10px;
    color: var(--text-muted);
}

.blog-agent {
    min-width: 210px;
    border: 1px solid rgba(34, 211, 255, 0.4);
    background: linear-gradient(135deg, rgba(8, 22, 30, 0.9), rgba(4, 12, 18, 0.92));
    padding: 12px 14px;
    box-shadow: 0 0 14px rgba(34, 211, 255, 0.2);
}

.blog-agent-label {
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    color: var(--text-muted);
    font-size: 0.76rem;
    letter-spacing: 1.2px;
}

.blog-agent-name {
    margin-top: 5px;
    font-family: 'Oxanium', 'Space Grotesk', sans-serif;
    color: var(--primary);
    font-size: 1.2rem;
    letter-spacing: 1.5px;
}

.blog-agent-status {
    margin-top: 4px;
    font-family: 'JetBrains Mono', monospace;
    color: #a6d7e5;
    font-size: 0.84rem;
}

.blog-post {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    max-width: 820px;
}

.blog-post-title {
    font-family: 'Oxanium', 'Space Grotesk', sans-serif;
    font-size: 2rem;
    color: #d9f5ff;
    line-height: 1.25;
    margin: 0 0 10px;
}

.blog-post-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 18px;
}

.blog-post p {
    color: #d1e8f0;
    line-height: 1.8;
    margin: 0 0 16px;
    max-width: 74ch;
}

.blog-post p a:not(.report-button) {
    color: #7cf7ff;
    text-decoration: none;
}

.blog-post p a:not(.report-button):hover {
    text-decoration: underline;
}

.blog-post .report-button {
    display: inline-block;
}

.contact-page .contact-main {
    max-width: none;
    min-height: calc(100vh - 170px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 24px;
    padding-bottom: 24px;
}

.contact-page .contact-card {
    width: min(1080px, 100%);
    padding: 0;
    border-radius: 0;
    overflow: hidden;
    border: 1px solid rgba(72, 130, 186, 0.75);
    border-left: 6px solid var(--primary);
    background: linear-gradient(180deg, rgba(16, 28, 46, 0.96), rgba(11, 20, 34, 0.96));
    box-shadow: 0 0 16px rgba(72, 130, 186, 0.28);
}

.contact-page .compose-shell {
    width: 100%;
    background: transparent;
}

.contact-page .compose-toolbar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(72, 130, 186, 0.5);
    background: rgba(8, 16, 28, 0.95);
}

.contact-page .compose-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.35);
    box-shadow: none;
}

.contact-page .compose-dot:nth-child(1) {
    background: #ff5f57;
}

.contact-page .compose-dot:nth-child(2) {
    background: #ffbd2e;
}

.contact-page .compose-dot:nth-child(3) {
    background: #28c840;
}

.contact-page .compose-status {
    margin-left: 10px;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 1px;
    font-size: 0.8rem;
    color: #9ed8e8;
    text-transform: uppercase;
}

.contact-page .compose-body {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    min-height: 520px;
}

.contact-page .compose-left {
    border-right: 1px solid rgba(72, 130, 186, 0.5);
    background: rgba(8, 18, 30, 0.92);
    padding: 18px 14px;
}

.contact-page .compose-new {
    width: 100%;
    border: none;
    background: var(--accent-green);
    color: #0d1407;
    font-family: 'Oxanium', 'Space Grotesk', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 12px;
    margin-bottom: 14px;
    box-shadow: 0 0 8px rgba(198, 255, 0, 0.35);
    cursor: pointer;
}

.contact-page .compose-new:hover {
    box-shadow: 0 0 10px rgba(198, 255, 0, 0.5);
}

.contact-page .compose-folder {
    margin: 0 0 6px;
    padding: 8px 10px;
    font-family: 'JetBrains Mono', monospace;
    color: #a8c2db;
    border-left: 2px solid transparent;
    font-size: 0.88rem;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-left-color 0.2s ease;
}

.contact-page .compose-folder:hover {
    color: #0d1407;
    background: var(--accent-green);
    border-left-color: var(--accent-green);
}

.contact-page .compose-folder.is-active {
    color: #0d1407;
    background: var(--accent-green);
    border-left-color: var(--accent-green);
}

.contact-page .compose-panel {
    padding: 20px 24px 24px;
    background: rgba(11, 20, 34, 0.92);
}

.contact-page .compose-title {
    margin: 0 0 16px;
    color: #d9f6ff;
    font-size: 1.16rem;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    font-family: 'JetBrains Mono', monospace;
}

.contact-page .compose-form {
    display: grid;
    gap: 10px;
}

.contact-page .compose-row {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(72, 130, 186, 0.45);
    background: rgba(7, 14, 25, 0.9);
    padding: 10px 12px;
}

.contact-page .compose-label {
    font-family: 'JetBrains Mono', monospace;
    color: #bfeeff;
    font-size: 0.86rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-page .compose-input,
.contact-page .compose-textarea {
    width: 100%;
    border: none;
    background: transparent;
    color: #ecf9ff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
    outline: none;
}

.contact-page .compose-input::placeholder,
.contact-page .compose-textarea::placeholder {
    color: #79a7bb;
}

.contact-page .compose-input[readonly] {
    color: #b6edff;
    text-shadow: 0 0 10px rgba(34, 211, 255, 0.32);
}

.contact-page .compose-row--message {
    align-items: start;
    min-height: 270px;
}

.contact-page .compose-textarea {
    resize: vertical;
    min-height: 220px;
    line-height: 1.55;
}

.contact-page .compose-actions {
    display: flex;
    justify-content: flex-end;
    padding-top: 6px;
}

.contact-page .compose-error {
    margin: 2px 0 0;
    color: #ff8f8f;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.84rem;
    letter-spacing: 0.2px;
}

.contact-page .compose-send {
    border: none;
    color: #0d1407;
    background: var(--accent-green);
    font-family: 'Oxanium', 'Space Grotesk', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 22px;
    cursor: pointer;
    box-shadow: 0 0 8px rgba(198, 255, 0, 0.35);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-page .compose-send[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.contact-page .compose-send:hover {
    box-shadow: 0 0 10px rgba(198, 255, 0, 0.5);
    transform: translateY(-1px);
}

.contact-page a.compose-send {
    text-decoration: none;
    display: inline-block;
}

@media (max-width: 900px) {
    .contact-page .compose-body {
        grid-template-columns: 1fr;
    }

    .contact-page .compose-left {
        border-right: none;
        border-bottom: 1px solid rgba(34, 211, 255, 0.16);
    }
}

@media (max-width: 640px) {
    .contact-page .contact-main {
        padding-left: 2%;
        padding-right: 2%;
    }

    .contact-page .compose-panel {
        padding: 16px;
    }

    .contact-page .compose-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .contact-page .compose-row--message {
        min-height: 0;
    }

    .contact-page .compose-textarea {
        min-height: 180px;
    }
}

.page-btn {
    border: none;
    background: #0a1c2a;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

@media (max-width: 980px) {
    .reports-layout {
        grid-template-columns: 1fr;
    }

    aside.nav-rail + main {
        padding-left: 5%;
    }

    .podcasts-page .reports-feed {
        grid-template-columns: 1fr;
        justify-items: stretch;
    }

    .podcasts-page .reports-layout {
        grid-template-columns: 1fr;
    }

    .podcasts-page .reports-sidebar {
        justify-self: stretch;
        margin-top: 12px;
    }

    .podcasts-page .report-entry {
        max-width: 100%;
        min-height: 0;
    }

    .blog-hero {
        flex-direction: column;
    }

    .blog-agent {
        width: 100%;
        max-width: 320px;
    }

    .about-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    header {
        padding: 14px 4%;
    }

    header h1 {
        width: auto;
        max-width: 100%;
        font-size: 1.45rem;
        letter-spacing: 2px;
    }

    .nav-rail {
        position: fixed;
        right: 4%;
        top: 12px;
        display: inline-flex;
        align-items: flex-end;
        margin: 0;
        z-index: 220;
    }

    .nav-handle {
        display: inline-block;
        width: auto;
        cursor: pointer;
    }

    .nav-rail nav {
        position: absolute;
        right: 0;
        top: calc(100% + 6px);
        transform: translateY(-8px);
        opacity: 0;
        pointer-events: none;
        width: min(92vw, 340px);
        max-width: min(92vw, 340px);
        padding: 10px;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .nav-rail.nav-open nav {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-rail ul {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 0;
    }

    .nav-rail a,
    .nav-rail button {
        margin-right: 0;
        padding: 6px 10px;
        font-size: 0.86rem;
        border: 1px solid rgba(34, 211, 255, 0.22);
    }

    .nav-rail a::before {
        content: none;
    }

    main {
        max-width: 100%;
        padding: 18px 4%;
    }

    .leak-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        min-height: 0;
    }

    .leak-card {
        min-height: 0;
        padding: 14px;
    }

    .content-box {
        padding: 18px;
    }

    .report-entry h3 {
        margin: -18px -18px 0 -18px;
        padding: 12px 14px 6px 14px;
        font-size: 1.1rem;
    }

    .report-meta {
        margin: 0 -18px 12px -18px;
        padding: 0 14px 10px 14px;
    }

    .podcast-embed {
        margin: -18px -18px 0;
    }

    .about-photo {
        margin-left: 0;
        height: 360px;
    }

    .personal-blog-page .reports-layout {
        grid-template-columns: 1fr;
    }

    .personal-blog-page .reports-sidebar {
        justify-self: stretch;
        margin-right: 0;
    }

    .personal-blog-page .blog-archives-cmd {
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .personal-blog-page .blog-archives-list a {
        white-space: normal;
        overflow-wrap: anywhere;
    }
}

@media (max-width: 640px) {
    .page-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    h2 {
        font-size: 1.65rem;
    }

    p {
        font-size: 1rem;
    }

    .leak-title {
        font-size: 0.95rem;
    }

    .leak-link,
    .report-button {
        font-size: 0.82rem;
    }

    footer {
        padding: 14px 10px;
        font-size: 0.38rem;
        line-height: 1.2;
        letter-spacing: 0.4px;
    }

    .whoami-congrats {
        font-size: 1.5rem;
        letter-spacing: 1.5px;
        max-width: 94vw;
    }

    .whoami-pong {
        inset: 66px 0 68px;
        gap: 8px;
    }

    .pong-box {
        width: calc(100vw - 24px);
        max-width: none;
        height: min(46vh, 320px);
        max-height: none;
        padding: 8px;
    }

    .pong-scoreboard {
        top: 8px;
        right: 10px;
        font-size: 0.75rem;
        gap: 4px;
    }

    .pong-help,
    .pong-hint {
        font-size: 0.78rem;
    }
}

@media (max-width: 900px) {
    .whoami-theme {
        overflow-x: hidden;
    }

    .whoami-page {
        width: 100%;
        max-width: 100vw;
        padding: 22px 4% 86px;
        overflow: hidden;
    }

    .whoami-stage {
        width: min(92vw, 430px);
    }

    .whoami-terminal {
        left: 10px;
        right: 10px;
        width: auto;
        max-width: none;
        top: 70px;
        bottom: 104px;
        z-index: 0;
    }

    .whoami-glitch {
        z-index: 30;
    }

    .whoami-entry {
        z-index: 40;
    }

    .whoami-theme .nav-rail {
        position: fixed;
        top: 12px;
        right: 4%;
        margin: 0;
        width: auto;
        display: inline-flex;
        align-items: flex-end;
        z-index: 220;
    }

    .whoami-theme .nav-rail nav {
        width: 220px;
        max-width: 82vw;
        right: 0;
    }

    .terminal-header {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .terminal-status {
        display: none;
    }

    .terminal-title {
        text-overflow: clip;
        font-size: 0.78rem;
        letter-spacing: 0.2px;
    }

    .podcasts-page .report-title {
        -webkit-line-clamp: unset;
        min-height: 0;
    }

    .podcasts-page .report-entry {
        display: flex;
        flex-direction: column;
    }

    .podcasts-page .podcast-embed {
        margin: -18px -18px 0;
        flex: 1 1 auto;
        min-height: 240px;
    }

    .podcasts-page .podcast-embed iframe {
        height: 100%;
        min-height: 240px;
    }

    .reports-page:not(.personal-blog-page) .report-entry {
        overflow: hidden;
    }

    .reports-page:not(.personal-blog-page) .report-entry h3 {
        margin: -18px -18px 0 -18px;
        padding: 12px 14px 6px 14px;
        background: var(--primary);
        color: #001818;
        font-size: 1.1rem;
        border-bottom: 0;
    }

    .reports-page:not(.personal-blog-page) .report-meta {
        position: static;
        margin: 0 -18px 12px -18px;
        padding: 0 14px 10px 14px;
        background: var(--primary);
        border-bottom: none;
        border-top: none;
        margin-top: -1px;
        color: #001818;
        font-size: 0.85rem;
    }
}

@media (max-width: 900px) {
    .personal-blog-page .reports-main,
    .personal-blog-page .reports-feed,
    .personal-blog-page .report-entry,
    .personal-blog-page .blog-archives-box {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .personal-blog-page .reports-sidebar {
        margin-right: 0 !important;
        width: 100%;
        min-width: 0;
        margin-top: 28px;
    }

    .personal-blog-page .reports-layout {
        display: block;
    }

    .personal-blog-page .blog-code-preview {
        overflow-x: hidden;
        max-width: 100%;
    }

    .personal-blog-page .blog-archives-list a,
    .personal-blog-page .blog-archives-cmd {
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
}

@media (max-width: 980px) {
    .personal-blog-page {
        overflow-x: hidden;
    }
}

/* Whoami hard layering override */
.whoami-theme .whoami-stage {
    position: relative;
    z-index: 50;
    isolation: isolate;
}

.whoami-theme .whoami-glitch {
    z-index: 60 !important;
}

.whoami-theme .whoami-entry {
    z-index: 70 !important;
}

.whoami-theme .whoami-terminal {
    z-index: -1 !important;
    pointer-events: none;
}

@media (max-width: 900px) {
    .whoami-theme main,
    .whoami-theme .whoami-page,
    .whoami-theme .whoami-stage {
        max-width: 100vw;
    }

    .whoami-theme .whoami-terminal-output {
        font-size: 0.86rem;
        line-height: 1.35;
    }

    .whoami-theme .whoami-terminal {
        left: 8px !important;
        right: auto !important;
        width: min(48vw, 320px) !important;
        max-width: min(48vw, 320px) !important;
        overflow: hidden;
    }

    .whoami-theme .whoami-glitch {
        width: min(96%, 460px);
    }

    .whoami-theme .whoami-entry {
        background: rgba(8, 0, 0, 0.82);
        padding: 10px 12px;
        border: 1px solid rgba(255, 80, 80, 0.38);
    }
}

html.is-mobile-landscape header h1 {
    font-size: 1.22rem;
    letter-spacing: 1.2px;
}

html.is-mobile-landscape main {
    padding-top: 12px;
    padding-bottom: 12px;
}

html.is-mobile-landscape .whoami-pong {
    inset: 58px 0 62px;
}

html.is-mobile-landscape .pong-box {
    height: min(62vh, 300px);
}

html.is-mobile-landscape .whoami-stage {
    width: min(78vw, 420px);
}

html.is-mobile-landscape .whoami-theme main {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 62px;
}

html.is-mobile-landscape .whoami-theme .whoami-page {
    width: 100%;
    min-height: calc(100dvh - 96px);
    padding: 0 2.5% 64px;
    display: grid;
    place-items: center;
    overflow: hidden;
}

html.is-mobile-landscape .whoami-theme .whoami-stage {
    margin-top: 0;
    width: min(60vw, 44dvh, 300px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

html.is-mobile-landscape .whoami-theme .whoami-entry-open .whoami-glitch {
    transform: none;
}

html.is-mobile-landscape .whoami-theme .whoami-entry {
    position: static;
    transform: none;
    margin-top: 0;
}

html.is-mobile-landscape .whoami-theme .whoami-entry label {
    font-size: 0.88rem;
}

html.is-mobile-landscape .whoami-theme .whoami-entry input {
    width: min(58vw, 220px);
    font-size: 0.9rem;
    padding: 7px 9px;
}

html.is-mobile-landscape body.whoami-theme,
html.is-mobile-landscape body.whoami-theme main,
html.is-mobile-landscape body.whoami-theme .whoami-page {
    height: 100dvh;
    max-height: 100dvh;
    overflow: hidden;
}

html.is-mobile-landscape .whoami-theme .whoami-pong {
    inset: 68px 0 52px;
    gap: 4px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

html.is-mobile-landscape .whoami-theme .whoami-pong.is-active {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-areas:
        "title title"
        "box box"
        "help hint";
    justify-content: center;
    column-gap: 10px;
    row-gap: 4px;
}

html.is-mobile-landscape .whoami-theme .whoami-congrats {
    font-size: 0.96rem;
    letter-spacing: 0.75px;
    line-height: 1.06;
    max-width: 72vw;
    grid-area: title;
    justify-self: center;
    margin-top: 2px;
}

html.is-mobile-landscape .whoami-theme .pong-box {
    width: min(72vw, 540px);
    height: min(49vh, 245px);
    max-width: 72vw;
    max-height: 245px;
    padding: 6px;
    grid-area: box;
    justify-self: center;
}

html.is-mobile-landscape .whoami-theme .pong-help,
html.is-mobile-landscape .whoami-theme .pong-hint {
    font-size: 0.68rem;
    line-height: 1.1;
    letter-spacing: 0.4px;
    margin: 0;
    max-width: 34vw;
    text-align: center;
    align-self: center;
}

html.is-mobile-landscape .whoami-theme .pong-help {
    grid-area: help;
    justify-self: end;
}

html.is-mobile-landscape .whoami-theme .pong-hint {
    grid-area: hint;
    justify-self: start;
}

html.is-mobile-landscape .whoami-theme .whoami-pong.is-active:not(.hint-visible) .pong-help {
    grid-column: 1 / span 2;
    justify-self: center;
    text-align: center;
    max-width: 72vw;
}

html.is-mobile-landscape .whoami-theme footer {
    padding: 6px 8px;
    font-size: 0.54rem;
    line-height: 1.05;
    letter-spacing: 0.2px;
}

html.is-mobile-landscape .whoami-theme footer p {
    font-size: inherit;
    line-height: inherit;
}

html.is-mobile-landscape footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 8px;
    font-size: 0.76rem;
    line-height: 1.08;
    letter-spacing: 0.2px;
}

/* Preserve normal list indentation inside editable content areas */
.report-entry ul,
.report-entry ol,
.blog-post ul,
.blog-post ol {
    margin: 0 0 14px 34px;
    padding-left: 16px;
    list-style-position: outside;
}

.report-entry ul,
.blog-post ul {
    list-style: disc;
}

.report-entry ol,
.blog-post ol {
    list-style: decimal;
}

.report-entry li,
.blog-post li {
    margin-bottom: 6px;
    padding-left: 2px;
}

html.is-mobile-landscape footer p {
    font-size: inherit;
    line-height: inherit;
    margin: 0;
}

html.is-mobile-landscape .home-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

html.is-mobile-landscape .home-footer .footer-social-link {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    width: 24px;
    height: 24px;
    margin-left: 8px;
    box-shadow: 0 0 10px rgba(1, 255, 255, 0.28), 0 0 16px rgba(34, 211, 255, 0.24);
}

html.is-mobile-landscape .home-footer p {
    max-width: 245px;
    overflow-wrap: normal;
    word-break: normal;
    text-wrap: pretty;
}

html.is-mobile-landscape .home-footer .footer-social-link svg {
    width: 11px;
    height: 11px;
}

html.is-mobile-landscape .leak-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    min-height: 0;
    align-content: start;
    align-items: start;
}

html.is-mobile-landscape .leak-card {
    height: 158px;
    min-height: 158px;
    padding: 8px 9px;
    overflow: hidden;
}

html.is-mobile-landscape .leak-header {
    gap: 6px;
    margin-bottom: 3px;
}

html.is-mobile-landscape .leak-avatar {
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
}

html.is-mobile-landscape .leak-title {
    font-size: 0.83rem;
    letter-spacing: 0.8px;
    margin-bottom: 1px;
}

html.is-mobile-landscape .leak-meta,
html.is-mobile-landscape .leak-label,
html.is-mobile-landscape .leak-desc,
html.is-mobile-landscape .leak-row {
    font-size: 0.71rem;
    line-height: 1.1;
}

html.is-mobile-landscape .leak-desc-block {
    margin: 4px 0 6px;
}

html.is-mobile-landscape .leak-label {
    display: none;
}

html.is-mobile-landscape .leak-desc {
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

html.is-mobile-landscape .leak-row:not(.leak-views) {
    display: none;
}

html.is-mobile-landscape .leak-link {
    margin-top: 2px;
    padding: 4px 7px;
    font-size: 0.65rem;
    letter-spacing: 0.55px;
    line-height: 1.05;
}

html.is-mobile-landscape .leak-link .leak-unit {
    font-size: 0.62em;
}

html.is-mobile-landscape .about-layout {
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 16px;
}

html.is-mobile-landscape .about-photo {
    height: 300px;
}

html.is-mobile-landscape .podcasts-page .reports-feed {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

html.is-mobile-landscape .podcasts-page .report-entry {
    max-width: 100%;
    min-height: 0;
    height: auto;
    overflow: hidden;
    padding: 0;
}

.site-search {
    position: fixed;
    top: 86px;
    right: 16px;
    width: 36px;
    height: 36px;
    z-index: 210;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
}

.site-search-toggle {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.site-search-icon {
    display: block;
    width: 19px;
    height: 19px;
    border: 2px solid #9dd7e8;
    border-radius: 50%;
    position: relative;
    margin: 8px;
    opacity: 0.95;
}

.site-search-icon::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 2px;
    background: #9dd7e8;
    right: -6px;
    bottom: -3px;
    transform: rotate(40deg);
    border-radius: 2px;
}

.site-search-toggle:hover .site-search-icon,
.site-search-toggle:focus-visible .site-search-icon {
    border-color: #35ff8a;
}

.site-search-toggle:hover .site-search-icon::after,
.site-search-toggle:focus-visible .site-search-icon::after {
    background: #35ff8a;
}

.site-search-toggle:focus-visible {
    outline: 1px solid rgba(53, 255, 138, 0.7);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-search-panel {
    position: absolute;
    top: 44px;
    right: 0;
    width: min(460px, 92vw);
    max-height: min(68vh, 560px);
    overflow: auto;
    padding: 14px 16px;
    border: 1px solid rgba(34, 211, 255, 0.25);
    background: rgba(8, 18, 30, 0.96);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.55);
}

.site-search-panel[hidden] { display: none !important; }

.site-search-label {
    display: block;
    margin: 0 0 8px;
    font-family: 'Oxanium', 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #9dd7e8;
}

.site-search-input {
    width: 100%;
    border: 1px solid rgba(34, 211, 255, 0.35);
    background: rgba(4, 12, 18, 0.85);
    color: #e6f8ff;
    padding: 10px 12px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
    outline: none;
}

.site-search-input:focus {
    border-color: rgba(53, 255, 138, 0.85);
    box-shadow: 0 0 0 2px rgba(53, 255, 138, 0.16);
}

.site-search-status {
    margin-top: 8px;
    color: #9fb4c8;
    font-size: 0.85rem;
}

.site-search-results {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
    display: grid;
    gap: 8px;
    max-height: 42vh;
    overflow: auto;
    padding-right: 4px;
}

.site-search-result-link {
    display: grid;
    gap: 2px;
    text-decoration: none;
    border: 1px solid rgba(34, 211, 255, 0.2);
    background: rgba(4, 10, 16, 0.75);
    padding: 10px 12px;
}

.site-search-result-link:hover {
    border-color: rgba(53, 255, 138, 0.7);
    box-shadow: 0 0 10px rgba(53, 255, 138, 0.25);
}

.site-search-result-section {
    color: #7cf7ff;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.site-search-result-title {
    color: #d9f5ff;
    font-family: 'Oxanium', 'Space Grotesk', sans-serif;
    font-size: 0.98rem;
}

.site-search-result-preview {
    color: #a9bfd2;
    font-size: 0.85rem;
    line-height: 1.4;
}

html.is-mobile-landscape .podcasts-page .report-title {
    display: block;
    overflow: hidden;
    min-height: calc((1.22em * 2) + 10px) !important;
    max-height: calc((1.22em * 2) + 10px) !important;
    margin: 0 !important;
    padding: 10px 14px 0 14px !important;
    width: 100%;
    box-sizing: border-box;
    background: var(--primary);
    color: #001818;
    font-size: 1.02rem;
    line-height: 1.22;
    border: 0 !important;
    border-bottom: 0 !important;
    margin-bottom: 0 !important;
}

html.is-mobile-landscape .podcasts-page .report-meta {
    position: static;
    right: auto;
    bottom: auto;
    margin: 0 !important;
    margin-top: 0 !important;
    padding: 0 14px 10px 14px !important;
    width: 100%;
    box-sizing: border-box;
    background: var(--primary);
    color: #001818;
    font-size: 0.82rem;
    letter-spacing: 0.4px;
    border: 0 !important;
    border-top: 0 !important;
    box-shadow: none !important;
}

html.is-mobile-landscape .podcasts-page .podcast-embed {
    margin: 0;
    flex: 1 1 auto;
    height: 152px;
    min-height: 152px;
}

html.is-mobile-landscape .podcasts-page .podcast-embed iframe {
    display: block;
    width: 100%;
    height: 152px !important;
    min-height: 152px !important;
}

h2 {
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--primary);
    letter-spacing: 2px;
}

p {
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

footer {
    text-align: center;
    padding: 20px;
    background: rgba(4, 7, 12, 0.9);
    border-top: 1px solid rgba(34, 211, 255, 0.15);
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.home-footer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-footer p {
    margin: 0;
}

.footer-social-link {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 0;
    clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
    padding: 0;
    border: none;
    background: linear-gradient(135deg, rgba(1, 255, 255, 0.86), rgba(34, 211, 255, 0.90));
    color: #001818;
    text-decoration: none;
    box-shadow: 0 0 14px rgba(1, 255, 255, 0.34), 0 0 24px rgba(34, 211, 255, 0.3);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
    overflow: hidden;
}

.footer-social-link svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

body.whoami-theme .footer-social-link--linkedin {
    background: linear-gradient(135deg, rgba(255, 36, 36, 0.92), rgba(210, 0, 0, 0.92));
    box-shadow: 0 0 14px rgba(255, 36, 36, 0.36), 0 0 24px rgba(210, 0, 0, 0.3);
}

body.whoami-theme.whoami-unlocked .footer-social-link--linkedin {
    background: linear-gradient(135deg, rgba(1, 255, 255, 0.86), rgba(34, 211, 255, 0.90));
    box-shadow: 0 0 14px rgba(1, 255, 255, 0.34), 0 0 24px rgba(34, 211, 255, 0.3);
}

.footer-social-link::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 25%, rgba(255, 255, 255, 0.38) 50%, transparent 72%);
    transform: translateX(-125%);
    animation: footerLinkedSweep 2.6s ease-in-out infinite;
    pointer-events: none;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
    color: #001818;
    box-shadow: 0 0 16px rgba(1, 255, 255, 0.48), 0 0 30px rgba(34, 211, 255, 0.4);
    outline: none;
}

@keyframes footerLinkedSweep {
    0%, 58% { transform: translateX(-125%); }
    78% { transform: translateX(125%); }
    100% { transform: translateX(125%); }
}

@media (max-width: 640px) {
    footer {
        padding: 12px 10px;
        font-size: 0.72rem;
        line-height: 1.2;
        letter-spacing: 0.35px;
    }

    footer p {
        font-size: inherit;
        line-height: inherit;
    }

    .home-footer {
        justify-content: center;
        gap: 10px;
    }

    .home-footer .footer-social-link {
        position: static;
        transform: none;
        width: 30px;
        height: 30px;
        margin-left: 8px;
    }

    .home-footer p {
        max-width: 245px;
        overflow-wrap: normal;
        word-break: normal;
        text-wrap: pretty;
    }
}


