@import url('https://fonts.googleapis.com/css2?family=VT323&family=Courier+Prime:ital,wght@0,400;0,700;1,400&family=Martian+Mono:wght@300;400;700&display=swap');

:root {
  --acid: #b8ff00;
  --sick: #ff2d78;
  --vomit: #7fff00;
  --dark: #0a0a08;
  --darker: #060604;
  --mid: #1a1a14;
  --pale: #d4d4c8;
  --ghost: #888878;
  --radius-xs: 2px;
  --radius-sm: 4px;
  --elev-soft: 0 0 16px rgba(184, 255, 0, 0.08);
  --elev-hover: 0 0 20px rgba(184, 255, 0, 0.16);
  --measure-text: 78ch;
  --flow-space-sm: 14px;
  --flow-space-md: 18px;
}

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

html {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Ccircle cx='10' cy='10' r='4' fill='%23b8ff00'/%3E%3C/svg%3E") 10 10, crosshair;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--darker);
  color: var(--pale);
  font-family: 'Courier Prime', 'Martian Mono', monospace;
  font-size: 14px;
  line-height: 1.6;
  min-height: 100vh;
  /* РџРѕРґРґРµСЂР¶РєР° РґРёРЅР°РјРёС‡РµСЃРєРѕР№ РІС‹СЃРѕС‚С‹ РЅР° iOS */
  min-height: 100dvh;
  overflow-x: hidden;
  /* Р‘РµР·РѕРїР°СЃРЅС‹Рµ Р·РѕРЅС‹ (С‡РµР»РєРё/РІС‹СЂРµР·С‹) РЅР° iOS/Android */
  padding-top: env(safe-area-inset-top);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  padding-bottom: env(safe-area-inset-bottom);
  background-image:
    repeating-linear-gradient(0deg,
      transparent,
      transparent 2px,
      rgba(184, 255, 0, 0.015) 2px,
      rgba(184, 255, 0, 0.015) 4px);
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 10001;
  padding: 8px 12px;
  background: var(--acid);
  color: var(--dark);
  text-decoration: none;
  font-family: 'VT323', 'Martian Mono', monospace;
  font-size: 18px;
  letter-spacing: 1px;
}

.skip-link:focus {
  top: 12px;
}

/* ── HOME BUTTON (vmtcore1 → index) ── */
.home-btn {
  position: fixed;
  z-index: 10000;
  top: max(12px, env(safe-area-inset-top));
  left: max(12px, env(safe-area-inset-left));
  width: 56px;
  height: 56px;
  border: 1px solid rgba(184, 255, 0, 0.45);
  background: var(--mid);
  overflow: hidden;
  display: block;
  box-shadow: 0 0 14px rgba(184, 255, 0, 0.15);
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
  image-rendering: pixelated;
}

.home-btn:hover {
  border-color: var(--acid);
  transform: scale(1.06);
  box-shadow: 0 0 18px rgba(184, 255, 0, 0.35);
}

.home-btn:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 3px;
}

.home-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

/* в”Ђв”Ђ SCANLINES OVERLAY в”Ђв”Ђ (expensive — only when motion allowed) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background: repeating-linear-gradient(to bottom,
      transparent 0px,
      transparent 3px,
      rgba(0, 0, 0, 0.18) 3px,
      rgba(0, 0, 0, 0.18) 4px);
}

/* в”Ђв”Ђ NOISE GRAIN в”Ђв”Ђ (very expensive fractal filter — disable in reduced motion) */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  will-change: transform;
}

/* Disable the two heaviest visual effects when user wants reduced motion */
html.reduced-motion body::before,
html.reduced-motion body::after {
  content: none !important;
  display: none !important;
}

/* Respect reduced motion preference + explicit toggle */
html.reduced-motion .banner-strip,
html.reduced-motion .running-text > span,
html.reduced-motion .netstalking-arrows,
html.reduced-motion .site-title {
  animation: none !important;
  transition: none !important;
}

/* в”Ђв”Ђ WRAPPER в”Ђв”Ђ */
.wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 16px 60px;
  position: relative;
}

/* в”Ђв”Ђ PAGE LAYOUT в”Ђв”Ђ */
.page-layout {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.main-content {
  flex: 1;
  min-width: 0;
}

/* в”Ђв”Ђ INFOBOX (wiki sidebar) в”Ђв”Ђ */
.infobox {
  width: 240px;
  flex-shrink: 0;
  border: 1px solid rgba(184, 255, 0, 0.35);
  background: var(--mid);
  font-size: 12px;
  position: sticky;
  top: 20px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  box-shadow: var(--elev-soft);
}

.infobox-header {
  background: #72886a 100%;
  color: #fff;
  font-family: 'VT323', 'Martian Mono', monospace;
  font-size: 22px;
  letter-spacing: 3px;
  text-align: center;
  padding: 10px 8px 6px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.infobox-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.infobox-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.infobox-img-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #1a0010 0%, #2a0020 40%, #0a0a08 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.infobox-img-ascii {
  font-family: 'VT323', 'Martian Mono', monospace;
  font-size: 9px;
  line-height: 1.05;
  color: rgba(255, 45, 120, 0.6);
  white-space: pre;
  text-align: center;
}

.infobox-img-caption {
  font-size: 10px;
  color: rgba(212, 212, 200, 0.5);
  font-style: italic;
  text-align: center;
  padding: 0 12px;
  line-height: 1.4;
}

.infobox-section-title {
  width: 100%;
  background: linear-gradient(90deg, rgba(184, 255, 0, 0.12) 0%, rgba(184, 255, 0, 0.04) 100%);
  border-top: 1px solid rgba(184, 255, 0, 0.3);
  border-bottom: 1px solid rgba(184, 255, 0, 0.15);
  border-left: none;
  border-right: none;
  color: var(--acid);
  font-family: 'VT323', 'Martian Mono', monospace;
  font-size: 16px;
  letter-spacing: 2px;
  padding: 6px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  text-align: left;
}

.infobox-section-title:focus-visible {
  outline: 2px solid rgba(184, 255, 0, 0.9);
  outline-offset: -2px;
}

.infobox-section-title .chevron {
  font-size: 12px;
  opacity: 0.6;
  transition: transform 0.2s;
}

.infobox-section-title.collapsed .chevron {
  transform: rotate(-90deg);
}

.infobox-body {
  padding: 0;
}

.infobox-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  border-bottom: 1px solid rgba(184, 255, 0, 0.07);
}

.infobox-row:last-child {
  border-bottom: none;
}

.infobox-label {
  background: rgba(0, 0, 0, 0.2);
  color: var(--ghost);
  font-family: 'VT323', 'Martian Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.5px;
  padding: 6px 8px;
  border-right: 1px solid rgba(184, 255, 0, 0.07);
  line-height: 1.3;
}

.infobox-val {
  padding: 6px 8px;
  color: var(--pale);
  line-height: 1.4;
  font-size: 11px;
}

.infobox-val-left {
  text-align: left;
}

.infobox-val a {
  color: var(--pale) !important;
  text-decoration: none !important;
  display: block;
  line-height: 1.5;
  text-shadow: none !important;
  transition: color 0.2s, text-shadow 0.2s;
}

.infobox-val a:hover {
  color: var(--acid) !important;
  text-shadow: 0 0 6px var(--acid) !important;
}

.infobox-val .pink {
  color: #00ff40;
  font-weight: bold;
}

.infobox-val .acid-txt {
  color: var(--acid);
}

.swatch {
  color: var(--swatch, #b8ff00);
  font-family: monospace;
}

.infobox-section.hidden .infobox-body {
  display: none;
}



/* в”Ђв”Ђ BANNER STRIP (88x31 Р±РµРіСѓС‰Р°СЏ СЃС‚СЂРѕРєР°) в”Ђв”Ђ */
.banner-strip-wrap {
  overflow: hidden;
  width: 100%;
  margin: 14px 0 10px;
  border-top: 1px solid rgba(184, 255, 0, 0.2);
  border-bottom: 1px solid rgba(184, 255, 0, 0.2);
  padding: 4px 0;
  background: rgba(0, 0, 0, 0.35);
  position: relative;
}

.banner-strip-wrap::before,
.banner-strip-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  z-index: 2;
  pointer-events: none;
}

.banner-strip-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--darker), transparent);
}

.banner-strip-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--darker), transparent);
}

.banner-strip {
  display: flex;
  gap: 4px;
  width: max-content;
  animation: bannerScroll 28s linear infinite;
  contain: content; /* reduce paint cost of the long strip */
  will-change: transform;
}

.banner-strip:hover {
  animation-play-state: paused;
}

/* Strong reduced-motion support for the expensive marquee */
html.reduced-motion .banner-strip {
  animation: none !important;
  transform: none !important;
  will-change: auto;
}

@keyframes bannerScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.banner-link {
  display: inline-flex;
  flex-shrink: 0;
  text-decoration: none;
  position: relative;
  image-rendering: pixelated;
}

.banner-link:hover {
  outline: 1px solid var(--acid);
  box-shadow: 0 0 6px var(--acid);
}

.banner-link .tier-item img,
.tier-item img {
  width: 60px;
  height: 60px;
  display: block;
  object-fit: cover;
  image-rendering: pixelated;
  /* Р”Р»СЏ СЂРµС‚СЂРѕ-СЌС„С„РµРєС‚Р° */
}

/* в”Ђв”Ђ TIER ITEM PLACEHOLDER в”Ђв”Ђ */
.tier-placeholder {
  width: 60px;
  height: 60px;
  background:
    repeating-linear-gradient(45deg,
      rgba(184, 255, 0, 0.05) 0px,
      rgba(184, 255, 0, 0.05) 2px,
      transparent 2px,
      transparent 10px),
    #111;
  border: 1px dashed rgba(184, 255, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ghost);
  font-family: 'VT323', 'Martian Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  margin: 2px;
}

.banner88 {
  width: 88px;
  height: 31px;
  display: block;
  image-rendering: pixelated;
  object-fit: cover;
}

