:root {
  --coral: #E8D48B;
  --coral-rgb: 240,122,96;
  --blue-gray: #C3D2F0;
  --gold: #B8860B;
  --gold-bright: #D4A017;
  --green: #16a34a;
  --bg: #0d1117;
  --text: #f0f6fc;
  --body: #c9d1d9;
  --muted: #8b949e;
  --r: 20px;
  --t: .5s cubic-bezier(.23,1,.32,1);
  --glass-bg: rgba(22,27,34,.65);
  --glass-bg-hover: rgba(22,27,34,.78);
  --glass-border: rgba(255,255,255,.06);
  --glass-blur: blur(28px) saturate(1.4);
  --glass-shadow: 0 8px 32px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.04);
  --glass-shadow-h: 0 20px 48px rgba(232,212,139,.12), 0 8px 24px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.06);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--body);
  font-family: 'Rajdhani', sans-serif;
  background: linear-gradient(135deg, #0d1117 0%, #161b22 50%, #0d1117 100%);
}

a { color: inherit; text-decoration: none; }

::selection { background: rgba(232,212,139,.18); }

/* Background */
.cyber-bg { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.cyber-bg::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(232,212,139,.07) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 80% 90%, rgba(195,210,240,.05) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(232,212,139,.03) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 70% 30%, rgba(184,134,11,.03) 0%, transparent 60%);
  animation: bgBreath 9s ease-in-out infinite alternate;
}

@keyframes bgBreath { from { opacity: .6; } to { opacity: 1; } }

.blob {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
  opacity: .35;
  animation: blobFloat 20s ease-in-out infinite alternate;
}

.blob:nth-child(1) { width: 500px; height: 500px; background: #E8D48B; top: -10%; left: -8%; animation-duration: 22s; }
.blob:nth-child(2) { width: 400px; height: 400px; background: #B8860B; bottom: -12%; right: -6%; animation-duration: 26s; animation-delay: -4s; }
.blob:nth-child(3) { width: 300px; height: 300px; background: #C3D2F0; top: 55%; left: 60%; animation-duration: 18s; animation-delay: -8s; opacity: .2; }

@keyframes blobFloat {
  0% { transform: translate(0,0) scale(1); }
  33% { transform: translate(40px,-30px) scale(1.08); }
  66% { transform: translate(-20px,40px) scale(.92); }
  100% { transform: translate(30px,20px) scale(1.04); }
}

/* Glass panels */
.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--r);
  position: relative;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  transition: var(--t);
}
.glass::before,
.glass::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
}
.glass::before {
  background: linear-gradient(135deg, rgba(255,255,255,.7) 0%, transparent 35%, rgba(232,212,139,.015) 65%, transparent 100%);
}
.glass::after {
  background: linear-gradient(180deg, transparent 50%, rgba(195,210,240,.04) 100%);
}
.glass:hover {
  border-color: rgba(232,212,139,.3);
  background: var(--glass-bg-hover);
  box-shadow: var(--glass-shadow-h);
  transform: translateY(-8px) scale(1.008);
}

.ca { position: absolute; width: 16px; height: 16px; pointer-events: none; }
.ca-tl { top: -1px; left: -1px; border-top: 2px solid var(--coral); border-left: 2px solid var(--coral); border-radius: 3px 0 0 0; }
.ca-tr { top: -1px; right: -1px; border-top: 2px solid var(--blue-gray); border-right: 2px solid var(--blue-gray); border-radius: 0 3px 0 0; }
.ca-bl { bottom: -1px; left: -1px; border-bottom: 2px solid var(--blue-gray); border-left: 2px solid var(--blue-gray); border-radius: 0 0 0 3px; }
.ca-br { bottom: -1px; right: -1px; border-bottom: 2px solid var(--coral); border-right: 2px solid var(--coral); border-radius: 0 0 3px 0; }

.cyber-input {
  width: 100%;
  background: rgba(22,27,34,.7);
  border: 1px solid rgba(232,212,139,.18);
  border-radius: 10px;
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  font-size: .95rem;
  padding: .65rem 1rem;
  outline: none;
  transition: border-color .3s, box-shadow .3s;
  box-shadow: inset 0 2px 6px rgba(0,0,0,.2);
}
.cyber-input:focus {
  border-color: rgba(232,212,139,.5);
  box-shadow: 0 0 0 3px rgba(232,212,139,.15), inset 0 2px 6px rgba(0,0,0,.2);
  background: rgba(22,27,34,.88);
}
.cyber-input::placeholder { color: rgba(100,116,139,.65); }
textarea.cyber-input { resize: vertical; min-height: 120px; }

