/* ========= FONTS ========= */
@font-face {
  font-family: "Vulf Mono";
  src:
    url("../fonts/VulfMono-Regular.woff2") format("woff2"),
    url("../fonts/VulfMono-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Vulf Sans";
  src:
    url("../fonts/VulfSans-Regular.woff2") format("woff2"),
    url("../fonts/VulfSans-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ========= TOKENS ========= */
:root {
  --neon-cyan: #00ff9f;
  --neon-pink: #ff41af;
  --deep-purple: #0d0517;
  --soft-purple: #1a0b2e;
  --panel-band-1: #2d1b4d;
  --panel-band-2: #251540;
  --panel-band-3: #1b0b2f;
  --panel-band-4: #120422;
  --crt-rotate-speed: 300s;
  --font-mono: "Vulf Mono", ui-monospace, monospace;
  --font-sans: "Vulf Sans", system-ui, sans-serif;
  /* Windows-XP–style “Luna” bevels (same colors — glossy top, shadow bottom) */
  --xp-shine: rgba(255, 255, 255, 0.2);
  --xp-shine-soft: rgba(255, 255, 255, 0.08);
  --xp-shadow-in: rgba(0, 0, 0, 0.55);
  --xp-shadow-soft: rgba(0, 0, 0, 0.35);
  --xp-title-bar: linear-gradient(
    180deg,
    rgba(55, 38, 88, 0.92) 0%,
    rgba(35, 21, 64, 0.88) 45%,
    rgba(18, 4, 34, 0.94) 100%
  );
  --xp-taskbar: linear-gradient(
    180deg,
    rgba(40, 24, 62, 0.9) 0%,
    rgba(12, 6, 24, 0.92) 100%
  );
  --xp-nav-rail: linear-gradient(
    180deg,
    rgba(32, 18, 52, 0.75) 0%,
    rgba(0, 0, 0, 0.58) 100%
  );
}

/* Rotating background (original site) — behind the main window */
body.terminal-site::before {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  width: 320vw;
  height: 320vh;
  background-image: url("../images/background.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(-50%, -50%);
  z-index: -2;
  pointer-events: none;
  animation: siteRotateBg var(--crt-rotate-speed) linear infinite;
  filter: blur(5px);
  box-shadow: inset 0 0 180px 120px rgba(0, 0, 0, 0.82);
}

@keyframes siteRotateBg {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.terminal-site::before {
    animation: none;
  }
}

/* Legacy token bridge — photo-album.css */
body.terminal-site {
  --color-bg-panel: rgba(26, 11, 46, 0.88);
  --color-text: #eedcff;
  --color-accent: rgba(0, 255, 159, 0.5);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

body.terminal-site {
  margin: 0;
  min-height: 100vh;
  background: transparent;
  color: #eedcff;
  font-family: var(--font-sans);
  overflow-x: hidden;
  overflow-y: auto;
  /* Prose uses normal sentence capitalization from HTML. Nav stays lowercase (see nav.nav-boxes a). */
}

/* resume/cv page (class resume-prose): keep source capitalization */
body.terminal-site .resume-prose,
body.terminal-site .resume-prose * {
  text-transform: none !important;
}

/* resume/cv — contact + photo as one panel (matches site “window” language) */
body.terminal-site .resume-prose .resume-header-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(124px, 176px);
  gap: 1rem 1.35rem;
  align-items: center;
  margin: 0 0 1.35rem;
  padding: 1.1rem 1.2rem 1.15rem 1.35rem;
  background: linear-gradient(
    145deg,
    rgba(0, 0, 0, 0.42) 0%,
    rgba(21, 5, 41, 0.38) 45%,
    rgba(0, 0, 0, 0.32) 100%
  );
  border: 1px solid rgba(0, 255, 159, 0.22);
  border-radius: 10px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 8px 28px rgba(0, 0, 0, 0.35),
    0 0 22px rgba(0, 255, 159, 0.08);
  border-left: 3px solid rgba(0, 255, 159, 0.55);
  position: relative;
  overflow: hidden;
}

body.terminal-site .resume-prose .resume-header-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  border-radius: inherit;
}

body.terminal-site .resume-prose .resume-header-text {
  position: relative;
  z-index: 1;
  min-width: 0;
}

body.terminal-site .resume-prose .resume-header-text h2 {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.35;
}

body.terminal-site .resume-prose .resume-photo-wrap {
  position: relative;
  z-index: 1;
  margin: 0;
  justify-self: end;
  width: 100%;
  max-width: 176px;
}

body.terminal-site .resume-prose .resume-photo-wrap::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0, 255, 159, 0.35), rgba(255, 65, 175, 0.22));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.85;
}