.banner-placeholder {
  display: none;
  width: 88px;
  height: 31px;
  background: var(--mid);
  border: 1px solid rgba(184, 255, 0, 0.25);
  color: var(--acid);
  font-family: 'VT323', 'Martian Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.5px;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 3px;
  line-height: 1.2;
  flex-shrink: 0;
}

/* в”Ђв”Ђ HEADER в”Ђв”Ђ */
header {
  text-align: center;
  padding: 80px 0 40px;
  margin-top: -42px;
  border-bottom: 2px solid var(--acid);
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  background-color: #050804;
}

/* С„РѕРЅРѕРІР°СЏ РєР°СЂС‚РёРЅРєР° С‡РµСЂРµР· <img> вЂ” СЂР°Р±РѕС‚Р°РµС‚ Р±РµР· СЃРµСЂРІРµСЂР° */
.header-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  /* в†ђ РјРµРЅСЏР№ % С‡С‚РѕР±С‹ РґРІРёРіР°С‚СЊ РІРІРµСЂС…/РІРЅРёР· */
  z-index: 0;
  opacity: 0.75;
  /* в†ђ СЏСЂРєРѕСЃС‚СЊ: 0=РЅРµРІРёРґРёРјРѕ, 1=РїРѕР»РЅР°СЏ */
  mix-blend-mode: normal;
  /* в†ђ С‡РёСЃС‚С‹Рµ С†РІРµС‚Р° Р±РµР· С„РёР»СЊС‚СЂР° */
}

/* С‚С‘РјРЅС‹Р№ overlay + РЅРµРѕРЅРѕРІС‹Рµ Р°РєС†РµРЅС‚С‹ РїРѕРІРµСЂС… РєР°СЂС‚РёРЅРєРё */
header::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(4, 6, 3, 0.45) 0%, rgba(5, 8, 3, 0.68) 100%),
    radial-gradient(ellipse 55% 90% at 15% 50%, rgba(80, 180, 20, 0.13) 0%, transparent 70%),
    radial-gradient(ellipse 45% 80% at 85% 40%, rgba(255, 45, 120, 0.11) 0%, transparent 65%),
    linear-gradient(90deg, rgba(184, 255, 0, 0.14) 0px, rgba(184, 255, 0, 0.05) 2px, transparent 55px),
    linear-gradient(-90deg, rgba(255, 45, 120, 0.12) 0px, transparent 55px);
}

/* scanlines */
header::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: repeating-linear-gradient(to bottom,
      transparent 0px,
      transparent 3px,
      rgba(0, 0, 0, 0.18) 3px,
      rgba(0, 0, 0, 0.18) 4px);
}

/* РІСЃРµ РґРѕС‡РµСЂРЅРёРµ СЌР»РµРјРµРЅС‚С‹ РїРѕРІРµСЂС… РІСЃРµРіРѕ */
header>*:not(.header-bg-img) {
  position: relative;
  z-index: 3;
}

.site-marquee {
  font-family: 'VT323', 'Martian Mono', monospace;
  font-size: 13px;
  color: var(--acid);
  letter-spacing: 3px;
  margin-bottom: 16px;
  opacity: 0.7;
}

.site-title {
  font-family: 'VT323', 'Martian Mono', monospace;
  font-size: clamp(48px, 12vw, 110px);
  /* РЎР»РµРіРєР° СѓРјРµРЅСЊС€РёР» РјР°РєСЃРёРјР°Р»СЊРЅС‹Р№ СЂР°Р·РјРµСЂ */
  color: var(--acid);
  text-shadow:
    0 0 20px rgba(184, 255, 0, 0.6),
    0 0 60px rgba(184, 255, 0, 0.2),
    4px 4px 0px #1a4a00;
  letter-spacing: -1px;
  line-height: 1.1;
  /* РЈРІРµР»РёС‡РёР» РґР»СЏ РјРЅРѕРіРѕСЃС‚СЂРѕС‡РЅРѕСЃС‚Рё */
  animation: flicker 6s infinite;
  display: block;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  transform: skewX(-10deg);
  white-space: normal;
  /* Р Р°Р·СЂРµС€РёР» РїРµСЂРµРЅРѕСЃ */
  word-wrap: break-word;
  padding: 0 20px;
}

@keyframes flicker {

  0%,
  95%,
  100% {
    opacity: 1;
  }

  96% {
    opacity: 0.85;
  }

  97% {
    opacity: 1;
  }

  98% {
    opacity: 0.7;
  }

  99% {
    opacity: 1;
  }
}

.site-subtitle {
  font-family: 'VT323', 'Martian Mono', monospace;
  font-size: 22px;
  color: var(--sick);
  margin-top: 8px;
  letter-spacing: 4px;
  text-shadow: 0 0 12px rgba(255, 45, 120, 0.5);
}

.header-tags {
  margin-top: 14px;
  font-size: 11px;
  color: var(--ghost);
  letter-spacing: 2px;
}

/* в”Ђв”Ђ DIVIDER в”Ђв”Ђ */
.divider {
  text-align: center;
  color: var(--acid);
  font-family: 'VT323', 'Martian Mono', monospace;
  font-size: 18px;
  letter-spacing: 6px;
  margin: 24px 0;
  opacity: 0.5;
}

/* в”Ђв”Ђ NAV в”Ђв”Ђ */
nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin-bottom: 30px;
  border: 1px solid var(--acid);
  background: var(--mid);
}

nav a {
  color: var(--acid);
  text-decoration: none;
  font-family: 'VT323', 'Martian Mono', monospace;
  font-size: 18px;
  letter-spacing: 0.5px;
  padding: 8px 14px;
  border-right: 1px solid rgba(184, 255, 0, 0.2);
  transition: background 0.15s ease, color 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

nav a:hover {
  background: var(--acid);
  color: var(--dark);
}

nav a.is-active,
nav a[aria-current="true"] {
  background: rgba(184, 255, 0, 0.18);
  color: var(--acid);
  text-shadow: 0 0 8px rgba(184, 255, 0, 0.45);
  box-shadow: inset 0 -2px 0 rgba(184, 255, 0, 0.5);
}

/* в”Ђв”Ђ GRID LAYOUT в”Ђв”Ђ */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
}

.grid-wide {
  grid-column: 1 / -1;
}

/* Rendering optimization for heavy, mostly below-fold blocks */
.grid > .panel,
.player-row,
.netstalking-block,
.running-text,
.pinterest-panel {
  content-visibility: auto;
  contain-intrinsic-size: 1px 480px;
}

/* в”Ђв”Ђ PANELS в”Ђв”Ђ */
.panel {
  border: 1px solid rgba(184, 255, 0, 0.3);
  background: var(--mid);
  padding: 16px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  box-shadow: var(--elev-soft);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.panel:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 255, 0, 0.5);
}

.panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--acid), transparent);
}

.panel-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'VT323', 'Martian Mono', monospace;
  font-size: 20px;
  color: var(--pale);
  letter-spacing: 3px;
  margin-bottom: var(--flow-space-sm);
  line-height: 1.15;
  text-transform: uppercase;
  flex-wrap: wrap;
}

.panel-title span {
  color: var(--acid);
}

