:root {
  --bg:      #030303;
  --panel:   #08080a;
  --pink:    #ff0099;
  --blue:    #00cfff;
  --green:   #39ff14;
  --orange:  #ff6600;
  --purple:  #cc00ff;
  --yellow:  #ffe600;
  --red:     #ff2200;
  --white:   #d8d0c8;
}

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

html { background: var(--bg); }

body {
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px),
    radial-gradient(ellipse 55% 40% at 12% 18%, rgba(255,0,153,0.09) 0%, transparent 100%),
    radial-gradient(ellipse 45% 55% at 88% 12%, rgba(0,207,255,0.09) 0%, transparent 100%),
    radial-gradient(ellipse 60% 45% at 55% 88%, rgba(204,0,255,0.07) 0%, transparent 100%),
    radial-gradient(ellipse 35% 50% at 25% 72%, rgba(255,102,0,0.07) 0%, transparent 100%),
    radial-gradient(ellipse 40% 35% at 78% 58%, rgba(57,255,20,0.05) 0%, transparent 100%);
  background-size: 28px 28px, 28px 28px, auto, auto, auto, auto, auto;
  color: var(--white);
  font-family: 'Share Tech Mono', monospace;
  font-size: 14px;
  min-height: 100vh;
}

/* grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: 0.055;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: overlay;
}

/* scanlines */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 3px,
    rgba(0,0,0,0.1) 3px, rgba(0,0,0,0.1) 4px
  );
  pointer-events: none;
  z-index: 9997;
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--pink); text-shadow: 0 0 10px var(--pink); }

/* ── HEADER ── */
#site-header {
  text-align: center;
  padding: 22px 10px 4px;
  position: relative;
}

.jp-deco {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: #333;
  letter-spacing: 6px;
  margin-bottom: 6px;
}

.site-title {
  font-family: 'Orbitron', 'Press Start 2P', monospace;
  font-weight: 900;
  font-size: clamp(20px, 5vw, 48px);
  letter-spacing: 4px;
  background: linear-gradient(90deg,
    var(--pink) 0%,
    var(--orange) 25%,
    var(--yellow) 45%,
    var(--green) 60%,
    var(--blue) 78%,
    var(--purple) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 18px rgba(255,0,153,0.5));
  animation: title-glow 3s ease-in-out infinite alternate, glitch-title 7s infinite;
  position: relative;
}

@keyframes title-glow {
  from { filter: drop-shadow(0 0 14px rgba(255,0,153,0.5)); }
  to   { filter: drop-shadow(0 0 28px rgba(0,207,255,0.7)); }
}

@keyframes glitch-title {
  0%,88%,100% { transform: none; }
  90% { transform: skewX(-6deg) translateX(-3px); }
  92% { transform: skewX(4deg)  translateX(3px); }
  94% { transform: none; }
}

.subtitle {
  font-family: 'VT323', monospace;
  font-size: 18px;
  color: #444;
  letter-spacing: 4px;
  margin-top: 4px;
}

/* ── MARQUEE ── */
.marquee-bar {
  background: linear-gradient(90deg,
    var(--pink), var(--orange), var(--yellow),
    var(--green), var(--blue), var(--purple), var(--pink)
  );
  background-size: 300% 100%;
  animation: rainbow-slide 5s linear infinite;
  color: #000;
  font-family: 'VT323', monospace;
  font-size: 18px;
  font-weight: bold;
  padding: 3px 0;
  overflow: hidden;
  white-space: nowrap;
  margin: 10px 0;
}

@keyframes rainbow-slide {
  from { background-position: 0% 50%; }
  to   { background-position: 100% 50%; }
}

.marquee-inner { display: inline-block; animation: marquee 22s linear infinite; }
@keyframes marquee { from { transform: translateX(100vw); } to { transform: translateX(-100%); } }

/* ── NAV ── */
nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
  padding: 8px;
  border-top: 1px solid #151515;
  border-bottom: 1px solid #151515;
}

nav a {
  font-family: 'Press Start 2P', monospace;
  font-size: 8px;
  padding: 6px 10px;
  border: 1px solid;
  transition: all 0.1s;
  letter-spacing: 1px;
}