body.terminal-site .resume-prose .resume-photo-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 11px;
  object-fit: cover;
  object-position: 45% 28%;
  aspect-ratio: 3 / 4;
  border: none !important;
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

@media (max-width: 560px) {
  body.terminal-site .resume-prose .resume-header-card {
    grid-template-columns: 1fr;
    padding: 0;
    align-items: stretch;
    gap: 0;
    border-left-width: 0;
    border-top: 3px solid rgba(0, 255, 159, 0.55);
  }

  body.terminal-site .resume-prose .resume-photo-wrap {
    max-width: none;
    justify-self: stretch;
    order: -1;
  }

  body.terminal-site .resume-prose .resume-photo-wrap img {
    aspect-ratio: 21 / 9;
    object-position: 50% 35%;
    border-radius: 10px 10px 0 0;
  }

  body.terminal-site .resume-prose .resume-photo-wrap::after {
    border-radius: 10px 10px 0 0;
    inset: 0;
    opacity: 0.5;
  }

  body.terminal-site .resume-prose .resume-header-text {
    padding: 1rem 1.15rem 1.1rem;
  }
}

/* Work titles, song titles, composition names (often in italics) */
body.terminal-site em,
body.terminal-site i,
body.terminal-site cite {
  text-transform: none;
}

/* Friend cards: display names as written */
body.terminal-site .friend-name {
  text-transform: none;
}

/* Location line in footer */
body.terminal-site .footer-line {
  text-transform: none;
}

/* Explicit opt-out for proper nouns, brands, or display titles */
body.terminal-site .case-preserve {
  text-transform: none !important;
}

/* In-page links: keep author-supplied casing (e.g. person names) */
body.terminal-site .scroll-window a {
  text-transform: none;
}

/* Nav labels: stylistic lowercase */
body.terminal-site nav.nav-boxes a {
  text-transform: lowercase;
}

/* Long-form pages with many names, brands, and titles: keep HTML casing */
body.terminal-site .mixed-case-prose,
body.terminal-site .mixed-case-prose * {
  text-transform: none !important;
}

/* CRT scanline / RGB tint overlay over viewport */
.crt-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%),
    linear-gradient(90deg, rgba(255, 0, 0, 0.02), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.02));
  background-size: 100% 3px, 3px 100%;
  pointer-events: none;
  z-index: 50;
}

/* Outer window: banded fill + Luna-style glossy frame (rounded top, softer bottom) */
.site-main-window {
  position: relative;
  z-index: 20;
  width: 100%;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  min-height: min(90vh, 920px);
  max-height: min(calc(100vh - 2rem), 1200px);
  overflow: hidden;
  border-radius: 14px 14px 10px 10px;
  background: linear-gradient(
    180deg,
    var(--panel-band-1) 0%,
    var(--panel-band-1) 25%,
    var(--panel-band-2) 25%,
    var(--panel-band-2) 50%,
    var(--panel-band-3) 50%,
    var(--panel-band-3) 75%,
    var(--panel-band-4) 75%,
    var(--panel-band-4) 100%
  );
  border: 2px solid rgba(0, 255, 159, 0.45);
  border-top-color: rgba(0, 255, 159, 0.65);
  border-left-color: rgba(0, 255, 159, 0.55);
  border-right-color: rgba(0, 80, 55, 0.55);
  border-bottom-color: rgba(0, 40, 28, 0.65);
  box-shadow:
    0 10px 28px var(--xp-shadow-soft),
    0 2px 0 var(--xp-shine-soft),
    0 0 18px rgba(0, 255, 159, 0.35),
    0 0 32px rgba(0, 255, 159, 0.18),
    inset 0 1px 0 var(--xp-shine),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35),
    inset 0 0 28px rgba(255, 65, 175, 0.05);
}

.lofi-static {
  position: relative;
}

.lofi-static::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  z-index: 1;
  border-radius: inherit;
}

.site-shell-header {
  position: relative;
  z-index: 22;
  background: var(--xp-title-bar);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.45);
  box-shadow:
    inset 0 1px 0 var(--xp-shine),
    inset 0 -1px 0 rgba(0, 0, 0, 0.4),
    0 4px 12px rgba(0, 0, 0, 0.25);
}

.site-shell-header .site-header-tagline {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(0, 255, 159, 0.65);
  letter-spacing: 0.12em;
  text-transform: none;
  font-size: clamp(9px, 2vw, 11px);
}

/* Upper-right wordmark (PNG → palette pink via mask; static outer glow + sweep through glyphs) */
.site-header-logo-wrap {
  flex-shrink: 0;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  filter:
    drop-shadow(0 0 4px rgba(255, 65, 175, 0.5))
    drop-shadow(0 0 14px rgba(255, 65, 175, 0.28));
}