/* в”Ђв”Ђ MAIN INTRO в”Ђв”Ђ */
.intro-panel {
  border-color: var(--acid);
  background: linear-gradient(135deg, var(--mid) 0%, #0a1a04 100%);
}

.intro-panel::before {
  background: linear-gradient(90deg, transparent, var(--acid), transparent);
}

.intro-text {
  font-size: 13px;
  line-height: 1.8;
  color: var(--pale);
  width: 100%;
  max-width: none;
  text-wrap: pretty;
}

.intro-text p + p {
  margin-top: var(--flow-space-md);
}

.intro-text em {
  color: var(--acid);
  font-style: normal;
  font-weight: bold;
}

.intro-points {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.intro-points li {
  position: relative;
  padding-left: 22px;
  margin: 6px 0;
}

.intro-points li::before {
  content: '📌';
  position: absolute;
  left: 0;
  top: 0;
}

.intro-text .jp {
  color: var(--ghost);
  font-size: 11px;
  display: block;
  margin-top: 6px;
  letter-spacing: 2px;
}

/* в”Ђв”Ђ ABOUT в”Ђв”Ђ */
.about-quote {
  border-left: 3px solid var(--acid);
  padding-left: 14px;
  margin: 12px 0;
  font-style: italic;
  color: var(--acid);
  font-size: 13px;
  opacity: 0.8;
}

.quote-panel {
  display: flex;
  align-items: flex-end;
  gap: 16px;
}

.quote-copy {
  flex: 1;
}

.quote-meta {
  font-size: 11px;
  color: var(--ghost);
  letter-spacing: 2px;
  margin-top: 4px;
}

.quote-media {
  flex-shrink: 0;
  width: 120px;
  height: 80px;
  overflow: hidden;
}

.quote-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gif-panel {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
}

.gif-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.gif-image {
  max-width: 100%;
  max-height: 200px;
  display: block;
}

.gif-caption {
  font-size: 11px;
  color: var(--ghost);
  letter-spacing: 1px;
  text-align: center;
}

.pinterest-panel {
  text-align: center;
}

.pinterest-wrapper {
  margin-top: 15px;
  width: 100%;
  overflow: visible;
  background: #121210;
  border: 1px solid var(--acid);
  padding: 10px;
  box-sizing: border-box;
  position: relative;
}

.pinterest-filter {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

.pinterest-board-embed {
  display: block;
  width: min(100%, 900px);
  margin: 0 auto;
}

/* Pinterest widget — do not override internal widths (breaks columns) */
.pinterest-panel span[data-pin-log] {
  display: block;
  margin: 0 auto;
}

.pinterest-fallback {
  display: none;
  min-height: 200px;
  padding: 24px 16px;
  text-align: center;
  border: 1px dashed rgba(184, 255, 0, 0.35);
  background: rgba(0, 0, 0, 0.35);
}

.pinterest-fallback.is-visible {
  display: block;
}

.pinterest-fallback p {
  color: var(--pale);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.pinterest-wrapper.is-fallback .pinterest-filter {
  display: none;
}

.pinterest-link-row {
  text-align: center;
  margin-top: 10px;
}

.pinterest-open-link {
  font-family: 'VT323', 'Martian Mono', monospace;
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--acid);
  text-shadow: 0 0 8px rgba(184, 255, 0, 0.35);
  background: rgba(5, 8, 6, 0.75);
  border: 1px solid rgba(184, 255, 0, 0.35);
  padding: 2px 8px;
}

.pinterest-status {
  font-size: 10px;
  color: var(--ghost);
  margin-top: 8px;
  font-family: 'VT323', monospace;
  letter-spacing: 1px;
}

/* в”Ђв”Ђ AESTHETICS LIST в”Ђв”Ђ */
@media (max-width: 480px) {
  .pinterest-open-link {
    font-size: 16px;
  }
}
.aest-list {
  list-style: none;
  padding: 0;
}

.aest-list li {
  padding: 4px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(184, 255, 0, 0.07);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.aest-list li::before {
  content: 'вљ¬';
  color: var(--acid);
  flex-shrink: 0;
  margin-top: 2px;
}

/* в”Ђв”Ђ BLINK BADGE в”Ђв”Ђ */
.blink {
  animation: blink 1s step-end infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* в”Ђв”Ђ STATUS BAR в”Ђв”Ђ */
.status-bar {
  background: var(--dark);
  border: 1px solid rgba(184, 255, 0, 0.2);
  padding: 8px 14px;
  font-family: 'VT323', 'Martian Mono', monospace;
  font-size: 16px;
  color: var(--acid);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  letter-spacing: 2px;
  flex-wrap: wrap;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--vomit);
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 4px var(--vomit);
  }

  50% {
    box-shadow: 0 0 12px var(--vomit), 0 0 20px rgba(127, 255, 0, 0.4);
  }
}

.status-counter {
  margin-left: auto;
}

.map-status-bar {
  margin-top: 16px;
}

.status-action-btn {
  margin-left: 8px;
  border: 1px solid rgba(184, 255, 0, 0.5);
  background: rgba(184, 255, 0, 0.08);
  color: var(--acid);
  font-family: 'VT323', monospace;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 4px 8px;
  cursor: pointer;
  min-height: 34px;
  border-radius: var(--radius-xs);
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.status-action-btn:hover {
  background: rgba(184, 255, 0, 0.16);
  border-color: var(--acid);
  transform: translateY(-1px);
}

.counter {
  background: #000;
  color: #00ff40;
  padding: 2px 6px;
  border: 2px inset #333;
  letter-spacing: 4px;
  font-family: 'Courier Prime', 'Martian Mono', monospace;
  font-weight: bold;
  text-shadow: 0 0 5px #00ff40;
  box-shadow: inset 0 0 5px #000;
  margin-left: 6px;
}

/* в”Ђв”Ђ IMAGE PLACEHOLDER в”Ђв”Ђ */
.img-box {
  width: 100%;
  aspect-ratio: 1;
  background: var(--dark);
  border: 1px dashed rgba(184, 255, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'VT323', 'Martian Mono', monospace;
  font-size: 32px;
  color: rgba(184, 255, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.img-box-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ascii-art {
  font-family: 'VT323', 'Martian Mono', monospace;
  font-size: 10px;
  line-height: 1.1;
  color: rgba(184, 255, 0, 0.5);
  white-space: pre;
  text-align: center;
}

/* в”Ђв”Ђ TRACK LIST в”Ђв”Ђ */
.tracklist {
  list-style: none;
}

.tracklist li {
  padding: 5px 0;
  font-size: 12px;
  display: flex;
  gap: 10px;
  border-bottom: 1px dotted rgba(184, 255, 0, 0.1);
  color: var(--pale);
}

.tracklist li .num {
  color: var(--acid);
  font-family: 'VT323', 'Martian Mono', monospace;
  font-size: 16px;
  min-width: 24px;
}

.tracklist li.playing {
  color: var(--acid);
}

.tracklist li.playing::after {
  content: 'в™¬';
  color: var(--acid);
  animation: blink 0.8s step-end infinite;
}

/* в”Ђв”Ђ MANIFESTO в”Ђв”Ђ */
/* DIET 13 + TAGS */
.lore-panel {
  padding: 0;
  min-height: 0;
  background-color: #070707;
  background-size: cover;
  background-position: center;
  border-color: rgba(184, 255, 0, 0.45);
}

.lore-panel-diet {
  background-image: url('images/highlights/burpboychips.jpg');
}

.lore-panel-tags {
  background-image: url('images/highlights/mikusign.jpg');
}

.lore-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.66) 0%, rgba(0, 0, 0, 0.82) 100%);
  z-index: 1;
  pointer-events: none;
}

.lore-panel-content {
  position: relative;
  z-index: 2;
  max-width: 950px;
  margin: 0;
  padding: 22px 24px 24px;
  text-align: left;
  color: var(--pale);
  text-shadow: none;
}

.lore-panel-title {
  font-family: 'VT323', 'Martian Mono', monospace;
  font-size: 24px;
  letter-spacing: 3px;
  line-height: 1.1;
  margin: 0 0 10px;
  color: var(--acid);
  text-transform: uppercase;
}

.lore-panel-content p {
  font-size: 13px;
  line-height: 1.8;
  font-weight: 400;
  max-width: var(--measure-text);
  text-wrap: pretty;
}

.lore-panel-content p + p {
  margin-top: var(--flow-space-md);
}

.lore-copy {
  display: block;
}

.content-compact {
  position: relative;
}

.content-compact.is-collapsed {
  max-height: 12.4em;
  overflow: hidden;
  padding-bottom: 2px;
}

.content-compact.is-collapsed::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3.2em;
  background: linear-gradient(180deg, rgba(10, 10, 8, 0) 0%, rgba(10, 10, 8, 0.96) 100%);
  pointer-events: none;
}

.content-toggle-btn {
  margin-top: 8px;
  border: 1px solid rgba(184, 255, 0, 0.35);
  background: rgba(184, 255, 0, 0.06);
  color: var(--acid);
  font-family: 'VT323', monospace;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 4px 10px;
  min-height: 34px;
  cursor: pointer;
  border-radius: var(--radius-xs);
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.content-toggle-btn:hover {
  background: rgba(184, 255, 0, 0.16);
  border-color: var(--acid);
  transform: translateY(-1px);
}

.manifesto {
  font-family: 'VT323', 'Martian Mono', monospace;
  font-size: 18px;
  line-height: 1.5;
  color: var(--pale);
  letter-spacing: 1px;
  max-height: 200px;
  /* РІС‹СЃРѕС‚Р° Р±Р»РѕРєР° вЂ” РјРµРЅСЏР№ РїРѕРґ СЃРµР±СЏ */
  overflow-y: auto;
  padding-right: 6px;
}

.manifesto strong {
  color: var(--acid);
}

.manifesto .acid {
  color: var(--acid);
}

.manifesto-wrap {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 10px 0;
}

.manifesto-img-wrap {
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  max-width: 320px;
}

.manifesto-cycle-img {
  width: 100%;
  height: auto;
  opacity: 0.9;
  mix-blend-mode: screen;
}

/* ── FIELD LOG (netstalk changelog) ── */
.field-log-panel {
  --field-log-border: rgba(184, 255, 0, 0.22);
}

.field-log-lead {
  font-size: 12px;
  line-height: 1.7;
  color: var(--pale);
  opacity: 0.88;
  margin: 0 0 12px;
  padding: 0 2px;
  font-family: 'Courier Prime', 'Martian Mono', monospace;
  max-width: var(--measure-text);
}

.field-log-warning {
  margin: 0 0 12px !important;
  padding: 16px 20px !important;
  text-align: center !important;
}

.field-log-warning .wiki-warning-title {
  font-size: 18px !important;
  margin-bottom: 8px !important;
  text-align: center !important;
}

.field-log-warning p {
  font-size: 16px !important;
  margin: 0 !important;
  text-align: center !important;
  line-height: 1.5 !important;
}

.field-log-box {
  max-height: 420px;
  overflow-y: auto;
  padding: 10px 12px;
  border: 1px dashed var(--field-log-border);
  background: rgba(0, 0, 0, 0.35);
  scrollbar-width: thin;
  scrollbar-color: var(--acid) var(--dark);
}

.field-log-entry {
  padding: 10px 0;
  border-bottom: 1px solid rgba(184, 255, 0, 0.12);
}

.field-log-entry:last-child {
  border-bottom: none;
  padding-bottom: 2px;
}

/* сброс глобального header { padding: 80px … } */
header.field-log-entry-head {
  text-align: left;
  position: static;
  overflow: visible;
  background: transparent;
  margin: 0 0 8px;
  padding: 0 0 6px;
  border-bottom: 1px solid rgba(184, 255, 0, 0.14);
}

header.field-log-entry-head::before,
header.field-log-entry-head::after {
  display: none;
  content: none;
}

.field-log-entry-head {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px 10px;
  line-height: 1.2;
}

.field-log-date {
  font-family: 'VT323', 'Martian Mono', monospace;
  font-size: 17px;
  letter-spacing: 1px;
  color: var(--acid);
  flex-shrink: 0;
}

.field-log-coords {
  font-family: 'Courier Prime', 'Martian Mono', monospace;
  font-size: 11px;
  color: var(--sick);
  letter-spacing: 0.3px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.field-log-text {
  font-size: 13px;
  line-height: 1.72;
  color: var(--pale);
  margin: 0 0 10px;
  max-width: var(--measure-text);
  text-wrap: pretty;
}

.field-log-photos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
  max-width: 100%;
}

.field-log-photos:has(.field-log-thumb:only-child) {
  grid-template-columns: minmax(0, 320px);
}

.field-log-thumb {
  padding: 0;
  border: 1px solid var(--field-log-border);
  background: var(--dark);
  cursor: pointer;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 3;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field-log-thumb:hover,
.field-log-thumb:focus-visible {
  border-color: var(--acid);
  box-shadow: 0 0 8px rgba(184, 255, 0, 0.35);
  outline: none;
}

.field-log-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.field-log-loading,
.field-log-empty {
  font-family: 'VT323', monospace;
  font-size: 16px;
  color: var(--pale);
  opacity: 0.75;
  margin: 0;
}

.field-log-empty code,
.field-log-hint code {
  color: var(--acid);
  font-size: 11px;
}

.field-log-ops[hidden] {
  display: none !important;
}

.field-log-ops {
  margin-top: 14px;
  border: 1px solid rgba(184, 255, 0, 0.15);
  padding: 0;
}

.field-log-ops-summary {
  cursor: pointer;
  padding: 10px 12px;
  font-family: 'VT323', monospace;
  font-size: 17px;
  letter-spacing: 1px;
  color: var(--acid);
  list-style: none;
}

.field-log-ops-summary::-webkit-details-marker {
  display: none;
}

.field-log-draft {
  display: grid;
  gap: 10px;
  padding: 0 12px 12px;
  border-top: 1px solid rgba(184, 255, 0, 0.1);
}

.field-log-draft label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 11px;
  font-family: 'Courier Prime', monospace;
  color: var(--pale);
  letter-spacing: 0.5px;
}

.field-log-draft input:not(.field-log-file-input),
.field-log-draft textarea {
  font-family: 'Courier Prime', monospace;
  font-size: 12px;
  padding: 8px;
  border: 1px solid rgba(184, 255, 0, 0.2);
  background: rgba(0, 0, 0, 0.5);
  color: var(--pale);
  width: 100%;
}

.field-log-draft input:not(.field-log-file-input):focus,
.field-log-draft textarea:focus {
  outline: 1px solid var(--acid);
  border-color: var(--acid);
}

.field-log-upload {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-log-upload-title {
  font-size: 11px;
  font-family: 'Courier Prime', monospace;
  color: var(--pale);
  letter-spacing: 0.5px;
}

.field-log-file-picker {
  display: inline-block;
  cursor: pointer;
}

.field-log-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.field-log-file-picker-btn {
  display: inline-block;
  font-family: 'VT323', monospace;
  font-size: 17px;
  letter-spacing: 1px;
  padding: 10px 18px;
  border: 1px dashed rgba(184, 255, 0, 0.45);
  color: var(--sick);
  transition: background 0.2s, border-color 0.2s;
}

.field-log-file-picker:hover .field-log-file-picker-btn,
.field-log-file-picker:focus-within .field-log-file-picker-btn {
  border-color: var(--acid);
  background: rgba(184, 255, 0, 0.08);
}

.field-log-attach-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 10px;
}

.field-log-attach-item {
  position: relative;
  margin: 0;
  border: 1px solid rgba(184, 255, 0, 0.2);
  background: rgba(0, 0, 0, 0.45);
}

.field-log-attach-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.field-log-attach-item figcaption {
  font-size: 9px;
  padding: 4px 6px;
  color: var(--ghost);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.field-log-attach-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  z-index: 1;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 1px solid var(--sick);
  background: rgba(0, 0, 0, 0.75);
  color: var(--sick);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
}

.field-log-attach-remove:hover {
  background: var(--sick);
  color: var(--dark);
}

.field-log-draft-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.field-log-optional {
  opacity: 0.65;
  font-weight: 400;
}

.field-log-draft-btn {
  justify-self: start;
  font-family: 'VT323', monospace;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 8px 16px;
  border: 1px solid var(--acid);
  background: transparent;
  color: var(--acid);
  cursor: pointer;
}

.field-log-draft-btn:hover {
  background: rgba(184, 255, 0, 0.12);
}

.field-log-draft-btn--secondary {
  border-color: var(--sick);
  color: var(--sick);
}

.field-log-draft-btn--secondary:hover {
  background: rgba(255, 45, 120, 0.12);
}

.field-log-draft-output {
  margin: 0 12px 8px;
  padding: 10px;
  font-size: 11px;
  line-height: 1.5;
  white-space: pre-wrap;
  word-break: break-word;
  border: 1px solid rgba(184, 255, 0, 0.2);
  background: #0a0a08;
  color: var(--pale);
  max-height: 200px;
  overflow: auto;
}

.field-log-hint {
  font-size: 10px;
  line-height: 1.6;
  color: var(--pale);
  opacity: 0.7;
  margin: 0;
  padding: 0 12px 12px;
}

/* в”Ђв”Ђ GALLERY STRIP в”Ђв”Ђ */
.gallery-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--acid) var(--dark);
}

.gallery-item {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: var(--dark);
  border: 1px solid rgba(184, 255, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: border-color 0.2s, transform 0.2s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.gallery-item:hover {
  border-color: var(--acid);
  transform: scale(1.05) rotate(-1deg);
}

.gallery-item .label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  font-family: 'VT323', 'Martian Mono', monospace;
  font-size: 10px;
  color: var(--acid);
  text-align: center;
  padding: 2px;
  letter-spacing: 1px;
  transform: translateY(100%);
  transition: transform 0.2s;
}

.gallery-item:hover .label {
  transform: translateY(0);
}

/* в”Ђв”Ђ FRIENDS BUTTONS в”Ђв”Ђ */
.friend-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.btn-88x31 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 31px;
  background: var(--dark);
  border: 1px solid rgba(184, 255, 0, 0.3);
  font-family: 'VT323', 'Martian Mono', monospace;
  font-size: 11px;
  color: var(--acid);
  text-decoration: none;
  letter-spacing: 1px;
  border-radius: var(--radius-xs);
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.btn-88x31[aria-disabled="true"] {
  opacity: 0.7;
  pointer-events: none;
}

.btn-88x31:hover {
  background: rgba(184, 255, 0, 0.1);
  border-color: var(--acid);
  transform: translateY(-1px);
}

.btn-88x31.pink {
  border-color: rgba(255, 45, 120, 0.3);
  color: var(--sick);
}

.btn-88x31.pink:hover {
  background: rgba(255, 45, 120, 0.1);
  border-color: var(--sick);
}

.social-icon {
  margin-right: 6px;
  font-size: 14px;
}

/* в”Ђв”Ђ COUNTER в”Ђв”Ђ */
.counter {
  font-family: 'VT323', 'Martian Mono', monospace;
  font-size: 24px;
  color: var(--acid);
  background: var(--dark);
  border: 1px solid rgba(184, 255, 0, 0.3);
  padding: 4px 12px;
  letter-spacing: 4px;
  display: inline-block;
}

/* в”Ђв”Ђ GUESTBOOK PREVIEW в”Ђв”Ђ */
.gbook-entry {
  border-left: 2px solid var(--sick);
  padding: 6px 10px;
  margin-bottom: 10px;
  background: rgba(255, 45, 120, 0.04);
  font-size: 12px;
}

.gbook-entry .who {
  color: var(--sick);
  font-family: 'VT323', 'Martian Mono', monospace;
  font-size: 16px;
  letter-spacing: 1px;
}

.gbook-entry .msg {
  color: var(--pale);
  opacity: 0.8;
}

/* в”Ђв”Ђ WARNING BOX в”Ђв”Ђ */
.warning {
  background: rgba(255, 45, 120, 0.07);
  border: 1px solid rgba(255, 45, 120, 0.4);
  padding: 10px 14px;
  color: var(--sick);
  font-family: 'VT323', 'Martian Mono', monospace;
  font-size: 16px;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 20px;
}

/* в”Ђв”Ђ FOOTER в”Ђв”Ђ */
footer {
  margin-top: 40px;
  border-top: 1px solid rgba(184, 255, 0, 0.2);
  padding-top: 20px;
  text-align: center;
  font-family: 'VT323', 'Martian Mono', monospace;
  font-size: 15px;
  color: var(--ghost);
  letter-spacing: 2px;
}

footer a {
  color: var(--acid);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}



.footer-jp {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(136, 136, 120, 0.5);
  font-family: 'Courier Prime', 'Martian Mono', monospace;
  letter-spacing: 3px;
}

.footer-note {
  font-size: 11px;
  color: rgba(136, 136, 120, 0.3);
}

/* в”Ђв”Ђ GLITCH TEXT в”Ђв”Ђ */
.glitch {
  position: relative;
  display: inline-block;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  font-family: inherit;
  font-size: inherit;
}

.glitch::before {
  color: var(--sick);
  animation: glitch-1 4s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}

.glitch::after {
  color: #00ffff;
  animation: glitch-2 4s infinite;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

@keyframes glitch-1 {

  0%,
  90%,
  100% {
    transform: translate(0);
    opacity: 0;
  }

  91% {
    transform: translate(-3px, 1px);
    opacity: 0.8;
  }

  93% {
    transform: translate(2px, -1px);
    opacity: 0.8;
  }

  95% {
    transform: translate(0);
    opacity: 0;
  }
}

@keyframes glitch-2 {

  0%,
  90%,
  100% {
    transform: translate(0);
    opacity: 0;
  }

  92% {
    transform: translate(3px, -1px);
    opacity: 0.7;
  }

  94% {
    transform: translate(-2px, 1px);
    opacity: 0.7;
  }

  96% {
    transform: translate(0);
    opacity: 0;
  }
}

/* в”Ђв”Ђ SCROLLBAR в”Ђв”Ђ */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--acid);
}

/* в”Ђв”Ђ MOBILE в”Ђв”Ђ */


/* в”Ђв”Ђ HOVER GLOW LINKS в”Ђв”Ђ */
a {
  color: var(--acid);
  text-decoration: none;
}

a:hover {
  text-shadow: 0 0 8px var(--acid);
}

a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 2px;
}

main [id] {
  scroll-margin-top: 96px;
}

/* в”Ђв”Ђ MARQUEE TEXT в”Ђв”Ђ */
.running-text {
  overflow: hidden;
  white-space: nowrap;
  font-family: 'VT323', 'Martian Mono', monospace;
  font-size: 14px;
  color: var(--sick);
  letter-spacing: 2px;
  padding: 6px 0;
  border-top: 1px solid rgba(184, 255, 0, 0.15);
  border-bottom: 1px solid rgba(184, 255, 0, 0.15);
  margin: 20px 0;
}

.running-text > span {
  display: inline-block;
  padding-left: 100%;
  animation: ticker 40s linear infinite;
}

.running-text:hover > span {
  animation-play-state: paused;
}



.running-text-secondary {
  margin-top: 24px;
}

@keyframes ticker {
  from {
    transform: translateX(100vw);
  }

  to {
    transform: translateX(-100%);
  }
}

.tag {
  display: inline-block;
  background: rgba(184, 255, 0, 0.08);
  border: 1px solid rgba(184, 255, 0, 0.25);
  color: var(--acid);
  font-family: 'VT323', 'Martian Mono', monospace;
  font-size: 14px;
  padding: 2px 8px;
  letter-spacing: 1px;
  margin: 2px;
}

.tag.pink {
  background: rgba(255, 45, 120, 0.08);
  border-color: rgba(255, 45, 120, 0.25);
  color: var(--sick);
}

/* в”Ђв”Ђ WIKI WARNING в”Ђв”Ђ */
.wiki-warning {
  background: #2a1500 !important;
  border: 1px solid #8b4a00 !important;
  border-radius: 4px !important;
  padding: 12px 16px !important;
  margin: 0 0 20px 0 !important;
  font-family: 'Courier Prime', monospace !important;
  font-size: 13px !important;
  color: #d4a574 !important;
  line-height: 1.6 !important;
  text-align: left !important;
  text-shadow: none !important;
  letter-spacing: normal !important;
  animation: none !important;
}

.wiki-warning-title {
  font-weight: bold !important;
  font-size: 14px !important;
  color: #e8b84b !important;
  margin-bottom: 6px !important;
  text-shadow: none !important;
  letter-spacing: normal !important;
  animation: none !important;
  font-family: 'Courier Prime', monospace !important;
}

.wiki-warning p {
  margin: 4px 0 !important;
  color: #d4a574 !important;
  text-shadow: none !important;
  letter-spacing: normal !important;
  animation: none !important;
  font-size: 13px !important;
  font-family: 'Courier Prime', monospace !important;
  text-align: left !important;
}

.wiki-warning strong {
  color: #e8b84b !important;
  font-family: 'Courier Prime', monospace !important;
}

/* в”Ђв”Ђ MUSIC PLAYER в”Ђв”Ђ */
.player {
  background: #000;
  border: 1px solid var(--pale);
  padding: 12px 14px;
  margin-bottom: 16px;
  font-family: 'Courier Prime', 'Martian Mono', monospace;
  color: var(--pale);
  max-width: 280px;
  border-radius: var(--radius-sm);
  box-shadow: var(--elev-soft);
}

.player-nowplaying {
  font-size: 11px;
  color: var(--pale);
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-align: center;
}

.player-title {
  font-size: 15px;
  font-weight: bold;
  color: var(--pale);
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-timeline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.player-time {
  font-size: 11px;
  color: var(--pale);
  min-width: 30px;
  flex-shrink: 0;
}

.player-bar {
  flex: 1;
  height: 4px;
  background: #333;
  position: relative;
  cursor: pointer;
}

.player-bar:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 4px;
}

.player-progress {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--pale);
  width: 0%;
  pointer-events: none;
}

