/* =========================
   RESET
========================= */

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

/* =========================
   BODY + BACKGROUND
========================= */

body {
  color: #d8d8d8;
  font-family: Verdana, Arial, sans-serif;
  position: relative;
  background-color: #0a0a0a;
  background-image:
    url("../images/backgrounds/bg-tile-01.png"),
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
    radial-gradient(circle at top, rgba(110, 20, 20, 0.28), transparent 42%),
    linear-gradient(to bottom, #0a0a0a, #050505);
  background-repeat: repeat, repeat, repeat, no-repeat, no-repeat;
  background-size: 256px 256px, 24px 24px, 24px 24px, auto, auto;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,0.025), transparent 20%),
    radial-gradient(circle at 80% 30%, rgba(120, 0, 0, 0.08), transparent 25%);
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.035),
    rgba(255,255,255,0.035) 1px,
    transparent 1px,
    transparent 3px
  );
  opacity: 0.2;
  z-index: 999;
}

/* =========================
   LINKS
========================= */

a {
  color: #c43d3d;
  text-decoration: none;
}

a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* =========================
   PAGE
========================= */

.page {
  width: 1040px;
  margin: 24px auto;
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.02), rgba(0,0,0,0.18)),
    #101010;
  border: 1px solid #676767;
  box-shadow:
    0 0 0 1px #1a1a1a inset,
    0 0 30px rgba(0,0,0,0.85),
    0 0 60px rgba(70, 0, 0, 0.16);
  position: relative;
  z-index: 1;
}

/* =========================
   TOPBAR
========================= */

.topbar {
  background: #171717;
  color: #8d8d8d;
  padding: 9px 14px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid #343434;
  font-family: "Courier New", monospace;
}

/* =========================
   HEADER
========================= */

.header {
  width: 100%;
  height: 220px;
  border-bottom: 1px solid #343434;
  background-image: url("../images/headers/banner-01.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  image-rendering: pixelated;
}

/* =========================
   NAV
========================= */

.nav {
  background: linear-gradient(to bottom, #161616, #121212);
  padding: 16px 10px;
  border-top: 1px solid #232323;
  border-bottom: 1px solid #232323;
  text-align: center;
}

.nav a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 8px;
  padding: 12px 16px;
  min-width: 115px;
  color: #b9b9b9;
  border: 1px solid #262626;
  background: linear-gradient(to bottom, #1a1a1a, #111);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.02) inset,
    0 0 0 1px rgba(0,0,0,0.6);
}

.nav a:hover {
  color: #fff;
  text-decoration: none;
  border-color: #5a2323;
  background: linear-gradient(to bottom, #241414, #161010);
  text-shadow: -1px 0 red, 1px 0 blue;
}

.nav-icon {
  width: 36px;
  height: 36px;
  image-rendering: pixelated;
  flex-shrink: 0;
}

.nav a:hover .nav-icon {
  animation: glitch-icon 0.25s infinite;
}

@keyframes glitch-icon {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-2px, 1px); }
  40% { transform: translate(2px, -1px); }
  60% { transform: translate(-1px, 2px); }
  80% { transform: translate(1px, -2px); }
  100% { transform: translate(0, 0); }
}

/* =========================
   LAYOUT
========================= */

.layout {
  display: grid;
  grid-template-columns: 240px 1fr 240px;
  gap: 14px;
  padding: 14px;
}

/* =========================
   PANELS
========================= */

.panel {
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.01), rgba(0,0,0,0.14)),
    #121212;
  border: 1px solid #2c2c2c;
  padding: 14px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.015);
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease,
    filter 0.18s ease;
}

.panel h2 {
  margin: 0 0 14px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #d0d0d0;
  font-family: "Courier New", monospace;
  border-bottom: 1px solid #2a2a2a;
  padding-bottom: 10px;
  transition: text-shadow 0.18s ease, color 0.18s ease;
}

.panel p,
.panel li {
  color: #b0b0b0;
  line-height: 1.45;
  font-size: 13px;
  margin-top: 0;
  transition: text-shadow 0.18s ease, transform 0.18s ease;
}

/* =========================
   INNER BOXES
========================= */

.main-feature,
.audio-box,
.stat-box,
.log-entry,
.link-box,
.thumb-card {
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.01), rgba(0,0,0,0.08)),
    #101010;
  border: 1px dashed #2a2a2a;
  padding: 14px;
  margin-bottom: 14px;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease,
    filter 0.18s ease,
    text-shadow 0.18s ease;
}

.main-feature {
  min-height: 210px;
}

.small-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 8px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d2b1b1;
  border: 1px solid #4a2323;
  background: #231313;
  font-family: "Courier New", monospace;
  transition: text-shadow 0.18s ease;
}

/* =========================
   COUNTER / WARNING
========================= */