.site-header-logo {
  position: relative;
  display: block;
  /* Cropped transparent PNG (white glyphs); pink via background + alpha mask */
  width: min(58vw, 280px);
  aspect-ratio: 319 / 86;
  height: auto;
  max-height: 44px;
  background-color: var(--neon-pink);
  -webkit-mask-image: url("../images/logo-jarrett-name.png");
  mask-image: url("../images/logo-jarrett-name.png");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-mode: alpha;
  mask-mode: alpha;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center right;
  mask-position: center right;
}

/* Bright “wave” travels across the letterforms (same mask as base) */
.site-header-logo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    100deg,
    transparent 0%,
    transparent 40%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 240, 252, 0.85) 52%,
    rgba(255, 255, 255, 0.45) 54%,
    transparent 62%,
    transparent 100%
  );
  background-size: 240% 100%;
  background-position: 100% 50%;
  -webkit-mask-image: url("../images/logo-jarrett-name.png");
  mask-image: url("../images/logo-jarrett-name.png");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center right;
  mask-position: center right;
  animation: site-header-logo-glow-sweep 2.75s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .site-header-logo::after {
    animation: none;
    opacity: 0;
  }
}

@keyframes site-header-logo-glow-sweep {
  0% {
    background-position: 120% 50%;
  }
  100% {
    background-position: -120% 50%;
  }
}

.site-shell-footer {
  position: relative;
  z-index: 22;
  background: var(--xp-taskbar);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid var(--xp-shine-soft);
  box-shadow:
    inset 0 1px 0 var(--xp-shine),
    inset 0 -1px 0 rgba(0, 0, 0, 0.45),
    0 -3px 14px rgba(0, 0, 0, 0.2);
}

.site-shell-footer .footer-line {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: rgba(0, 255, 159, 0.55);
}

.site-shell-footer .footer-url {
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(0, 255, 159, 0.45);
}

/* Inner content panels */
.neon-inner-panel {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.52) 100%);
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 159, 0.38);
  border-top-color: rgba(0, 255, 159, 0.45);
  border-left-color: rgba(0, 255, 159, 0.4);
  border-right-color: rgba(0, 60, 42, 0.45);
  border-bottom-color: rgba(0, 30, 22, 0.55);
  box-shadow:
    0 4px 14px var(--xp-shadow-soft),
    0 0 14px rgba(0, 255, 159, 0.15),
    inset 0 1px 0 var(--xp-shine-soft),
    inset 0 -1px 0 var(--xp-shadow-in),
    inset 0 0 18px rgba(0, 0, 0, 0.2);
}

.neon-inner-panel::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  padding: 3px;
  background: linear-gradient(135deg, rgba(0, 255, 159, 0.25), rgba(255, 65, 175, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  filter: blur(3px);
  z-index: -1;
}

.panel-heading {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--neon-cyan);
  text-shadow: 0 0 8px rgba(0, 255, 159, 0.55);
  text-transform: none;
  letter-spacing: 0.06em;
}

.panel-heading-accent {
  color: var(--neon-pink);
  text-shadow: 0 0 8px rgba(255, 65, 175, 0.45);
}

.panel-kicker {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(0, 255, 159, 0.65);
  text-transform: none;
  letter-spacing: 0.08em;
}

.body-copy {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 250, 255, 0.88);
}

.scanline {
  display: none;
}

.hud-bracket-tl,
.hud-bracket-tr,
.hud-bracket-bl,
.hud-bracket-br {
  position: absolute;
  width: 14px;
  height: 14px;
  z-index: 3;
  filter: drop-shadow(0 0 4px var(--neon-cyan));
}
.hud-bracket-tl {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--neon-cyan);
  border-left: 2px solid var(--neon-cyan);
}
.hud-bracket-tr {
  top: -1px;
  right: -1px;
  border-top: 2px solid var(--neon-cyan);
  border-right: 2px solid var(--neon-cyan);
}
.hud-bracket-bl {
  bottom: -1px;
  left: -1px;
  border-bottom: 2px solid var(--neon-cyan);
  border-left: 2px solid var(--neon-cyan);
}
.hud-bracket-br {
  bottom: -1px;
  right: -1px;
  border-bottom: 2px solid var(--neon-cyan);
  border-right: 2px solid var(--neon-cyan);
}

.custom-scrollbar::-webkit-scrollbar {
  width: 5px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  background: var(--deep-purple);
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background: var(--neon-cyan);
  box-shadow: 0 0 10px var(--neon-cyan);
}

/* Injected nav — glossy “Start bar” strip + pill buttons */
nav.nav-boxes {
  position: relative;
  z-index: 22;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.65rem;
  align-items: center;
  width: 100%;
  padding: 0.55rem 0.85rem;
  background: var(--xp-nav-rail);
  border-bottom: 1px solid rgba(0, 0, 0, 0.45);
  box-sizing: border-box;
  box-shadow:
    inset 0 1px 0 var(--xp-shine-soft),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35);
}