.player-thumb {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: var(--pale);
  left: 0%;
  pointer-events: none;
}

.player-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 10px;
}

.player-btn {
  background: none;
  border: 1px solid var(--pale);
  color: var(--pale);
  font-family: 'Courier Prime', 'Martian Mono', monospace;
  font-size: 16px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.1s, color 0.1s;
}

.player-btn:hover {
  background: var(--pale);
  color: #000;
}

.player-btn:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 2px;
}

.player-btn-play {
  width: 40px;
  height: 40px;
  font-size: 14px;
}

.player-volume-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.player-vol-icon {
  font-size: 14px;
}

.player-vol-bar {
  width: 80px;
  flex-shrink: 0;
}

/* в”Ђв”Ђ GALLERY IMAGES в”Ђв”Ђ */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* в”Ђв”Ђ PLAYER ROW в”Ђв”Ђ */
.player-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.player-row .player {
  margin-bottom: 0;
  flex-shrink: 0;
}

/* в”Ђв”Ђ ICONIC FIGURES в”Ђв”Ђ */
.iconic-panel {
  flex: 1;
  background: #000;
  border: 1px solid var(--pale);
  padding: 12px 14px;
  font-family: 'Courier Prime', 'Martian Mono', monospace;
  border-radius: var(--radius-sm);
  box-shadow: var(--elev-soft);
}