.mono {
  font-family: "Courier New", monospace;
}

.counter {
  font-size: 24px;
  letter-spacing: 6px;
  color: #dcdcdc;
  text-align: center;
  margin: 4px 0 10px;
}

.warning {
  color: #a83d3d;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.3;
}

/* =========================
   AUDIO
========================= */

audio {
  width: 100%;
  margin-top: 10px;
  filter: grayscale(1) brightness(0.85);
}

/* =========================
   THUMB GRID
========================= */

.thumb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.thumb-card {
  text-align: center;
  min-height: 185px;
}

.thumb-card img {
  width: 72px;
  height: 72px;
  display: block;
  margin: 0 auto 12px auto;
  image-rendering: pixelated;
  transition:
    transform 0.18s ease,
    filter 0.18s ease,
    box-shadow 0.18s ease;
}

.caption {
  font-size: 11px;
  color: #8b8b8b;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.45;
  transition: text-shadow 0.18s ease, transform 0.18s ease;
}

/* =========================
   HOVER FX
========================= */

.panel:hover,
.main-feature:hover,
.audio-box:hover,
.stat-box:hover,
.log-entry:hover,
.link-box:hover,
.thumb-card:hover {
  border-color: #4a2323;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.02),
    0 0 10px rgba(120, 0, 0, 0.08);
  animation: panel-flicker 0.22s steps(2, end) 2;
}

@keyframes panel-flicker {
  0% {
    opacity: 1;
    filter: brightness(1);
  }
  20% {
    opacity: 0.96;
    filter: brightness(1.04);
  }
  40% {
    opacity: 1;
    filter: brightness(0.98);
  }
  60% {
    opacity: 0.97;
    filter: brightness(1.03);
  }
  100% {
    opacity: 1;
    filter: brightness(1);
  }
}

.panel:hover h2,
.main-feature:hover .small-label,
.audio-box:hover .small-label,
.thumb-card:hover .caption,
.link-box:hover,
.log-entry:hover,
.stat-box:hover {
  text-shadow:
    -1px 0 rgba(255, 0, 0, 0.45),
    1px 0 rgba(0, 120, 255, 0.25);
}

.panel:hover p,
.panel:hover li,
.main-feature:hover p,
.audio-box:hover p,
.thumb-card:hover .caption {
  animation: text-jitter 0.16s steps(2, end) 2;
}

@keyframes text-jitter {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-0.5px, 0); }
  50% { transform: translate(0.5px, 0); }
  75% { transform: translate(0, -0.5px); }
  100% { transform: translate(0, 0); }
}

.thumb-card:hover img,
.nav a:hover .nav-icon {
  animation: image-glitch 0.22s steps(2, end) 3;
  filter: brightness(1.08) contrast(1.15) saturate(1.05);
}

@keyframes image-glitch {
  0% { transform: translate(0, 0) scale(1); }
  20% { transform: translate(-1px, 1px) scale(1.015); }
  40% { transform: translate(1px, -1px) scale(1.02); }
  60% { transform: translate(-1px, 0) scale(1.01); }
  80% { transform: translate(1px, 1px) scale(1.02); }
  100% { transform: translate(0, 0) scale(1); }
}

.thumb-card:hover {
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.015), rgba(80,0,0,0.06)),
    #101010;
}

.main-feature:hover,
.audio-box:hover,
.stat-box:hover,
.log-entry:hover,
.link-box:hover {
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.015), rgba(80,0,0,0.05)),
    #101010;
}

/* =========================
   FOOTER
========================= */

.footer {
  padding: 16px;
  text-align: center;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #6f6f6f;
  border-top: 1px solid #262626;
  background: #111;
  font-family: "Courier New", monospace;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .page {
    width: 95%;
  }

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

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

/* =========================
   WORK GRID
========================= */

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.work-item {
  background: #101010;
  border: 1px dashed #2a2a2a;
  overflow: hidden;
  transition: all 0.2s ease;
}

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

.work-info {
  padding: 10px;
}

.work-title {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.work-desc {
  font-size: 11px;
  color: #888;
}

/* hover */
.work-item:hover {
  border-color: #5a2323;
  transform: scale(1.02);
}
  .nav a {
    min-width: 90px;
    padding: 10px 10px;
  }
}

/* =========================
   PROJECT PAGE
========================= */

.project-hero {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  margin: 12px 0 14px 0;
  border: 1px solid #2c2c2c;
  image-rendering: auto;
}

.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.project-box {
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.01), rgba(0,0,0,0.08)),
    #101010;
  border: 1px dashed #2a2a2a;
  padding: 14px;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease,
    filter 0.18s ease;
}

.project-box:hover {
  border-color: #4a2323;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.02),
    0 0 10px rgba(120, 0, 0, 0.08);
  animation: panel-flicker 0.22s steps(2, end) 2;
}