nav.nav-boxes a {
  font-family: var(--font-mono);
  font-size: clamp(9px, 1.8vw, 11px);
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 255, 159, 0.32);
  border-top-color: rgba(0, 255, 159, 0.45);
  border-left-color: rgba(0, 255, 159, 0.38);
  border-right-color: rgba(0, 50, 36, 0.5);
  border-bottom-color: rgba(0, 25, 18, 0.55);
  color: var(--neon-cyan);
  text-decoration: none;
  transition: filter 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
  background: linear-gradient(180deg, rgba(0, 255, 159, 0.14) 0%, rgba(0, 0, 0, 0.55) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(0, 0, 0, 0.4),
    0 2px 4px rgba(0, 0, 0, 0.35);
}

nav.nav-boxes a:hover {
  filter: brightness(1.12);
  border-color: rgba(0, 255, 159, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35),
    0 0 14px rgba(0, 255, 159, 0.3);
}

nav.nav-boxes a[aria-current="page"] {
  background: linear-gradient(180deg, #4affc4 0%, var(--neon-cyan) 42%, #00b87a 100%);
  color: var(--deep-purple);
  border-color: rgba(0, 200, 140, 0.85);
  border-top-color: rgba(200, 255, 235, 0.55);
  border-bottom-color: rgba(0, 90, 60, 0.85);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35),
    0 0 18px rgba(0, 255, 159, 0.45);
}

.nav-loading {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(0, 255, 159, 0.5);
  padding: 0.35rem 0.65rem;
}

/* Main content panel — recessed “client” area */
body.terminal-site .scroll-window {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 1rem 1.15rem;
  overflow: visible;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.55) 100%);
  border: 1px solid rgba(0, 255, 159, 0.32);
  border-top-color: rgba(0, 0, 0, 0.55);
  border-left-color: rgba(0, 0, 0, 0.45);
  border-right-color: rgba(0, 255, 159, 0.18);
  border-bottom-color: rgba(0, 255, 159, 0.12);
  border-radius: 10px;
  box-shadow:
    0 1px 0 var(--xp-shine-soft),
    inset 0 2px 8px var(--xp-shadow-in),
    inset 0 0 0 1px rgba(0, 0, 0, 0.35),
    0 0 14px rgba(0, 255, 159, 0.12);
  color: #eedcff;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.55;
  text-align: left;
  box-sizing: border-box;
}

body.terminal-site .scroll-window h1,
body.terminal-site .scroll-window h2 {
  font-family: var(--font-mono);
  font-size: clamp(1rem, 1.2vw + 0.85rem, 1.3rem);
  color: var(--neon-cyan);
  text-shadow: 0 0 8px rgba(0, 255, 159, 0.35);
  margin: 1rem 0 0.5rem;
}

body.terminal-site .scroll-window h2:first-child {
  margin-top: 0;
}

body.terminal-site .scroll-window p {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  margin: 0.65rem 0;
  color: rgba(255, 250, 255, 0.88);
}

body.terminal-site .scroll-window hr {
  border: none;
  border-top: 1px solid rgba(0, 255, 159, 0.28);
  margin: 1.5rem 0;
}

body.terminal-site .scroll-window a {
  color: #8affe0;
  text-decoration: underline;
  text-underline-offset: 3px;
}
body.terminal-site .scroll-window a:hover {
  color: #fff;
}

body.terminal-site .scroll-window img {
  border: 1px solid rgba(0, 255, 159, 0.38) !important;
  border-top-color: rgba(0, 255, 159, 0.45) !important;
  border-bottom-color: rgba(0, 40, 28, 0.65) !important;
  border-radius: 10px !important;
  box-shadow:
    0 3px 10px var(--xp-shadow-soft),
    inset 0 1px 0 var(--xp-shine-soft) !important;
}

body.terminal-site .job-title {
  font-family: var(--font-mono);
  font-size: 0.92rem;
  color: rgba(255, 250, 255, 0.92);
}

body.terminal-site .center-text {
  text-align: center;
}

/* Calendar / forms */
body.terminal-site .calendar-submit-widget {
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 159, 0.35) !important;
  border-top-color: rgba(0, 255, 159, 0.28) !important;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.5) 100%) !important;
  box-shadow:
    inset 0 1px 0 var(--xp-shine-soft),
    inset 0 -1px 0 rgba(0, 0, 0, 0.4),
    0 4px 12px var(--xp-shadow-soft) !important;
}

body.terminal-site .calendar-submit-widget h3,
body.terminal-site .calendar-widget h3 {
  font-family: var(--font-mono);
}