nav a:nth-child(1) { color: var(--pink);   border-color: var(--pink);   background: rgba(255,0,153,0.08); }
nav a:nth-child(2) { color: var(--orange);  border-color: var(--orange); background: rgba(255,102,0,0.08); }
nav a:nth-child(3) { color: var(--yellow);  border-color: var(--yellow); background: rgba(255,230,0,0.08); }
nav a:nth-child(4) { color: var(--green);   border-color: var(--green);  background: rgba(57,255,20,0.08); }
nav a:nth-child(5) { color: var(--blue);    border-color: var(--blue);   background: rgba(0,207,255,0.08); }
nav a:nth-child(6) { color: var(--purple);  border-color: var(--purple); background: rgba(204,0,255,0.08); }

nav a:hover {
  color: #000 !important;
  background: currentColor !important;
  text-shadow: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px currentColor;
}

/* ── LAYOUT ── */
#main-wrap {
  display: grid;
  grid-template-columns: 185px 1fr 185px;
  gap: 8px;
  max-width: 1100px;
  margin: 10px auto;
  padding: 0 8px;
}

@media (max-width: 700px) {
  #main-wrap { grid-template-columns: 1fr; }
}

/* ── PANELS ── */
.panel {
  background: var(--panel);
  border: 1px solid #1a1a1a;
  margin-bottom: 8px;
  position: relative;
}