.project-box:hover p,
.project-box:hover .small-label {
  text-shadow:
    -1px 0 rgba(255, 0, 0, 0.45),
    1px 0 rgba(0, 120, 255, 0.25);
}

@media (max-width: 1100px) {
  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-hero {
    height: 240px;
  }
}
/* =========================
   WORK GRID
========================= */

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.work-item {
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.01), rgba(0,0,0,0.08)),
    #101010;
  border: 1px dashed #2a2a2a;
  overflow: hidden;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.work-item a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.work-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #2a2a2a;
}

.work-info {
  padding: 12px;
}

.work-title {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: "Courier New", monospace;
  color: #d0d0d0;
}

.work-desc {
  font-size: 11px;
  color: #8b8b8b;
  line-height: 1.45;
  text-transform: uppercase;
}

.work-item:hover {
  border-color: #4a2323;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.02),
    0 0 10px rgba(120, 0, 0, 0.08);
  transform: translateY(-2px);
}

.work-item:hover .work-title,
.work-item:hover .work-desc {
  text-shadow:
    -1px 0 rgba(255, 0, 0, 0.35),
    1px 0 rgba(0, 120, 255, 0.2);
}

@media (max-width: 1100px) {
  .work-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================
   SOUND GRID
========================= */

.sound-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.sound-item {
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.01), rgba(0,0,0,0.08)),
    #101010;
  border: 1px dashed #2a2a2a;
  padding: 14px;
  transition: all 0.2s ease;
}

.sound-header {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-family: "Courier New", monospace;
}

.sound-desc {
  font-size: 11px;
  color: #888;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.sound-item audio {
  width: 100%;
}

.sound-item:hover {
  border-color: #4a2323;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.02),
    0 0 10px rgba(120, 0, 0, 0.08);
}

/* =========================
   WIDE PANEL
========================= */

.panel-wide {
  grid-column: span 3;
}

/* =========================
   SOUND PAGE
========================= */

.sound-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sound-item {
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.01), rgba(0,0,0,0.08)),
    #101010;
  border: 1px dashed #2a2a2a;
  padding: 14px;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    transform 0.18s ease;
}

.sound-item:hover {
  border-color: #4a2323;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.02),
    0 0 10px rgba(120, 0, 0, 0.08);
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.015), rgba(80,0,0,0.05)),
    #101010;
}

.sound-header {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-family: "Courier New", monospace;
  color: #d0d0d0;
}

.sound-desc {
  font-size: 11px;
  color: #8b8b8b;
  margin-bottom: 12px;
  text-transform: uppercase;
  line-height: 1.45;
}

/* =========================
   BANDCAMP WRAP
========================= */

.bandcamp-wrap {
  position: relative;
  width: 100%;
  height: 120px;
  border: 1px dashed #2a2a2a;
  overflow: hidden;
  background: #0b0b0b;
  z-index: 2;
}

.bandcamp-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* =========================
   FAKE PLAYER
========================= */

.fake-player {
  border: 1px dashed #2a2a2a;
  background: #0b0b0b;
  padding: 16px 12px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.fake-player-line {
  font-size: 11px;
  color: #7c7c7c;
  letter-spacing: 1px;
}

/* =========================
   AUDIO STATUS
========================= */

.audio-status {
  margin-top: 10px;
  font-size: 10px;
  letter-spacing: 2px;
  color: #9b4a4a;
  text-transform: uppercase;
}

/* =========================
   WAVE BARS
========================= */

.wave-bars {
  display: flex;
  align-items: end;
  gap: 4px;
  height: 34px;
  margin-bottom: 12px;
  padding: 6px 8px;
  border: 1px dashed #2a2a2a;
  background: #0d0d0d;
  overflow: hidden;
}

.wave-bars span {
  display: block;
  width: 8px;
  background: linear-gradient(to top, #5f1212, #d63a2a);
  opacity: 0.75;
  animation: wavePulse 1.2s infinite ease-in-out;
}

.wave-bars span:nth-child(1)  { height: 20%; animation-delay: 0s; }
.wave-bars span:nth-child(2)  { height: 55%; animation-delay: 0.08s; }
.wave-bars span:nth-child(3)  { height: 35%; animation-delay: 0.16s; }
.wave-bars span:nth-child(4)  { height: 75%; animation-delay: 0.24s; }
.wave-bars span:nth-child(5)  { height: 45%; animation-delay: 0.32s; }
.wave-bars span:nth-child(6)  { height: 85%; animation-delay: 0.4s; }
.wave-bars span:nth-child(7)  { height: 50%; animation-delay: 0.48s; }
.wave-bars span:nth-child(8)  { height: 30%; animation-delay: 0.56s; }
.wave-bars span:nth-child(9)  { height: 65%; animation-delay: 0.64s; }
.wave-bars span:nth-child(10) { height: 25%; animation-delay: 0.72s; }
.wave-bars span:nth-child(11) { height: 80%; animation-delay: 0.8s; }
.wave-bars span:nth-child(12) { height: 40%; animation-delay: 0.88s; }
.wave-bars span:nth-child(13) { height: 70%; animation-delay: 0.96s; }
.wave-bars span:nth-child(14) { height: 30%; animation-delay: 1.04s; }
.wave-bars span:nth-child(15) { height: 60%; animation-delay: 1.12s; }
.wave-bars span:nth-child(16) { height: 22%; animation-delay: 1.2s; }

@keyframes wavePulse {
  0%, 100% {
    transform: scaleY(1);
    opacity: 0.75;
  }
  50% {
    transform: scaleY(1.25);
    opacity: 1;
  }
}

/* =========================
   GLITCH AUDIO OVERLAY
========================= */

.glitch-audio::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,0.03) 45%,
      rgba(255,255,255,0) 100%
    );
  opacity: 0;
  z-index: 3;
}