.iconic-title {
  font-family: 'VT323', 'Martian Mono', monospace;
  font-size: 20px;
  color: var(--acid);
  letter-spacing: 3px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.iconic-title span {
  color: var(--acid);
  font-style: italic;
}

.iconic-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.iconic-list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 4px 0;
  border-bottom: 1px dotted rgba(184, 255, 0, 0.1);
  font-size: 12px;
}

.iconic-list li:last-child {
  border-bottom: none;
}

.iconic-num {
  color: var(--acid);
  font-family: 'VT323', 'Martian Mono', monospace;
  font-size: 16px;
  min-width: 22px;
  flex-shrink: 0;
}

.iconic-name {
  color: var(--pale);
  font-weight: bold;
  flex: 1;
}

.iconic-tag {
  color: var(--ghost);
  font-size: 10px;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.iconic-star {
  width: 30px;
  height: 30px;

  vertical-align: middle;
}

/* в”Ђв”Ђ ICONIC AVATAR (16x16 СЂСЏРґРѕРј СЃ РёРјРµРЅРµРј) в”Ђв”Ђ */
.iconic-avatar {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  image-rendering: pixelated;
  flex-shrink: 0;
  object-fit: cover;
}

.iconic-avatar-whatis {
  width: 550px;
  height: 100px;
  vertical-align: middle;
  image-rendering: pixelated;
  flex-shrink: 0;
}

/* в”Ђв”Ђ NETSTALKING BANNER BLOCK в”Ђв”Ђ */
.netstalking-block {
  width: 100%;
  margin: 20px 0;
  text-align: center;
  font-family: 'Courier Prime', 'Martian Mono', monospace;
}

.netstalking-text {
  font-size: 13px;
  color: var(--pale);
  letter-spacing: 1px;
  margin-bottom: 8px;
  opacity: 0.85;
}

.netstalking-arrows {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1;
  color: var(--sick);
  animation: blink 1.2s step-end infinite;
}

.netstalking-arrows span {
  display: inline-block;
}

.netstalking-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.netstalking-side-gif {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  object-fit: cover;
  border: 1px solid rgba(184, 255, 0, 0.2);
  image-rendering: pixelated;
}

.netstalking-link {
  flex: 1;
  min-width: 0;
  display: block;
  border: 1px solid rgba(184, 255, 0, 0.2);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.netstalking-link:hover {
  border-color: var(--acid);
  box-shadow: 0 0 10px rgba(184, 255, 0, 0.3);
}

.netstalking-img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  display: block;
  object-position: center 54%;
  /* РјРµРЅСЏР№ С‡РёСЃР»Рѕ */
}

/* в”Ђв”Ђ ICONIC LIST вЂ” 2 РљРћР›РћРќРљР в”Ђв”Ђ */
.iconic-list-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.iconic-list-2col li:nth-child(odd) {
  border-right: 1px dotted rgba(184, 255, 0, 0.12);
  padding-right: 8px;
}

.iconic-list-2col li:nth-child(even) {
  padding-left: 8px;
}

/* РїРѕСЃР»РµРґРЅРёРµ РґРІР° вЂ” Р±РµР· РЅРёР¶РЅРµР№ РіСЂР°РЅРёС†С‹ */
.iconic-list-2col li:nth-last-child(-n+2) {
  border-bottom: none;
}

/* в”Ђв”Ђ Р‘Р›РћРљ РЎ РљРђР РўРРќРљРћР™ в”Ђв”Ђ */
.iconic-img-block {
  margin-top: 12px;
  border-top: 1px solid rgba(184, 255, 0, 0.25);
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

.iconic-img-main {
  width: 100%;
  display: block;
  border: 1px solid rgba(184, 255, 0, 0.2);
  object-fit: cover;
  height: 200px;
  object-position: center 10%;
}



.iconic-img-caption {
  font-size: 11px;
  color: var(--ghost);
  letter-spacing: 1px;
  text-align: center;
}

/* РµСЃР»Рё РєР°СЂС‚РёРЅРєР° РЅРµ Р·Р°РіСЂСѓР¶РµРЅР° вЂ” РїРѕРєР°Р·С‹РІР°РµРј Р·Р°РіР»СѓС€РєСѓ */
.iconic-img-main[src="Р’РЎРўРђР’Р¬_РџРЈРўР¬_Рљ_РљРђР РўРРќРљР•"],
.iconic-img-main:not([src]),
.iconic-img-main[src=""] {
  min-height: 120px;
  background:
    repeating-linear-gradient(45deg,
      rgba(184, 255, 0, 0.04) 0px,
      rgba(184, 255, 0, 0.04) 2px,
      transparent 2px,
      transparent 10px),
    var(--mid);
  position: relative;
}

/* в”Ђв”Ђ GUESTBOOK PANEL в”Ђв”Ђ */
.guestbook-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.guestbook-title {
  font-family: 'VT323', 'Martian Mono', monospace;
  font-size: 16px;
  color: var(--acid);
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.8;
}

.guestbook-panel iframe {
  border: 1px solid rgba(184, 255, 0, 0.25);
  background: var(--mid);
  flex: 1;
  display: block;
  filter: invert(0);
  border-radius: var(--radius-sm);
}

/* в”Ђв”Ђ BIOROBOT GIF в”Ђв”Ђ */
.biorobot-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  gap: 14px;
}

.biorobot-text {
  flex: 1;
  min-width: 0;
}

.biorobot-gif {
  width: 90px;
  height: 90px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(184, 255, 0, 0.2);
  image-rendering: pixelated;
}

/* в”Ђв”Ђ TIERLIST (TIERMAKER STYLE) в”Ђв”Ђ */
.tierlist {
  display: flex;
  flex-direction: column;
  background: var(--dark);
  border: 1px solid rgba(184, 255, 0, 0.2);
  margin-top: 10px;
  overflow: hidden;
}

.tier-row {
  display: flex;
  min-height: 64px;
  border-bottom: 2px solid var(--darker);
}

.tier-row:last-child {
  border-bottom: none;
}

.tier-label {
  width: 64px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: #111;
  text-shadow: none;
  border-right: 2px solid var(--darker);
}

/* Tiermaker Colors */
.tier-s {
  background-color: #FF7F7F;
}

.tier-a {
  background-color: #FFBF7F;
}

.tier-b {
  background-color: #FFDF7F;
}

.tier-c {
  background-color: #FFFF7F;
}

.tier-d {
  background-color: #BFFF7F;
}

.tier-f {
  background-color: #7FFF7F;
}

.tier-items {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  gap: 6px;
  padding: 6px;
  background: var(--mid);
}

/* Tier Item placeholder for image or text */
.tier-item {
  width: 54px;
  height: 54px;
  background: var(--darker);
  border: 1px dashed rgba(184, 255, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  position: relative;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.2s;
  cursor: grab;
}

.tier-item:hover {
  transform: scale(1.4);
  border-style: solid;
  border-color: var(--acid);
  z-index: 100 !important;
  box-shadow: 0 0 20px rgba(184, 255, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.8);
}

@media (hover: none) {
  .tier-item:hover {
    transform: none;
    border-style: dashed;
    border-color: rgba(184, 255, 0, 0.3);
    z-index: auto !important;
    box-shadow: none;
  }
}

.tier-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Fallback text if no image */
.tier-item span {
  font-family: 'Courier Prime', 'Martian Mono', monospace;
  font-size: 9px;
  color: var(--pale);
  padding: 2px;
  word-wrap: break-word;
  /* allows long words to wrap */
  line-height: 1;
}

/* в”Ђв”Ђ HIGHLIGHTS GALLERY в”Ђв”Ђ */
.highlights-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  padding: 10px 0;
}

.highlight-item {
  width: 130px;
  /* РЈРјРµРЅСЊС€Р°РµРј СЂР°Р·РјРµСЂ, С‡С‚РѕР±С‹ РІР»РµР·Р»Рѕ Р±РѕР»СЊС€Рµ РєРІР°РґСЂР°С‚РѕРІ */
  max-width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(212, 212, 200, 0.3);
  background: var(--darker);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s ease, box-shadow 0.3s ease, flex 0.3s ease;
  cursor: zoom-in;
  position: relative;
  flex: 1 1 120px;
  /* РџРѕР·РІРѕР»СЏРµС‚ РєРІР°РґСЂР°С‚Сѓ СЂР°СЃС‚Рё, РЅРѕ РЅРµ РјРµРЅСЊС€Рµ 120px */
}

.highlight-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.highlight-item:hover,
.highlight-item:focus,
.highlight-item:active {
  transform: scale(1.05);
  border-color: rgba(184, 255, 0, 0.8);
  z-index: 5;
  box-shadow: 0 0 20px rgba(184, 255, 0, 0.2);
}

.highlight-item:hover img,
.highlight-item:focus img,
.highlight-item:active img {
  transform: scale(1.1);
}

.highlight-item.expanded {
  flex: 1 1 100%;
  width: 100%;
  aspect-ratio: auto;
  cursor: zoom-out;
  transform: none !important;
  z-index: 20;
}

.highlight-item.expanded img {
  object-fit: contain;
  height: auto;
  transform: none !important;
}

.highlight-item.expanded .label {
  transform: translateY(0);
}

.highlight-item .label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  font-family: 'VT323', 'Martian Mono', monospace;
  font-size: 14px;
  color: var(--acid);
  text-align: center;
  padding: 4px;
  letter-spacing: 1px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 10;
}