/* ── post-link-btn (themed to match UI) ── */
.post-link-btn {
  position: relative;
  margin: 0;
  padding: 8px 18px;
  outline: none;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-transform: uppercase;
  background: rgba(232,212,139,.08);
  border: 1px solid rgba(232,212,139,.35);
  border-radius: 10px;
  color: #E8D48B;
  font-weight: 400;
  font-family: inherit;
  z-index: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.post-link-btn span {
  color: #E8D48B;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.7px;
  z-index: 20;
}

.post-link-btn:hover {
  animation: plb-rotate 0.7s ease-in-out both;
  background: rgba(232,212,139,.15);
  border-color: rgba(232,212,139,.55);
  box-shadow: 0 4px 18px rgba(232,212,139,.2);
}

.post-link-btn:hover span {
  animation: plb-storm 0.7s ease-in-out both;
  animation-delay: 0.06s;
  color: #D4A017;
}

/* Shine sweep */
.post-link-btn::after {
  background: linear-gradient(90deg, transparent, rgba(232,212,139,.45), transparent);
  content: "";
  height: 155px;
  left: -75px;
  opacity: 0.5;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
  z-index: -10;
}

.post-link-btn:hover::after {
  left: 120%;
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}

.post-link-btn::before { display: none; }

@keyframes plb-rotate {
  0%   { transform: rotate(0deg)   translate3d(0, 0, 0); }
  25%  { transform: rotate(3deg)   translate3d(0, 0, 0); }
  50%  { transform: rotate(-3deg)  translate3d(0, 0, 0); }
  75%  { transform: rotate(1deg)   translate3d(0, 0, 0); }
  100% { transform: rotate(0deg)   translate3d(0, 0, 0); }
}

@keyframes plb-storm {
  0%   { transform: translate3d(0, 0, 0)    translateZ(0); }
  25%  { transform: translate3d(4px, 0, 0)  translateZ(0); }
  50%  { transform: translate3d(-3px, 0, 0) translateZ(0); }
  75%  { transform: translate3d(2px, 0, 0)  translateZ(0); }
  100% { transform: translate3d(0, 0, 0)    translateZ(0); }
}


.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(232,212,139,.08);
  border: 1px solid rgba(232,212,139,.35);
  color: #E8D48B;
  border-radius: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .7rem 1.4rem;
  width: 100%;
  cursor: pointer;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.btn-primary:hover:not(:disabled) {
  background: rgba(232,212,139,.15);
  box-shadow: 0 4px 20px rgba(232,212,139,.25);
  transform: translateY(-2px);
}
.btn-primary:disabled { opacity: .5; cursor: not-allowed; transform: none; }

.btn-danger {
  background: rgba(239,68,68,.06);
  border: 1px solid rgba(239,68,68,.22);
  color: #dc2626;
  border-radius: 8px;
  font-family: 'Share Tech Mono', monospace;
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  cursor: pointer;
  transition: all .28s;
  white-space: nowrap;
}
.btn-danger:hover { background: rgba(239,68,68,.12); box-shadow: 0 2px 10px rgba(239,68,68,.18); }

.btn-edit {
  background: rgba(0,150,200,.06);
  border: 1px solid rgba(0,150,200,.22);
  color: #0284c7;
  border-radius: 8px;
  font-family: 'Share Tech Mono', monospace;
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  cursor: pointer;
  transition: all .28s;
  white-space: nowrap;
}
.btn-edit:hover { background: rgba(0,150,200,.12); box-shadow: 0 2px 10px rgba(0,150,200,.18); }

.btn-cancel {
  background: rgba(100,116,139,.06);
  border: 1px solid rgba(100,116,139,.2);
  color: #8b949e;
  border-radius: 8px;
  font-family: 'Share Tech Mono', monospace;
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  cursor: pointer;
  transition: all .28s;
  width: 100%;
}
.btn-cancel:hover { background: rgba(100,116,139,.12); color: #475569; }

select.cyber-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23E8D48B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 2.2rem;
  cursor: pointer;
}
select.cyber-input option {
  background: #fff;
  color: #f0f6fc;
  padding: .4rem .8rem;
}

.img-slot {
  border: 2px dashed rgba(232,212,139,.2);
  border-radius: 12px;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all .3s;
  background: rgba(232,212,139,.02);
}
.img-slot:hover { border-color: rgba(232,212,139,.45); background: rgba(232,212,139,.05); }
.img-slot img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.slot-rm {
  position: absolute;
  top: 5px;
  right: 5px;
  background: rgba(255,255,255,.85);
  border: none;
  color: #dc2626;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: .65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background .2s;
}
.slot-rm:hover { background: rgba(239,68,68,.15); }

.progress-track {
  height: 5px;
  background: rgba(232,212,139,.08);
  border-radius: 999px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--coral), var(--blue-gray), var(--gold-bright));
  border-radius: 999px;
  transition: width .25s ease;
  box-shadow: 0 0 6px rgba(232,212,139,.35);
  width: 0%;
}

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(232,212,139,.15);
  border-top-color: #E8D48B;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  display: inline-block;
  flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