body.terminal-site .calendar-submit-widget label {
  font-family: var(--font-mono);
}

body.terminal-site .calendar-submit-widget input,
body.terminal-site .calendar-submit-widget textarea {
  font-family: var(--font-sans);
  border-radius: 9px !important;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.45) 100%) !important;
  border: 1px solid rgba(0, 255, 159, 0.35) !important;
  border-top-color: rgba(0, 0, 0, 0.55) !important;
  border-left-color: rgba(0, 0, 0, 0.45) !important;
  border-right-color: rgba(0, 255, 159, 0.12) !important;
  border-bottom-color: rgba(0, 255, 159, 0.1) !important;
  box-shadow:
    inset 0 2px 6px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

body.terminal-site button.calendar-submit__btn {
  border-radius: 12px !important;
  border: 1px solid rgba(0, 255, 159, 0.45) !important;
  border-top-color: rgba(180, 255, 225, 0.35) !important;
  border-bottom-color: rgba(0, 80, 55, 0.75) !important;
  background: linear-gradient(180deg, rgba(0, 255, 159, 0.28) 0%, rgba(0, 120, 85, 0.45) 55%, rgba(0, 0, 0, 0.45) 100%) !important;
  color: var(--neon-cyan) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35),
    0 3px 6px rgba(0, 0, 0, 0.4) !important;
  transition: filter 0.15s ease, box-shadow 0.15s ease !important;
}

body.terminal-site button.calendar-submit__btn:hover {
  filter: brightness(1.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3),
    0 0 16px rgba(0, 255, 159, 0.35) !important;
}

/* Homepage social chips (Tailwind border-primary-container) */
body.terminal-site .neon-inner-panel .flex.flex-wrap.gap-2 a[href^="https://"] {
  border-radius: 14px !important;
  border: 1px solid rgba(0, 255, 159, 0.38) !important;
  border-top-color: rgba(0, 255, 159, 0.48) !important;
  border-bottom-color: rgba(0, 40, 30, 0.65) !important;
  background: linear-gradient(180deg, rgba(0, 255, 159, 0.12) 0%, rgba(0, 0, 0, 0.55) 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.4),
    0 2px 5px rgba(0, 0, 0, 0.35) !important;
  transition: filter 0.15s ease, box-shadow 0.15s ease !important;
}

body.terminal-site .neon-inner-panel .flex.flex-wrap.gap-2 a[href^="https://"]:hover {
  filter: brightness(1.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 0 14px rgba(0, 255, 159, 0.28) !important;
}

/* Embeds — chunky raised frames */
body.terminal-site .spotify-embed {
  display: block;
  margin: 0.75rem auto;
  width: 100%;
  max-width: 100%;
  height: 200px;
  border: 1px solid rgba(0, 255, 159, 0.38);
  border-top-color: rgba(0, 255, 159, 0.45);
  border-bottom-color: rgba(0, 45, 32, 0.65);
  border-radius: 10px;
  box-shadow:
    0 4px 12px var(--xp-shadow-soft),
    inset 0 1px 0 var(--xp-shine-soft),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35);
}

body.terminal-site .youtube-embed {
  display: block;
  margin: 0.75rem auto;
  width: min(500px, 100%);
  aspect-ratio: 16 / 9;
  height: auto;
  border: 1px solid rgba(0, 255, 159, 0.38);
  border-top-color: rgba(0, 255, 159, 0.45);
  border-bottom-color: rgba(0, 45, 32, 0.65);
  border-radius: 10px;
  box-shadow:
    0 4px 12px var(--xp-shadow-soft),
    inset 0 1px 0 var(--xp-shine-soft),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35);
}

/* Homepage slideshow */
.terminal-site .slideshow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(0, 255, 159, 0.45);
  border-top-color: rgba(0, 255, 159, 0.55);
  border-bottom-color: rgba(0, 50, 36, 0.7);
  border-radius: 12px;
  box-shadow:
    0 6px 16px var(--xp-shadow-soft),
    inset 0 1px 0 var(--xp-shine),
    inset 0 -1px 0 rgba(0, 0, 0, 0.45),
    0 0 14px rgba(0, 255, 159, 0.25);
  background: linear-gradient(180deg, rgba(18, 4, 34, 0.95) 0%, rgba(0, 0, 0, 0.65) 100%);
}

.terminal-site .slideshow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.terminal-site .slideshow img.visible {
  opacity: 1;
}

.terminal-site .calendar-embed-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.58) 100%);
  border: 1px solid rgba(0, 255, 159, 0.38);
  border-top-color: rgba(0, 255, 159, 0.42);
  border-bottom-color: rgba(0, 40, 28, 0.65);
  border-radius: 12px;
  box-shadow:
    0 4px 14px var(--xp-shadow-soft),
    inset 0 1px 0 var(--xp-shine-soft),
    inset 0 -1px 0 rgba(0, 0, 0, 0.4);
}