.highlight-item:hover .label,
.highlight-item:focus .label,
.highlight-item:active .label {
  transform: translateY(0);
}

/* в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ
   РњРћР‘РР›Р¬РќРђРЇ РђР”РђРџРўРђР¦РРЇ
   в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ */


/* в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ
   РњРћР‘РР›Р¬РќРђРЇ РђР”РђРџРўРђР¦РРЇ вЂ” РµРґРёРЅС‹Р№ С‡РёСЃС‚С‹Р№ Р±Р»РѕРє
   в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ */

/* Р“Р»РѕР±Р°Р»СЊРЅР°СЏ Р·Р°С‰РёС‚Р° РѕС‚ РїРµСЂРµРїРѕР»РЅРµРЅРёСЏ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
iframe,
video,
pre {
  max-width: 100%;
}

@media (max-width: 768px) {

  :root {
    --measure-text: 68ch;
    --flow-space-sm: 12px;
    --flow-space-md: 14px;
  }

  body::before {
    opacity: 0.5;
  }

  body::after {
    opacity: 0.02;
  }

  /* GLOBAL PROTECTION */
  img,
  video,
  iframe,
  canvas {
    max-width: 100%;
    height: auto;
  }

  /* WRAPPER */
  .wrapper {
    padding: 10px 10px 40px;
  }

  /* HEADER */
  header {
    padding: 30px 10px 20px;
    margin-top: -30px;
    margin-bottom: 20px;
  }

  /* Р—Р°РіРѕР»РѕРІРѕРє вЂ” РІРїРёСЃС‹РІР°РµРј РІ С€РёСЂРёРЅСѓ С€Р°РїРєРё */
  .site-title {
    font-family: 'VT323', 'Martian Mono', monospace !important;
    font-size: clamp(38px, 15vw, 68px) !important;
    letter-spacing: 2px !important;
    white-space: normal !important;
    word-break: break-word !important;
    overflow: visible !important;
    display: block;
    width: 100%;
    text-align: center;
    padding: 0 10px;
    transform: skewX(-10deg) !important;
    line-height: 1 !important;
  }

  /* NAV вЂ” 3 РІ СЂСЏРґ */
  nav {
    border-right: none;
    border-bottom: none;
  }

  nav a {
    flex: 1 0 33.33%;
    font-size: 13px;
    padding: 10px 4px;
    text-align: center;
    border-right: 1px solid rgba(184, 255, 0, 0.1);
    border-bottom: 1px solid rgba(184, 255, 0, 0.1);
  }

  nav a:last-child {
    border-right: none;
  }

  /* PAGE LAYOUT вЂ” РёРЅС„РѕР±РѕРєСЃ РїРѕРґ РѕСЃРЅРѕРІРЅС‹Рј РєРѕРЅС‚РµРЅС‚РѕРј */
  .page-layout {
    flex-direction: column !important;
    align-items: stretch;
    gap: 16px;
  }

  .main-content {
    width: 100%;
    order: 1;
  }

  .infobox {
    width: 100% !important;
    max-width: 100%;
    margin-bottom: 20px;
    position: static !important;
    font-size: 11px;
    order: 2;
  }

  /* HIGHLIGHTS MOB AWARENESS */
  .highlights-gallery {
    gap: 8px;
  }

  .highlight-item {
    flex: 1 1 80px;
    width: 80px;
  }

  /* MANIFESTO MOB AWARENESS */
  .manifesto {
    min-width: 100% !important;
  }

  .field-log-box {
    max-height: 360px;
  }

  .field-log-photos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .field-log-photos:has(.field-log-thumb:only-child) {
    grid-template-columns: 1fr;
  }

  .manifesto-img-wrap {
    justify-content: center;
    margin: 10px auto 0;
  }

  .lore-panel {
    min-height: 0;
  }

  .lore-panel-content {
    padding: 16px 14px 18px;
  }

  .lore-panel-title {
    font-size: 22px;
    letter-spacing: 2px;
  }

  .lore-panel-content p {
    font-size: 12px;
    line-height: 1.75;
  }

  /* TIERLIST MOB AWARENESS */
  .tier-label {
    width: 48px;
    font-size: 18px;
  }

  .tier-item {
    width: 46px;
    height: 46px;
  }

  .tier-items {
    gap: 4px;
    padding: 4px;
  }

  .infobox-header {
    font-size: 16px;
    letter-spacing: 2px;
    padding: 8px;
  }

  .infobox-row {
    grid-template-columns: 80px 1fr;
  }

  .infobox-label {
    font-size: 10px;
    padding: 6px;
  }

  .infobox-val {
    font-size: 10px;
    padding: 6px;
    line-height: 1.4;
  }

  .infobox-section-title {
    font-size: 14px;
    padding: 8px;
    letter-spacing: 1px;
  }

  .infobox-img {
    aspect-ratio: auto;
    min-height: 150px;
  }

  /* PLAYER ROW вЂ” РІРµСЂС‚РёРєР°Р»СЊРЅРѕ */
  .player-row {
    flex-direction: column;
    gap: 10px;
  }

  .player {
    max-width: 100% !important;
    width: 100% !important;
  }

  .guestbook-panel {
    width: 100%;
  }

  .guestbook-panel iframe {
    height: 280px;
  }

  /* ICONIC PANEL */
  .iconic-panel {
    width: 100%;
  }

  /* Iconic list вЂ” 1 РєРѕР»РѕРЅРєР° РЅР° РјРѕР±РёР»Рµ (РёРЅР°С‡Рµ С‚РµРіРё Р»РѕРјР°СЋС‚ СЃС‚СЂРѕРєРё) */
  .iconic-list-2col {
    grid-template-columns: 1fr !important;
  }

  .iconic-list-2col li:nth-child(odd) {
    border-right: none !important;
    padding-right: 0 !important;
  }

  .iconic-list-2col li:nth-child(even) {
    padding-left: 0 !important;
  }

  .iconic-list-2col li:nth-last-child(-n+2) {
    border-bottom: 1px dotted rgba(184, 255, 0, 0.1) !important;
  }

  .iconic-list-2col li:last-child {
    border-bottom: none !important;
  }

  .iconic-tag {
    display: none;
  }

  /* ICONIC AVATAR WHATIS */
  .iconic-avatar-whatis {
    width: 100%;
    height: auto;
    max-height: 60px;
    object-fit: contain;
    display: block;
  }

  /* GRID */
  .grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .grid-wide {
    grid-column: 1;
  }

  /* NETSTALKING */
  .netstalking-side-gif {
    width: 52px;
    height: 52px;
  }

  .netstalking-img {
    height: 52px;
  }

  /* BIOROBOT */
  .biorobot-gif {
    width: 60px;
    height: 60px;
  }

  /* GALLERY */
  .gallery-item {
    width: 68px;
    height: 68px;
  }

  /* STATUS */
  .status-bar {
    font-size: 12px;
    flex-wrap: wrap;
    gap: 6px;
    padding: 6px 8px;
  }

  .counter {
    font-size: 16px;
  }

  /* FOOTER */
  footer {
    font-size: 12px;
    letter-spacing: 1px;
  }

  /* QUOTE PANEL вЂ” СЃС‚РµРє РІРµСЂС‚РёРєР°Р»СЊРЅРѕ */
  .panel.grid-wide[style*="flex"],
  .quote-panel {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  /* РљР°СЂС‚РёРЅРєР° РІ quote-Р±Р»РѕРєРµ вЂ” РїРѕР»РЅР°СЏ С€РёСЂРёРЅР° */
  .panel.grid-wide [style*="flex-shrink: 0"],
  .quote-media {
    width: 100% !important;
    height: 80px !important;
  }

  /* GIF bloc вЂ” РЅРµ РґР°РІР°С‚СЊ СЂР°СЃС‚СЏРіРёРІР°С‚СЊСЃСЏ Р·Р° СЌРєСЂР°РЅ */
  .panel.grid-wide img[alt="gif"],
  .gif-image {
    max-height: 150px;
    width: auto;
  }

  /* RUNNING TEXT вЂ” СѓРјРµРЅСЊС€Р°РµРј С€СЂРёС„С‚ */
  .running-text {
    font-size: 11px;
    letter-spacing: 0.7px;
  }

  /* WIKI WARNING вЂ” РјРµРЅСЊС€Рµ С€СЂРёС„С‚ */
  .wiki-warning {
    font-size: 12px;
    padding: 10px 12px;
  }

  .wiki-warning-title {
    font-size: 14px;
  }

  /* INTRO TEXT вЂ” С‡СѓС‚СЊ РєСЂСѓРїРЅРµРµ РґР»СЏ С‡РёС‚Р°Р±РµР»СЊРЅРѕСЃС‚Рё */
  .intro-text {
    font-size: 12px;
    line-height: 1.75;
  }

  .panel-title {
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: var(--flow-space-sm);
  }

  .content-compact.is-collapsed {
    max-height: 11.6em;
  }

  /* PLAYER VOL BAR вЂ” СЂР°СЃС‚СЏРіРёРІР°РµРј РЅР° РІСЃРµ РґРѕСЃС‚СѓРїРЅРѕРµ РјРµСЃС‚Рѕ */
  .player-vol-bar {
    width: auto;
    flex: 1;
  }

  /* GALLERY STRIP вЂ” touch scroll */
  .gallery-strip {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
  }

  .gallery-item {
    scroll-snap-align: start;
  }

  /* BTN-88x31 вЂ” Р°РґР°РїС‚РёРІРЅР°СЏ С€РёСЂРёРЅР° */
  .btn-88x31 {
    flex: 1 1 auto;
    min-width: 88px;
    height: 36px;
    font-size: 12px;
  }

  /* ARTICLE SPECIFIC ADAPTATION */
  .article-body {
    padding: 20px 15px !important;
  }

  .article-content {
    font-size: 14px !important;
  }

  .article-content blockquote {
    padding: 15px !important;
    margin: 20px 0 !important;
    font-size: 16px !important;
  }

  .image-grid,
  .extra-shots {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  .article-image-wrap {
    margin: 20px 0 !important;
  }

  .article-card {
    padding: 20px 15px !important;
    min-height: 160px !important;
  }

  /* Ticker вЂ” РїСЂРµРґРѕС‚РІСЂР°С‚РёС‚СЊ РіРѕСЂРёР·РѕРЅС‚Р°Р»СЊРЅРѕРµ РїРµСЂРµРїРѕР»РЅРµРЅРёРµ */
  .running-text>span {
    white-space: nowrap;
  }
}

/* в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ
   Р‘Р Р•Р™РљРџРћРРќРў 480px вЂ” СѓР·РєРёРµ С‚РµР»РµС„РѕРЅС‹
   в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ */
@media (max-width: 480px) {

  :root {
    --measure-text: 60ch;
    --flow-space-sm: 10px;
    --flow-space-md: 12px;
  }

  /* Wrapper Р±РµР· Р±РѕРєРѕРІРѕРіРѕ РѕС‚СЃС‚СѓРїР° */
  .wrapper {
    padding: 6px 6px 40px;
  }

  /* Header РєРѕРјРїР°РєС‚РЅРµРµ */
  header {
    padding: 12px 0 8px;
    margin-top: -22px;
  }

  /* Tier вЂ” РµС‰С‘ РєРѕРјРїР°РєС‚РЅРµРµ */
  .tier-label {
    width: 36px;
    font-size: 15px;
  }

  .tier-item {
    width: 40px;
    height: 40px;
  }

  /* РџР°РЅРµР»СЊ вЂ” РјРёРЅРёРјР°Р»СЊРЅС‹Р№ padding */
  .panel {
    padding: 10px 8px;
  }

  .lore-panel {
    min-height: 0;
  }

  .lore-panel-content {
    padding: 12px 10px 14px;
  }

  .lore-panel-title {
    font-size: 20px;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
  }

  .lore-panel-content p {
    font-size: 11px;
    line-height: 1.6;
  }

  /* Highlights РјРёРЅРёРјСѓРј */
  .highlight-item {
    flex: 1 1 70px;
    width: 70px;
  }

  /* Iconic list вЂ” РєРѕРјРїР°РєС‚РЅРµРµ */
  .iconic-list li {
    font-size: 11px;
  }

  /* Player title РЅРµ РїРµСЂРµРЅРѕСЃРёС‚СЃСЏ */
  .player-title,
  #player-title {
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  /* РќРµС‚ scroll-hint СЌС„С„РµРєС‚Р° РѕС‚ ::after РЅР° РёРЅС„РѕР±РѕРєСЃРµ */
  .infobox {
    font-size: 10px;
  }
}

@media (max-width: 400px) {
  .site-title {
    font-size: clamp(22px, 8vw, 40px) !important;
  }

  .infobox {
    width: 100% !important;
  }

  .infobox-label {
    font-size: 9px;
  }

  .infobox-val {
    font-size: 9px;
  }

  nav a {
    flex: 1 0 100%;
    font-size: 14px;
    padding: 8px 4px;
    border-right: none;
  }

  .netstalking-side-gif {
    width: 40px;
    height: 40px;
  }

  .netstalking-img {
    height: 40px;
  }

  .panel {
    padding: 10px;
  }

  .guestbook-panel iframe {
    height: 240px;
  }

  .biorobot-row {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ── SUBPAGE: ARTICLES ── */
.article-body {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(184, 255, 0, 0.1);
  padding: clamp(16px, 4vw, 40px);
  position: relative;
}

.article-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--acid), transparent);
}