.post-item {
  border: 1px solid rgba(232,212,139,.1);
  border-radius: 12px;
  padding: .9rem 1rem;
  background: rgba(255,255,255,.45);
  transition: border-color .3s;
  display: flex;
  align-items: flex-start;
  gap: .9rem;
}
.post-item:hover { border-color: rgba(232,212,139,.25); }

.status-success,
.status-error {
  padding: .7rem 1rem;
  border-radius: 10px;
  font-family: 'Share Tech Mono', monospace;
  font-size: .72rem;
  letter-spacing: .06em;
}
.status-success {
  background: rgba(22,163,74,.05);
  border: 1px solid rgba(22,163,74,.2);
  color: #15803d;
}
.status-error {
  background: rgba(239,68,68,.05);
  border: 1px solid rgba(239,68,68,.2);
  color: #dc2626;
}

.stat-card {
  background: rgba(22,27,34,.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(232,212,139,.08);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  transition: all .35s cubic-bezier(.23,1,.32,1);
  position: relative;
  overflow: hidden;
}
.stat-card:hover {
  border-color: rgba(232,212,139,.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.stat-card .stat-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(232,212,139,.55);
  margin-bottom: 4px;
}
.stat-card .stat-value {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: #f0f6fc;
  line-height: 1.2;
}
.stat-card .stat-sub {
  font-family: 'Rajdhani', sans-serif;
  font-size: .7rem;
  color: #8b949e;
  margin-top: 2px;
}

.chart-box {
  background: rgba(22,27,34,.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(232,212,139,.08);
  border-radius: 12px;
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
}
.chart-box canvas { max-height: 220px; max-width: 100%; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .65s ease, transform .65s ease; }
.reveal.vis { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #0d1117; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--coral), var(--blue-gray), var(--gold-bright)); border-radius: 3px; }

/* Carousel */
.carousel { position: relative; height: 200px; overflow: hidden; }
.car-track { display: flex; height: 100%; transition: transform .4s cubic-bezier(.23,1,.32,1); }
.car-slide { min-width: 100%; height: 100%; position: relative; flex-shrink: 0; }
.car-slide img { width: 100%; height: 100%; object-fit: cover; }
.car-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(232,212,139,.2);
  color: #E8D48B;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  backdrop-filter: blur(8px);
}
.car-btn:hover { background: rgba(232,212,139,.15); }
.car-prev { left: 8px; }
.car-next { right: 8px; }
.car-dots { position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); display: flex; gap: 5px; z-index: 10; }
.car-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.5); cursor: pointer; transition: background .3s, transform .3s; }
.car-dot.active { background: #E8D48B; transform: scale(1.3); }

@keyframes gPulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .45; transform: scale(.8); } }

/* Post detail */
#detail-view { display: none; position: fixed; inset: 0; z-index: 999; overflow-y: auto; background: rgba(13,17,23,.92); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); }
#detail-view.open { display: block; animation: fadeIn .3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
#detail-wrap { position: relative; padding-left: 48px; }

#detail-back {
  position: absolute;
  top: 24px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(232,212,139,.2);
  background: rgba(22,27,34,.7);
  backdrop-filter: blur(16px);
  color: #E8D48B;
  cursor: pointer;
  transition: all .3s;
  font-family: 'Share Tech Mono', monospace;
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
#detail-back:hover { border-color: rgba(232,212,139,.35); transform: translateX(-2px); }
#detail-images { display: flex; gap: 1rem; flex-wrap: wrap; }
#detail-images img { flex: 1 1 300px; max-height: 400px; object-fit: cover; border-radius: 12px; }
#detail-content { white-space: pre-line; font-size: 1rem; line-height: 1.7; }