.glitch-audio::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255,255,255,0.025),
      rgba(255,255,255,0.025) 1px,
      transparent 1px,
      transparent 3px
    );
  opacity: 0.14;
  z-index: 1;
}

.glitch-audio:hover::before {
  opacity: 1;
  animation: audioSweep 0.5s steps(2, end) 2;
}

.glitch-audio:hover .sound-header,
.glitch-audio:hover .sound-desc,
.glitch-audio:hover .audio-status {
  text-shadow:
    -1px 0 rgba(255, 0, 0, 0.45),
    1px 0 rgba(0, 120, 255, 0.25);
}

.glitch-audio:hover .bandcamp-wrap,
.glitch-audio:hover .fake-player,
.glitch-audio:hover .wave-bars {
  border-color: #4a2323;
  box-shadow: 0 0 8px rgba(120, 0, 0, 0.08);
}

@keyframes audioSweep {
  0% {
    transform: translateY(-8px);
    opacity: 0.2;
  }
  30% {
    transform: translateY(4px);
    opacity: 0.45;
  }
  60% {
    transform: translateY(-2px);
    opacity: 0.3;
  }
  100% {
    transform: translateY(0);
    opacity: 0;
  }
}

@media (max-width: 1100px) {
  .sound-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   BANDCAMP LARGE FIX
========================= */

.bandcamp-wrap-large {
  width: 100%;
  border: 1px dashed #2a2a2a;
  background: #0b0b0b;
  padding: 6px;
  display: flex;
  justify-content: center;
}

.bandcamp-wrap-large iframe {
  width: 400px;
  height: 472px;
  border: 0;
}

/* =========================
   ARCHIVE GRID
========================= */

.archive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}

.archive-item {
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.01), rgba(0,0,0,0.08)),
    #101010;
  border: 1px dashed #2a2a2a;
  overflow: hidden;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.archive-item img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #2a2a2a;
}

.archive-info {
  padding: 12px;
}

.archive-title {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: "Courier New", monospace;
  color: #d0d0d0;
}

.archive-desc {
  font-size: 11px;
  color: #8b8b8b;
  line-height: 1.45;
  text-transform: uppercase;
}

.archive-item:hover {
  border-color: #4a2323;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.02),
    0 0 10px rgba(120, 0, 0, 0.08);
  transform: translateY(-2px);
}

.archive-item:hover .archive-title,
.archive-item:hover .archive-desc {
  text-shadow:
    -1px 0 rgba(255, 0, 0, 0.35),
    1px 0 rgba(0, 120, 255, 0.2);
}

@media (max-width: 1100px) {
  .archive-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   ABOUT GRID
========================= */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.about-box {
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.01), rgba(0,0,0,0.08)),
    #101010;
  border: 1px dashed #2a2a2a;
  padding: 14px;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.about-box:hover {
  border-color: #4a2323;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.02),
    0 0 10px rgba(120, 0, 0, 0.08);
  animation: panel-flicker 0.22s steps(2, end) 2;
}

.about-box:hover p,
.about-box:hover .small-label {
  text-shadow:
    -1px 0 rgba(255, 0, 0, 0.35),
    1px 0 rgba(0, 120, 255, 0.2);
}

@media (max-width: 1100px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   88x31 BUTTON BAR
========================= */

.button-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  border-top: 1px solid #262626;
  background: #0e0e0e;
}

.button-bar img {
  width: 88px;
  height: 31px;
  image-rendering: pixelated;
  border: 1px solid #2a2a2a;
  transition:
    transform 0.15s ease,
    filter 0.15s ease,
    box-shadow 0.15s ease;
}

.button-bar img:hover {
  transform: scale(1.08);
  filter: brightness(1.2);
  box-shadow: 0 0 6px rgba(120, 0, 0, 0.4);
}