.article-content {
  font-family: 'Courier Prime', monospace;
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 1.8;
  color: var(--pale);
}

.article-content h2 {
  font-family: 'VT323', monospace;
  color: var(--acid);
  font-size: clamp(22px, 5vw, 32px);
  margin-top: 32px;
  margin-bottom: 16px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(184, 255, 0, 0.2);
  padding-bottom: 5px;
}

.article-content p {
  margin-bottom: 20px;
  text-align: justify;
  hyphens: auto;
  max-width: var(--measure-text);
  text-wrap: pretty;
}

.article-content blockquote {
  border-left: 4px solid var(--sick);
  padding: 16px 20px;
  background: rgba(255, 45, 120, 0.05);
  font-style: italic;
  margin: 28px 0;
  position: relative;
  font-size: clamp(15px, 3vw, 18px);
  color: var(--pale);
}

.article-content blockquote::after {
  content: "''";
  position: absolute;
  bottom: 10px;
  right: 20px;
  font-family: 'VT323', monospace;
  font-size: 40px;
  color: var(--sick);
  opacity: 0.2;
}

.article-image-wrap {
  margin: 28px 0;
  text-align: center;
}

.article-image {
  max-width: 100%;
  height: auto;
  border: 1px solid var(--acid);
  box-shadow: 0 0 20px rgba(184, 255, 0, 0.1);
  filter: sepia(0.3) contrast(1.1);
  transition: filter 0.3s;
}

.article-image:hover {
  filter: sepia(0) contrast(1.2);
}

.image-meta {
  font-family: 'VT323', monospace;
  font-size: 12px;
  color: var(--ghost);
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.back-btn,
.back-link {
  display: inline-block;
  margin-bottom: 16px;
  margin-right: 8px;
  color: var(--acid);
  text-decoration: none;
  font-family: 'VT323', monospace;
  font-size: clamp(15px, 3vw, 18px);
  border: 1px solid var(--acid);
  padding: 8px 14px;
  min-height: 44px;
  line-height: 1.2;
  transition: background 0.2s, color 0.2s;
}

.back-btn:hover,
.back-link:hover {
  background: var(--acid);
  color: var(--dark);
  text-shadow: none;
}

.article-info-tag {
  display: inline-block;
  padding: 2px 8px;
  background: var(--mid);
  border: 1px solid var(--ghost);
  color: var(--ghost);
  font-size: 10px;
  text-transform: uppercase;
  margin-right: 8px;
  margin-bottom: 6px;
}

.article-header-meta {
  margin-bottom: 24px;
}

.extra-shots,
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
  margin: 24px 0;
}