/* Shared utility classes */
.nav-panel { background: rgba(13,17,23,.85); backdrop-filter: blur(28px) saturate(1.4); -webkit-backdrop-filter: blur(28px) saturate(1.4); box-shadow: 0 2px 20px rgba(0,0,0,.25); }
.glass-button { background: rgba(22,27,34,.65); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.glass-pill { background: rgba(22,27,34,.6); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.logo-glow { filter: drop-shadow(0 0 6px rgba(184,134,11,.5)); }
.logo-glow-sm { filter: drop-shadow(0 0 5px rgba(184,134,11,.5)); }
.logo-glow-lg { filter: drop-shadow(0 0 10px rgba(184,134,11,.5)); }
.pulse-dot { display: inline-block; border-radius: 999px; background: #16a34a; box-shadow: 0 0 6px #16a34a; animation: gPulse 2s ease-in-out infinite; }
.external-link { color: #E8D48B; text-decoration: underline; word-break: break-all; }
.detail-panel { padding-top: 4rem; }

/* =====================================================
   IMAGE PROTECTION (#5) — CSS user-select & drag
   Prevents casual copy/save without blocking right-click
===================================================== */
.car-slide img,
#detail-images img,
#posts-grid img,
.post-img-wrap img,
.img-slot img {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
/* Re-enable pointer events on the wrapping interactive elements */
.car-slide,
.post-img-wrap,
#detail-images,
.img-slot { pointer-events: auto; }

/* =====================================================
   LIGHT MODE — shared across all pages
===================================================== */
body.light-mode {
  background: linear-gradient(135deg, #f0ebe3 0%, #e8e0d4 35%, #f5f0e8 65%, #ece5da 100%);
  color: #3d3229;
  --text: #3d3229;
  --body: #5c4f42;
  --muted: #8a7d70;
  --glass-bg: rgba(255,252,245,.55);
  --glass-bg-hover: rgba(255,252,245,.72);
  --glass-border: rgba(184,134,11,.12);
  --glass-shadow: 0 8px 32px rgba(120,90,40,.08), inset 0 1px 0 rgba(255,255,255,.5);
  --glass-shadow-h: 0 20px 52px rgba(120,90,40,.12), inset 0 1px 0 rgba(255,255,255,.6);
}
body.light-mode a { color: #92400e; }
body.light-mode a:hover { color: #b45309; }

/* Light backgrounds */
body.light-mode .cyber-bg::before {
  background:
    radial-gradient(ellipse 80% 60% at 15% 5%, rgba(232,212,139,.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 90%, rgba(195,180,140,.1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(232,212,139,.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 70% 30%, rgba(184,134,11,.05) 0%, transparent 60%);
  opacity: 1;
}
body.light-mode .blob { filter: blur(90px); opacity: .25; }

/* Light navbar */
body.light-mode .nav-panel { background: rgba(255,252,245,.6); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border-bottom-color: rgba(184,134,11,.1); }

/* Light glass — frosted panels */
body.light-mode .glass { background: rgba(255,252,245,.55); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-color: rgba(184,134,11,.12); box-shadow: 0 8px 32px rgba(120,90,40,.06), inset 0 1px 0 rgba(255,255,255,.5); }
body.light-mode .glass:hover { background: rgba(255,252,245,.72); box-shadow: 0 20px 52px rgba(120,90,40,.1), inset 0 1px 0 rgba(255,255,255,.6); }
body.light-mode .glass p,
body.light-mode .glass .font-mono,
body.light-mode .glass .font-rajdhani { text-shadow: none; }

/* Light text */
body.light-mode h1,
body.light-mode h2,
body.light-mode h3 { color: #3d3229; }
body.light-mode p { color: #5c4f42; }
body.light-mode .font-mono { color: #8a7d70; }

/* Light scrollbar */
body.light-mode ::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #fbbf24, #d97706, #b45309); }

/* Light post-link-btn */
body.light-mode .post-link-btn { background: rgba(184,134,11,.08); border-color: rgba(184,134,11,.3); color: #92400e; }
body.light-mode .post-link-btn span { color: #92400e; }
body.light-mode .post-link-btn:hover { background: rgba(184,134,11,.15); border-color: rgba(184,134,11,.5); box-shadow: 0 4px 18px rgba(184,134,11,.15); }
body.light-mode .post-link-btn:hover span { color: #78350f; }
body.light-mode .post-link-btn::after { background: linear-gradient(90deg, transparent, rgba(184,134,11,.3), transparent); }

/* Light detail view */
body.light-mode #detail-view { background: rgba(240,235,227,.92); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); }
body.light-mode #detail-back { background: rgba(255,252,245,.6); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-color: rgba(184,134,11,.15); color: #92400e; }
body.light-mode #detail-content { color: #5c4f42; }
body.light-mode #detail-content a { color: #b45309; }

/* Light footer */
body.light-mode footer { background: rgba(255,252,245,.6); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-top-color: rgba(184,134,11,.1); }
body.light-mode .ft-nav a { color: #8a7d70; }
body.light-mode .ft-nav a:hover { color: #b45309; }

/* Light external links */
body.light-mode .external-link { color: #b45309; }
body.light-mode .external-link:hover { color: #92400e; }