.terminal-site .calendar-embed-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.45) 100%);
  opacity: 0.5;
}

.terminal-site .calendar-embed,
.terminal-site .calendar-widget iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: clamp(240px, 30vw, 340px);
  min-height: 220px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 6px;
  vertical-align: top;
  filter: invert(1) hue-rotate(250deg) contrast(1.12) saturate(1.25) brightness(0.92);
}

@media (max-width: 768px) {
  .terminal-site .calendar-embed,
  .terminal-site .calendar-widget iframe {
    height: clamp(220px, 45vw, 300px);
  }
}

/* Projects */
body.terminal-site .projects-gallery {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 0.5rem 0 1rem;
}

body.terminal-site .projects-gallery__hint,
body.terminal-site .projects-gallery__empty,
body.terminal-site .projects-gallery__error {
  font-family: var(--font-sans);
  color: rgba(0, 255, 159, 0.9);
  line-height: 1.5;
}

body.terminal-site .projects-gallery__hint code {
  font-family: var(--font-mono);
  background: rgba(0, 255, 159, 0.12);
  padding: 0.1rem 0.35rem;
  border: 1px solid rgba(0, 255, 159, 0.25);
  border-radius: 4px;
}

body.terminal-site .project-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* —— Poster carousel (base layout lives here so artwork page does not need style.css) —— */
body.terminal-site .poster-gallery {
  position: relative;
  width: 100%;
  margin: 0;
}

body.terminal-site .poster-carousel {
  position: relative;
  width: 100%;
  padding: 0;
  box-sizing: border-box;
}

body.terminal-site .poster-carousel__track {
  display: flex;
  gap: var(--poster-card-gap, 20px);
  scroll-behavior: smooth;
}

body.terminal-site .poster-carousel--manual {
  --poster-cards-visible: 3;
  --poster-card-gap: 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

body.terminal-site .poster-carousel--manual .poster-carousel__viewport {
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  overflow-y: hidden;
  padding-block: 10px;
  -webkit-overflow-scrolling: touch;
}

body.terminal-site .poster-carousel--manual .poster-carousel__track {
  padding-inline: clamp(8px, 2vw, 28px);
  gap: var(--poster-card-gap);
}

body.terminal-site .poster-carousel--manual .poster-card {
  width: calc((100% - (var(--poster-cards-visible) - 1) * var(--poster-card-gap)) / var(--poster-cards-visible));
  scroll-snap-align: center;
}

body.terminal-site .poster-carousel__dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

body.terminal-site .poster-carousel__control span {
  display: inline-block;
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  body.terminal-site .poster-carousel--manual {
    --poster-cards-visible: 2;
  }
}

@media (max-width: 640px) {
  body.terminal-site .poster-carousel--manual {
    --poster-cards-visible: 1;
  }
  body.terminal-site .poster-carousel--manual .poster-card {
    width: min(200px, 88%);
  }
  body.terminal-site .poster-carousel__control {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.terminal-site .poster-carousel__track {
    scroll-behavior: auto;
  }
}

body.terminal-site .poster-carousel__viewport {
  border: 1px solid rgba(0, 255, 159, 0.32);
  border-top-color: rgba(0, 0, 0, 0.45);
  border-left-color: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.65) 100%);
  box-shadow:
    inset 0 2px 8px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 2px 8px rgba(0, 0, 0, 0.25);
}

body.terminal-site .poster-carousel__control {
  border: 1px solid rgba(0, 255, 159, 0.4);
  border-top-color: rgba(0, 255, 159, 0.55);
  border-bottom-color: rgba(0, 45, 32, 0.75);
  border-radius: 9999px;
  background: linear-gradient(180deg, rgba(0, 255, 159, 0.18) 0%, rgba(0, 0, 0, 0.65) 100%);
  color: var(--neon-cyan);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.45),
    0 3px 6px rgba(0, 0, 0, 0.4);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1;
  width: clamp(40px, 4vw, 52px);
  height: clamp(40px, 4vw, 52px);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

body.terminal-site .poster-carousel__control:hover,
body.terminal-site .poster-carousel__control:focus-visible {
  transform: scale(1.05);
  filter: brightness(1.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35),
    0 0 18px rgba(0, 255, 159, 0.35);
}

body.terminal-site .poster-card {
  position: relative;
  flex: 0 0 auto;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 159, 0.38);
  border-top-color: rgba(0, 255, 159, 0.45);
  border-bottom-color: rgba(0, 35, 25, 0.65);
  box-shadow:
    0 4px 12px var(--xp-shadow-soft),
    inset 0 1px 0 var(--xp-shine-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  min-width: 180px;
  max-width: 320px;
}