aside:first-child .panel:nth-child(1) { box-shadow: 0 0 18px rgba(204,0,255,0.12), inset 0 0 20px rgba(0,0,0,0.6); border-color: #2a0040; }
aside:first-child .panel:nth-child(2) { box-shadow: 0 0 18px rgba(57,255,20,0.10), inset 0 0 20px rgba(0,0,0,0.6);  border-color: #0a2a00; }
aside:first-child .panel:nth-child(3) { box-shadow: 0 0 18px rgba(0,207,255,0.10), inset 0 0 20px rgba(0,0,0,0.6);  border-color: #002a35; }
aside:first-child .panel:nth-child(4) { box-shadow: 0 0 18px rgba(255,0,153,0.10), inset 0 0 20px rgba(0,0,0,0.6);  border-color: #350020; }
aside:first-child .panel:nth-child(5) { box-shadow: 0 0 18px rgba(255,230,0,0.10), inset 0 0 20px rgba(0,0,0,0.6);  border-color: #2a2a00; }

aside:last-child .panel:nth-child(1)  { box-shadow: 0 0 18px rgba(204,0,255,0.12), inset 0 0 20px rgba(0,0,0,0.6); border-color: #2a0040; }
aside:last-child .panel:nth-child(2)  { box-shadow: 0 0 18px rgba(0,207,255,0.10), inset 0 0 20px rgba(0,0,0,0.6); border-color: #002a35; }
aside:last-child .panel:nth-child(3)  { box-shadow: 0 0 18px rgba(255,102,0,0.10), inset 0 0 20px rgba(0,0,0,0.6); border-color: #2a1000; }
aside:last-child .panel:nth-child(4)  { box-shadow: 0 0 18px rgba(57,255,20,0.10), inset 0 0 20px rgba(0,0,0,0.6);  border-color: #0a2a00; }

main .panel:nth-child(1) { box-shadow: 0 0 20px rgba(255,102,0,0.12),  inset 0 0 20px rgba(0,0,0,0.6); border-color: #2a1200; }
main .panel:nth-child(2) { box-shadow: 0 0 20px rgba(0,207,255,0.12),  inset 0 0 20px rgba(0,0,0,0.6); border-color: #00202a; }
main .panel:nth-child(3) { box-shadow: 0 0 20px rgba(255,0,153,0.12),  inset 0 0 20px rgba(0,0,0,0.6); border-color: #2a0020; }
main .panel:nth-child(4) { box-shadow: 0 0 20px rgba(57,255,20,0.12),  inset 0 0 20px rgba(0,0,0,0.6); border-color: #0a2000; }
main .panel:nth-child(5) { box-shadow: 0 0 20px rgba(255,230,0,0.12),  inset 0 0 20px rgba(0,0,0,0.6); border-color: #252500; }

.panel-title {
  font-family: 'Press Start 2P', monospace;
  font-size: 8px;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid #1a1a1a;
  letter-spacing: 1px;
}

.panel-title          { color: var(--orange); text-shadow: 0 0 8px var(--orange); border-bottom-color: #2a1200; }
.panel-title.purple   { color: var(--purple); text-shadow: 0 0 8px var(--purple); border-bottom-color: #2a0040; }
.panel-title.green    { color: var(--green);  text-shadow: 0 0 8px var(--green);  border-bottom-color: #0a2a00; }
.panel-title.blue     { color: var(--blue);   text-shadow: 0 0 8px var(--blue);   border-bottom-color: #002a35; }
.panel-title.pink     { color: var(--pink);   text-shadow: 0 0 8px var(--pink);   border-bottom-color: #2a0020; }
.panel-title.yellow   { color: var(--yellow); text-shadow: 0 0 8px var(--yellow); border-bottom-color: #252500; }
.panel-title.red      { color: var(--red);    text-shadow: 0 0 8px var(--red);    border-bottom-color: #2a0800; }

.panel-body { padding: 10px; font-size: 12px; line-height: 1.7; }

/* ── HIT COUNTER ── */
.hit-counter { display: flex; justify-content: center; gap: 3px; padding: 8px; }

.digit {
  background: #000;
  border: 1px solid #1a2a1a;
  color: var(--green);
  font-family: 'VT323', monospace;
  font-size: 30px;
  width: 26px;
  text-align: center;
  box-shadow: inset 0 0 8px rgba(57,255,20,0.25), 0 0 4px rgba(57,255,20,0.1);
}

/* ── WINAMP ── */
.winamp { background: #111; border: 1px solid #222; }

.winamp-titlebar {
  background: linear-gradient(90deg, #1a0030, #6600cc);
  color: #ddd;
  font-size: 10px;
  padding: 3px 6px;
  display: flex;
  justify-content: space-between;
  font-family: 'Share Tech Mono', monospace;
}

.winamp-screen {
  background: #000;
  color: var(--blue);
  font-family: 'VT323', monospace;
  font-size: 16px;
  padding: 6px 8px;
  min-height: 42px;
  border-top: 1px solid #111;
}

.winamp-track { white-space: nowrap; overflow: hidden; }
.winamp-track-inner { display: inline-block; animation: marquee 8s linear infinite; }
.winamp-time { color: #444; font-size: 12px; }
.winamp-controls { display: flex; justify-content: center; gap: 4px; padding: 6px; background: #0a0a0a; }

.winamp-btn {
  background: #1a1a1a;
  border: 1px solid #333;
  color: var(--purple);
  font-size: 12px;
  padding: 2px 6px;
  cursor: pointer;
}
.winamp-btn:hover { background: var(--purple); color: #000; }

.eq-bar-wrap {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 22px;
  padding: 0 8px 4px;
  background: #000;
}

.eq-bar {
  width: 4px;
  background: var(--purple);
  animation: eq-anim 0.4s ease-in-out infinite alternate;
  box-shadow: 0 0 4px var(--purple);
}

@keyframes eq-anim {
  from { height: var(--h-from); }
  to   { height: var(--h-to); }
}

/* ── BLINKIES ── */
.blinkies {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 8px;
}

.blinky {
  font-family: 'Press Start 2P', monospace;
  font-size: 6px;
  padding: 4px 6px;
  border: 2px solid;
  border-radius: 2px;
  letter-spacing: 1px;
  animation: blink-anim 1s step-start infinite;
}

@keyframes blink-anim { 50% { opacity: 0; } }

.b-pink   { color: var(--pink);   border-color: var(--pink);   background: rgba(255,0,153,0.12);  box-shadow: 0 0 8px rgba(255,0,153,0.3),  inset 0 0 4px rgba(255,0,153,0.1); }
.b-blue   { color: var(--blue);   border-color: var(--blue);   background: rgba(0,207,255,0.12);  box-shadow: 0 0 8px rgba(0,207,255,0.3),  inset 0 0 4px rgba(0,207,255,0.1); animation-delay: .4s; }
.b-green  { color: var(--green);  border-color: var(--green);  background: rgba(57,255,20,0.12);  box-shadow: 0 0 8px rgba(57,255,20,0.3),  inset 0 0 4px rgba(57,255,20,0.1);  animation-delay: .8s; }
.b-yellow { color: var(--yellow); border-color: var(--yellow); background: rgba(255,230,0,0.12);  box-shadow: 0 0 8px rgba(255,230,0,0.3),  inset 0 0 4px rgba(255,230,0,0.1);  animation-delay: .2s; }
.b-purple { color: var(--purple); border-color: var(--purple); background: rgba(204,0,255,0.12);  box-shadow: 0 0 8px rgba(204,0,255,0.3),  inset 0 0 4px rgba(204,0,255,0.1);  animation-delay: .6s; }
.b-orange { color: var(--orange); border-color: var(--orange); background: rgba(255,102,0,0.12);  box-shadow: 0 0 8px rgba(255,102,0,0.3),  inset 0 0 4px rgba(255,102,0,0.1);  animation-delay: 1s; }

/* ── 88x31 BUTTONS ── */
.btn-grid { display: grid; grid-template-columns: repeat(2, 88px); gap: 3px; padding: 8px; }

.btn88 {
  display: inline-block;
  width: 88px; height: 31px;
  font-family: 'Press Start 2P', monospace;
  font-size: 5px;
  text-align: center;
  line-height: 31px;
  border: 1px solid;
  cursor: pointer;
  transition: all 0.1s;
}
.btn88:hover { filter: brightness(1.4); transform: scale(1.05); }

/* ── SECTION HEADINGS ── */
.section-heading {
  font-family: 'Permanent Marker', cursive;
  font-size: 18px;
  border-bottom: 1px dashed #222;
  padding-bottom: 6px;
  margin-bottom: 12px;
}

main .panel:nth-child(1) .section-heading { color: var(--orange); }
main .panel:nth-child(2) .section-heading { color: var(--blue); }
main .panel:nth-child(3) .section-heading { color: var(--pink); }
main .panel:nth-child(4) .section-heading { color: var(--green); }
main .panel:nth-child(5) .section-heading { color: var(--yellow); }

/* ── PHOTO GRID ── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: 10px;
}

.photo-slot {
  aspect-ratio: 1;
  background: #060608;
  border: 1px solid #1a1a2a;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #222;
  position: relative; overflow: hidden;
  cursor: zoom-in;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.photo-slot:hover {
  border-color: var(--pink);
  box-shadow: 0 0 14px rgba(255,0,153,0.35);
}

.photo-slot img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: filter 0.15s ease;
  cursor: zoom-in;
}

.photo-slot img:hover { filter: invert(1) !important; }
.photo-slot img.glitching { animation: glitch-photo 0.35s steps(1) forwards; }
.photo-slot.empty { color: #222; font-size: 22px; }
.photo-slot.loading::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 25%, rgba(204,0,255,0.07) 50%, transparent 75%);
  animation: shimmer 1.4s infinite;
}

@keyframes shimmer { from { transform: translateX(-100%); } to { transform: translateX(100%); } }

.photo-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.88);
  font-size: 9px; text-align: center; padding: 3px;
  color: #555; opacity: 0; transition: opacity 0.2s;
}
.photo-slot:hover .photo-label { opacity: 1; }

/* ── GLITCH ── */
@keyframes glitch-photo {
  0%   { transform: none; filter: none; clip-path: none; }
  15%  {
    transform: translate(-3px, 0) skewX(-4deg);
    filter: hue-rotate(80deg) saturate(3) brightness(1.3)
            drop-shadow(3px 0 0 rgba(255,0,153,0.8)) drop-shadow(-3px 0 0 rgba(0,207,255,0.7));
    clip-path: polygon(0 8%, 100% 8%, 100% 26%, 0 26%);
  }
  30%  {
    transform: translate(4px, 0);
    filter: hue-rotate(-80deg) saturate(2) drop-shadow(-4px 0 0 rgba(204,0,255,0.9));
    clip-path: polygon(0 52%, 100% 52%, 100% 70%, 0 70%);
  }
  50%  {
    transform: translate(-1px, 2px) skewX(2deg);
    filter: brightness(2.2) contrast(2.5) saturate(0);
    clip-path: none;
  }
  75%  {
    transform: translate(2px, 0);
    filter: hue-rotate(200deg) saturate(4) drop-shadow(2px 0 0 rgba(57,255,20,0.9));
  }
  100% { transform: none; filter: none; clip-path: none; }
}

/* ── BLOG ── */
.blog-entry {
  border-left: 2px solid var(--yellow);
  padding: 6px 10px;
  margin-bottom: 14px;
}

.blog-entry .date {
  font-family: 'VT323', monospace;
  font-size: 18px;
  color: var(--yellow);
}

.blog-entry h3 {
  font-family: 'Permanent Marker', cursive;
  font-size: 16px;
  color: var(--orange);
  margin: 2px 0 4px;
}

.blog-entry p { color: #888; font-size: 12px; line-height: 1.8; }

/* ── PROJECTS ── */
.project-card {
  background: rgba(57,255,20,0.03);
  border: 1px solid #0a1a0a;
  border-left: 3px solid var(--green);
  padding: 10px;
  margin-bottom: 8px;
}

.project-card h3 {
  font-family: 'Press Start 2P', monospace;
  font-size: 8px;
  color: var(--green);
  text-shadow: 0 0 6px var(--green);
  margin-bottom: 6px;
}

.project-card p { color: #666; font-size: 11px; line-height: 1.6; }
.project-card .tags { margin-top: 6px; }

.tag {
  display: inline-block;
  font-size: 9px;
  padding: 2px 6px;
  margin-right: 3px;
  background: rgba(57,255,20,0.08);
  border: 1px solid var(--green);
  color: var(--green);
}

/* ── STATUS ── */
.status-box { display: flex; align-items: center; gap: 8px; padding: 8px; }

.status-avatar {
  width: 50px; height: 50px;
  background: #050508;
  border: 2px solid var(--purple);
  box-shadow: 0 0 10px rgba(204,0,255,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; flex-shrink: 0;
}

.status-text { font-size: 11px; color: #666; }
.status-text .online { color: var(--green); text-shadow: 0 0 6px var(--green); }
.status-text .handle { color: var(--pink); font-family: 'VT323', monospace; font-size: 20px; }

/* ── UNDER CONSTRUCTION ── */
.under-construction {
  text-align: center;
  font-family: 'Press Start 2P', monospace;
  font-size: 8px;
  padding: 12px;
  color: var(--yellow);
  text-shadow: 0 0 8px var(--yellow);
  animation: blink-anim 0.9s step-start infinite;
}

/* ── ABOUT ── */
.about-intro {
  font-family: 'Permanent Marker', cursive;
  font-size: 26px;
  color: var(--orange);
  text-shadow: 0 0 14px rgba(255,102,0,0.5);
  margin-bottom: 8px;
}

/* ── STAR BLINK ── */
.star-blink { animation: blink-anim 1.5s step-start infinite; }

/* ── FOOTER ── */
footer {
  max-width: 1100px;
  margin: 0 auto 24px;
  padding: 12px 8px;
  text-align: center;
  border-top: 1px solid #111;
}

.footer-text { font-family: 'VT323', monospace; font-size: 18px; color: #333; }
.footer-text span { color: var(--orange); }

/* ── CURSOR TRAIL ── */
.cursor-dot {
  position: fixed;
  width: 6px; height: 6px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
}

/* ── LIGHTBOX ── */
#lightbox {
  position: fixed; inset: 0; z-index: 50000;
  display: flex; align-items: center; justify-content: center;
  visibility: hidden; opacity: 0;
  transition: opacity 0.2s, visibility 0.2s;
}

#lightbox.open { visibility: visible; opacity: 1; }

#lb-backdrop { position: absolute; inset: 0; background: rgba(2,1,4,0.96); cursor: pointer; }

#lb-img-wrap {
  position: relative; z-index: 1;
  max-width: 90vw; max-height: 90vh;
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
}

#lb-img {
  max-width: 100%; max-height: 78vh;
  object-fit: contain; display: block;
  border: 1px solid #2a0040;
  box-shadow: 0 0 50px rgba(204,0,255,0.2), 0 0 100px rgba(0,0,0,0.9);
  animation: none !important;
  transition: filter 0.15s;
}

#lb-img:hover { filter: invert(1); }

#lb-label { font-family: 'VT323', monospace; font-size: 20px; color: #666; letter-spacing: 2px; }
#lb-counter { font-family: 'Press Start 2P', monospace; font-size: 8px; color: #333; }

.lb-btn {
  position: absolute; top: 50%; transform: translateY(-60%); z-index: 2;
  background: rgba(10,0,20,0.9);
  border: 1px solid var(--purple);
  color: var(--purple);
  font-family: 'Press Start 2P', monospace;
  font-size: 12px; padding: 16px 10px; cursor: pointer;
  transition: all 0.1s;
}

.lb-btn:hover { background: var(--purple); color: #fff; box-shadow: 0 0 16px var(--purple); }
#lb-prev { left: -58px; }
#lb-next { right: -58px; }

#lb-close {
  position: absolute; top: -38px; right: 0; z-index: 2;
  background: none; border: 1px solid #333; color: #555;
  font-family: 'Press Start 2P', monospace; font-size: 8px;
  padding: 5px 8px; cursor: pointer;
}

#lb-close:hover { border-color: var(--pink); color: var(--pink); }

#lb-glitch-bar {
  position: absolute; left: 0; right: 0; height: 2px;
  background: var(--pink); opacity: 0; pointer-events: none;
}

/* ── COOL STUFF ── */
.cs-label {
  font-family: 'Press Start 2P', monospace;
  font-size: 7px;
  letter-spacing: 1px;
  border-left: 2px solid;
  padding-left: 6px;
  margin-bottom: 8px;
}

.cs-video { margin-bottom: 12px; }
.cs-video-title { font-size: 12px; color: var(--pink); margin-bottom: 2px; }
.cs-video-note  { font-size: 11px; color: #555; margin-bottom: 6px; }

.cs-yt-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
  border: 1px solid #2a0020;
}

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

.cs-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: 4px;
}

.cs-img-slot {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  border: 1px solid #0a2a00;
  background: #050508;
}

.cs-img-slot img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: filter 0.15s;
}

.cs-img-slot:hover img { filter: invert(1); }
.cs-img-slot:hover { border-color: var(--green); box-shadow: 0 0 12px rgba(57,255,20,0.3); }

.cs-img-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.88);
  font-size: 9px; color: #555; text-align: center;
  padding: 3px; opacity: 0; transition: opacity 0.2s;
}

.cs-img-slot:hover .cs-img-caption { opacity: 1; }

.cs-game-card {
  display: block;
  text-decoration: none;
  margin-bottom: 8px;
}

.cs-game-banner {
  position: relative;
  border: 1px solid #002a35;
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.cs-game-card:hover .cs-game-banner {
  border-color: var(--blue);
  box-shadow: 0 0 16px rgba(0,207,255,0.25);
}

.cs-game-banner-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  opacity: 0.35;
}

.cs-game-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 100%);
}

.cs-game-info {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
  z-index: 1;
}

.cs-game-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  border: 1px solid rgba(0,207,255,0.2);
  overflow: hidden;
}

.cs-game-title {
  font-family: 'Press Start 2P', monospace;
  font-size: 8px;
  color: var(--blue);
  text-shadow: 0 0 8px var(--blue);
  margin-bottom: 3px;
}

.cs-game-dev  { font-size: 10px; color: #555; margin-bottom: 4px; }
.cs-game-desc { font-size: 11px; color: #888; line-height: 1.6; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #030303; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--pink), var(--purple));
  border: 1px solid #1a1a1a;
}

@media (max-width: 768px) {
  .lil-guy { display: none; }
}