.extra-shot {
  border: 1px solid rgba(184, 255, 0, 0.2);
  min-height: 120px;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  filter: grayscale(1);
  transition: filter 0.3s, transform 0.3s;
}

.extra-shot:hover {
  filter: grayscale(0);
  transform: scale(1.02);
  border-color: var(--acid);
}

/* ── ARTICLES INDEX ── */
.article-card {
  border: 1px solid rgba(184, 255, 0, 0.2);
  background-color: rgba(0, 0, 0, 0.3);
  background-size: cover;
  background-position: center 10%;
  padding: clamp(20px, 5vw, 40px) 20px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 20px;
  transition: border-color 0.3s, transform 0.2s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.article-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
  transition: background 0.3s;
}

.article-card:hover::before {
  background: rgba(0, 0, 0, 0.5);
}

.article-card > * {
  position: relative;
  z-index: 2;
}

.article-card:hover {
  border-color: var(--acid);
  transform: translateX(4px);
}

.article-date {
  font-family: 'VT323', monospace;
  color: var(--ghost);
  font-size: 14px;
  margin-bottom: 8px;
}

.article-title {
  color: var(--acid);
  font-family: 'VT323', monospace;
  font-size: clamp(18px, 4vw, 24px);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.article-excerpt {
  font-size: 14px;
  color: var(--pale);
  line-height: 1.6;
  opacity: 0.85;
}

.category-label {
  position: absolute;
  top: 10px;
  right: 15px;
  font-family: 'VT323', monospace;
  font-size: 11px;
  color: var(--sick);
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 2;
}

.section-header {
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 10px;
  margin-bottom: 5px;
  background: rgba(184, 255, 0, 0.05);
  border: 1px solid rgba(184, 255, 0, 0.1);
  transition: background 0.2s, border-color 0.2s;
  min-height: 44px;
}

.section-header:hover,
.section-header.is-open {
  background: rgba(184, 255, 0, 0.1);
  border-color: var(--acid);
}

.section-header .toggle-icon {
  font-family: 'VT323', monospace;
  font-size: 20px;
  color: var(--acid);
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.section-header .section-title {
  font-family: 'VT323', monospace;
  font-size: clamp(15px, 3vw, 18px);
  color: var(--acid);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-content {
  display: none;
  padding-top: 12px;
}

.section-content.active {
  display: block;
}

.article-section {
  margin-bottom: 24px;
  border-radius: 4px;
  border-left: 4px solid transparent;
  background: rgba(0, 0, 0, 0.2);
  padding: 10px;
}

/* ── GALLERY PAGE ── */
.gallery-section {
  margin-bottom: 40px;
  position: relative;
}

.month-title {
  font-family: 'VT323', monospace;
  font-size: clamp(22px, 5vw, 32px);
  color: var(--acid);
  border-bottom: 2px solid var(--acid);
  margin-bottom: 20px;
  padding-bottom: 5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 4px;
  text-shadow: 0 0 10px rgba(184, 255, 0, 0.3);
  flex-wrap: wrap;
}

.month-title span {
  opacity: 0.5;
  font-size: 0.65em;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(160px, 100%), 1fr));
  gap: clamp(10px, 2vw, 20px);
}

.gallery-placeholder {
  aspect-ratio: 1;
  background: var(--mid);
  border: 1px solid rgba(184, 255, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(184, 255, 0, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 255, 0, 0.02) 1px, transparent 1px);
  background-size: 20px 20px;
}

.gallery-placeholder:hover,
.gallery-placeholder:focus-visible {
  border-color: var(--acid);
  box-shadow: 0 0 20px rgba(184, 255, 0, 0.15);
  transform: translateY(-3px);
  outline: none;
}

.gallery-placeholder img,
.gallery-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}

.gallery-placeholder i {
  font-size: 28px;
  color: var(--ghost);
  opacity: 0.3;
  transition: color 0.3s, opacity 0.3s;
  z-index: 1;
}

.gallery-placeholder:hover i {
  color: var(--acid);
  opacity: 0.8;
}

.gallery-placeholder .label {
  font-family: 'VT323', monospace;
  font-size: 10px;
  color: var(--ghost);
  margin-top: auto;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 6px 4px;
  background: rgba(0, 0, 0, 0.75);
  z-index: 2;
  text-align: center;
}

.gallery-placeholder:hover .label {
  color: var(--pale);
}

.gallery-meta {
  margin-top: 10px;
  font-family: 'Courier Prime', monospace;
  font-size: 10px;
  color: var(--ghost);
  text-align: right;
  text-transform: uppercase;
}

.gallery-section--legacy .month-title {
  color: var(--sick);
  border-color: var(--sick);
}

.gallery-section--legacy .gallery-placeholder {
  border-color: rgba(255, 45, 120, 0.2);
}

.gallery-section--legacy .gallery-meta {
  color: var(--sick);
  opacity: 0.6;
}

.gallery-submit-note {
  font-size: 11px;
  color: var(--ghost);
  margin-top: 30px;
  letter-spacing: 1px;
  text-align: center;
}

/* ── LIGHTBOX ── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(4, 6, 3, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(12px, env(safe-area-inset-top)) max(12px, env(safe-area-inset-right)) max(12px, env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}

.lightbox-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay img {
  max-width: min(100%, 1100px);
  max-height: min(85vh, 85dvh);
  width: auto;
  height: auto;
  object-fit: contain;
  border: 1px solid var(--acid);
  box-shadow: 0 0 30px rgba(184, 255, 0, 0.2);
}

.lightbox-close {
  position: absolute;
  top: max(12px, env(safe-area-inset-top));
  right: max(12px, env(safe-area-inset-right));
  background: var(--mid);
  border: 1px solid var(--acid);
  color: var(--acid);
  font-family: 'VT323', monospace;
  font-size: 22px;
  min-width: 44px;
  min-height: 44px;
  cursor: pointer;
  padding: 4px 12px;
}

.lightbox-caption {
  position: absolute;
  bottom: max(16px, env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  font-family: 'VT323', monospace;
  font-size: 14px;
  color: var(--ghost);
  letter-spacing: 2px;
  text-align: center;
  max-width: 90%;
}

/* ── MOBILE NAV TOGGLE ── */
.nav-wrap {
  position: relative;
  margin-bottom: 30px;
}

.nav-toggle {
  display: none;
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  background: var(--mid);
  border: 1px solid var(--acid);
  color: var(--acid);
  font-family: 'VT323', monospace;
  font-size: 18px;
  letter-spacing: 2px;
  cursor: pointer;
  text-align: center;
}

.nav-toggle:hover {
  background: rgba(184, 255, 0, 0.1);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 2px;
}

.back-to-top {
  position: fixed;
  right: max(12px, env(safe-area-inset-right));
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 9997;
  min-width: 72px;
  min-height: 40px;
  padding: 8px 10px;
  border: 1px solid rgba(184, 255, 0, 0.6);
  background: rgba(6, 6, 4, 0.9);
  color: var(--acid);
  font-family: 'VT323', monospace;
  font-size: 18px;
  letter-spacing: 1px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  border-radius: var(--radius-xs);
  box-shadow: var(--elev-soft);
}

.back-to-top:hover {
  border-color: var(--acid);
  background: rgba(10, 16, 6, 0.95);
  box-shadow: var(--elev-hover);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.section-share-btn {
  margin-left: auto;
  border: 1px solid rgba(184, 255, 0, 0.35);
  background: rgba(184, 255, 0, 0.06);
  color: var(--acid);
  font-family: 'VT323', monospace;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 3px 8px;
  cursor: pointer;
  min-height: 30px;
  border-radius: var(--radius-xs);
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.section-share-btn:hover {
  background: rgba(184, 255, 0, 0.16);
  border-color: var(--acid);
  transform: translateY(-1px);
}

.section-share-toast {
  position: fixed;
  left: 50%;
  bottom: max(18px, env(safe-area-inset-bottom));
  transform: translate(-50%, 8px);
  z-index: 9999;
  border: 1px solid rgba(184, 255, 0, 0.5);
  background: rgba(4, 8, 3, 0.96);
  color: var(--acid);
  font-family: 'VT323', monospace;
  font-size: 18px;
  letter-spacing: 1px;
  padding: 7px 14px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.section-share-toast.is-error {
  border-color: rgba(255, 45, 120, 0.6);
  color: var(--sick);
}

.section-share-toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.reading-progress {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 9996;
  height: 3px;
  background: rgba(184, 255, 0, 0.08);
  pointer-events: none;
}

.reading-progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--acid), var(--sick));
  box-shadow: 0 0 8px rgba(184, 255, 0, 0.35);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-wrap:not(.is-open) > nav {
    display: none;
  }

  .nav-wrap.is-open > nav {
    display: flex;
    flex-direction: column;
    border-top: none;
    margin-top: -1px;
  }

  .nav-wrap.is-open > nav a,
  .nav-wrap.is-open nav a {
    flex: none;
    width: 100%;
    min-height: 44px;
    border-right: none;
    font-size: 15px;
    padding: 12px 14px;
  }

  nav a {
    min-height: 44px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .article-content p {
    text-align: left;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .article-card:hover {
    transform: none;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .extra-shots,
  .image-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .running-text > span {
    animation: none;
    padding-left: 0;
    white-space: normal;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .panel:hover {
    transform: none;
  }
}

html.reduced-motion {
  scroll-behavior: auto;
}

html.reduced-motion *,
html.reduced-motion *::before,
html.reduced-motion *::after {
  animation: none !important;
  transition: none !important;
}