body.terminal-site .poster-card picture,
body.terminal-site .poster-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

body.terminal-site .poster-card:hover,
body.terminal-site .poster-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 159, 0.65);
  filter: brightness(1.04);
  box-shadow:
    0 8px 22px rgba(0, 255, 159, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Artwork page: taller poster tiles + Stitch-style corners */
body.terminal-site .artwork-page .poster-card {
  border-radius: 4px 4px 14px 4px;
  border-width: 1px;
  border-color: rgba(0, 255, 159, 0.28);
  min-width: 0;
  max-width: none;
  aspect-ratio: 2 / 3;
}

body.terminal-site .artwork-page .poster-card picture,
body.terminal-site .artwork-page .poster-card img {
  width: 100%;
  height: 100%;
  opacity: 0.82;
  transition: opacity 0.35s ease;
}

body.terminal-site .artwork-page .poster-card:hover,
body.terminal-site .artwork-page .poster-card:focus-within {
  border-color: rgba(0, 255, 159, 0.65);
  box-shadow: 0 0 22px rgba(0, 255, 159, 0.28);
}

body.terminal-site .artwork-page .poster-card:hover img,
body.terminal-site .artwork-page .poster-card:focus-within img {
  opacity: 1;
}

/* Artwork page — Stitch-inspired panels (design language: Vulf, neon, plain copy) */
body.terminal-site .artwork-page {
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 4vw, 2.5rem);
}

body.terminal-site .artwork-hero {
  padding: 0.25rem 0 0;
}

body.terminal-site .artwork-hero-title {
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: clamp(1.15rem, 3.5vw, 1.5rem);
  text-transform: none;
  letter-spacing: 0.14em;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  line-height: 1.2;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 12px rgba(0, 255, 159, 0.25));
}

body.terminal-site .artwork-hero-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--neon-pink);
  box-shadow: 0 0 10px var(--neon-pink);
  flex-shrink: 0;
  animation: artworkPulse 2s ease-in-out infinite;
}

@keyframes artworkPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.65;
    transform: scale(0.92);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.terminal-site .artwork-hero-dot {
    animation: none;
  }
}

body.terminal-site .artwork-hero-rule {
  height: 2px;
  margin-top: 0.65rem;
  max-width: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(0, 255, 159, 0.55), rgba(255, 65, 175, 0.45), transparent);
}

body.terminal-site .artwork-frame {
  position: relative;
  z-index: 2;
  background: linear-gradient(155deg, rgba(0, 0, 0, 0.52) 0%, rgba(21, 5, 41, 0.42) 100%);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  box-shadow:
    0 8px 28px var(--xp-shadow-soft),
    inset 0 1px 0 var(--xp-shine-soft),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35);
}

body.terminal-site .artwork-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink), var(--neon-cyan));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
  opacity: 0.9;
}

body.terminal-site .artwork-frame--a1 {
  border-radius: 20px 4px 20px 4px;
}

body.terminal-site .artwork-frame--a2 {
  border-radius: 8px 24px 8px 24px;
}

body.terminal-site .artwork-frame--a3 {
  border-radius: 4px 4px 16px 4px;
}

body.terminal-site .artwork-intro-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

body.terminal-site .artwork-info-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--deep-purple);
  background: linear-gradient(180deg, #5affc9 0%, var(--neon-cyan) 45%, #00a86b 100%);
  border-radius: 10px 6px 10px 6px;
  border: 1px solid rgba(0, 130, 90, 0.6);
  border-top-color: rgba(200, 255, 235, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -1px 0 rgba(0, 0, 0, 0.25),
    0 3px 8px rgba(0, 0, 0, 0.35);
}

body.terminal-site .artwork-section-head {
  margin-bottom: 1rem;
}

body.terminal-site .artwork-section-head .panel-sub {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: rgba(238, 220, 255, 0.62);
  margin: 0.35rem 0 0;
  line-height: 1.5;
}

body.terminal-site .artwork-viewport-fade {
  position: relative;
  min-width: 0;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

body.terminal-site .artwork-tip {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.35);
  border-left: 2px solid rgba(0, 255, 159, 0.45);
  border-radius: 0 4px 12px 0;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  line-height: 1.55;
  color: rgba(238, 220, 255, 0.75);
  font-style: italic;
}

body.terminal-site .artwork-tip kbd {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-style: normal;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

body.terminal-site .artwork-video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 2rem);
}

@media (min-width: 900px) {
  body.terminal-site .artwork-video-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    align-items: start;
  }
}

body.terminal-site .artwork-fact-box {
  margin-top: 1rem;
  padding: 0.65rem 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  line-height: 1.55;
  color: rgba(238, 220, 255, 0.82);
  background: rgba(255, 65, 175, 0.06);
  border: 1px solid rgba(255, 65, 175, 0.22);
  border-radius: 4px 10px 4px 4px;
}

body.terminal-site .artwork-fact-box strong {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: none;
  letter-spacing: 0.06em;
  color: var(--neon-pink);
  display: block;
  margin-bottom: 0.35rem;
}

body.terminal-site .artwork-embed-wrap {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.68) 100%);
  border-radius: 8px 22px 8px 22px;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 159, 0.38);
  border-top-color: rgba(0, 255, 159, 0.45);
  border-bottom-color: rgba(0, 35, 25, 0.65);
  box-shadow:
    0 8px 24px var(--xp-shadow-soft),
    inset 0 1px 0 var(--xp-shine-soft),
    inset 0 -1px 0 rgba(0, 0, 0, 0.45),
    0 0 18px rgba(0, 255, 159, 0.1);
}

body.terminal-site .artwork-embed-wrap .youtube-embed {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  aspect-ratio: 16 / 9;
  height: auto;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

body.terminal-site .artwork-embed-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  pointer-events: none;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.5rem;
  background: linear-gradient(180deg, rgba(40, 40, 45, 0.95) 0%, rgba(0, 0, 0, 0.88) 100%);
  color: var(--neon-cyan);
  border: 1px solid rgba(0, 255, 159, 0.35);
  border-top-color: rgba(255, 255, 255, 0.12);
  border-radius: 8px 4px 10px 4px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.5),
    0 2px 6px rgba(0, 0, 0, 0.45);
}

body.terminal-site a.project-link {
  color: #8affe0;
}
body.terminal-site a.project-link:hover {
  color: #fff;
}

/* Friends */
body.terminal-site .friend-boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  justify-content: center;
  padding: 12px 0;
  max-width: 1000px;
  margin: 0 auto;
}

body.terminal-site .friend-container {
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.58) 100%);
  border: 1px solid rgba(0, 255, 159, 0.38);
  border-top-color: rgba(0, 255, 159, 0.42);
  border-bottom-color: rgba(0, 40, 28, 0.65);
  box-shadow:
    0 4px 12px var(--xp-shadow-soft),
    inset 0 1px 0 var(--xp-shine-soft),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35);
}

body.terminal-site .friend-link:hover .friend-container {
  border-color: rgba(0, 255, 159, 0.65);
  filter: brightness(1.06);
  box-shadow:
    0 4px 16px rgba(0, 255, 159, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35);
}

body.terminal-site .friend-name {
  color: #8affe0;
  font-family: var(--font-mono);
}

@media (max-width: 768px) {
  body.terminal-site .friend-boxes {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  body.terminal-site .friend-boxes {
    grid-template-columns: 1fr;
  }
}

/* Poster carousel dots */
body.terminal-site .poster-carousel__dot {
  border: 1px solid rgba(0, 255, 159, 0.35);
  border-top-color: rgba(0, 255, 159, 0.45);
  border-bottom-color: rgba(0, 40, 28, 0.65);
  background: linear-gradient(180deg, rgba(0, 255, 159, 0.12) 0%, rgba(0, 0, 0, 0.5) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.4);
}

body.terminal-site .poster-carousel__dot[aria-current="true"] {
  background: linear-gradient(180deg, rgba(0, 255, 159, 0.55) 0%, rgba(0, 140, 95, 0.55) 100%);
  border-color: rgba(0, 255, 159, 0.65);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 0 10px rgba(0, 255, 159, 0.35);
}

.terminal-site .visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Photo album */
body.terminal-site.photo-album-page .album-main {
  width: min(1400px, 96%);
  margin: 8px auto 24px;
}

body.terminal-site.photo-album-page .album-wall {
  background: linear-gradient(180deg, rgba(26, 11, 46, 0.92) 0%, rgba(0, 0, 0, 0.55) 100%);
  border: 1px solid rgba(0, 255, 159, 0.42);
  border-top-color: rgba(0, 255, 159, 0.48);
  border-bottom-color: rgba(0, 40, 28, 0.65);
  border-radius: var(--radius-md);
  box-shadow:
    0 6px 18px var(--xp-shadow-soft),
    inset 0 1px 0 var(--xp-shine-soft),
    inset 0 -1px 0 rgba(0, 0, 0, 0.4),
    0 0 18px rgba(0, 255, 159, 0.15);
  padding: 14px;
  overflow: hidden;
}

body.terminal-site.photo-album-page .album-intro {
  margin: 8px 8px 14px;
  color: var(--color-text);
  font-family: var(--font-sans);
  text-align: left;
}

@media (prefers-reduced-motion: reduce) {
  .terminal-site .slideshow img {
    transition: none;
  }
}
