/* ============================================================
   VROOM — Post-Internet Kicks · Seoul
   Y2K Futurism · Chrome Desktop OS
   ============================================================ */

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
html { scroll-behavior: smooth; }
body {
  font-family: 'VT323', ui-monospace, monospace;
  font-size: 18px;
  line-height: 1.35;
  color: #0a0e1a;
  background: #b9bfc6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22'><defs><linearGradient id='g' x1='0' y1='0' x2='0' y2='1'><stop offset='0%25' stop-color='%23f6f7f9'/><stop offset='40%25' stop-color='%23c8cdd3'/><stop offset='60%25' stop-color='%238a9099'/><stop offset='100%25' stop-color='%23dfe3e8'/></linearGradient></defs><path d='M2 1 L2 18 L7 13 L10 20 L13 19 L10 12 L17 12 Z' fill='url(%23g)' stroke='%230a0e1a' stroke-width='1.2' stroke-linejoin='round'/></svg>") 2 1, default;
}

a, button, .window-titlebar, .taskbar-btn, .window-btn, .desktop-icon, .product-card, .taskbar-chip {
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 26 26'><defs><linearGradient id='gh' x1='0' y1='0' x2='0' y2='1'><stop offset='0%25' stop-color='%23ffffff'/><stop offset='45%25' stop-color='%2300f0ff'/><stop offset='100%25' stop-color='%23006a78'/></linearGradient></defs><circle cx='8' cy='4' r='2.4' fill='%23ffffff' stroke='%230a0e1a' stroke-width='0.8'/><path d='M3 8 L3 22 L8 17 L11 24 L14 23 L11 16 L18 16 Z' fill='url(%23gh)' stroke='%230a0e1a' stroke-width='1.2' stroke-linejoin='round'/></svg>") 3 2, pointer;
}

::selection { background: #00f0ff; color: #0a0e1a; }

/* ---------- Fonts ---------- */
.f-bungee { font-family: 'Bungee', system-ui, sans-serif; font-weight: 400; letter-spacing: -0.01em; }
.f-mono   { font-family: 'Space Mono', ui-monospace, monospace; }
.f-pixel  { font-family: 'VT323', ui-monospace, monospace; }

/* ---------- Chrome desktop background ---------- */
.desktop {
  position: relative;
  min-height: 100vh;
  padding: 24px 24px 96px;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,0.55), transparent 50%),
    radial-gradient(circle at 80% 90%, rgba(255,255,255,0.35), transparent 60%),
    linear-gradient(180deg, #d8dce2 0%, #c8cdd3 35%, #b6bcc4 70%, #cad0d6 100%);
}

.desktop::before {
  /* brushed-metal noise */
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.55 0 0 0 0 0.58 0 0 0 0 0.62 0 0 0 0.45 0'/></filter><rect width='240' height='240' filter='url(%23n)' opacity='0.55'/></svg>");
  background-size: 240px 240px;
  mix-blend-mode: overlay;
  opacity: 0.55;
}

/* horizontal brushed lines */
.desktop::after {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(0deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
}

/* ---------- CRT scanline overlay (fixed, viewport-wide) ---------- */
.crt-overlay {
  position: fixed; inset: 0; z-index: 9000; pointer-events: none;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(0,0,0,0.05) 0 1px,
    transparent 1px 4px
  );
  mix-blend-mode: multiply;
}
.crt-overlay::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}
.crt-flicker {
  position: fixed; inset: 0; z-index: 9001; pointer-events: none;
  background: linear-gradient(180deg, rgba(0,240,255,0.04), transparent 8%);
  animation: flicker 7s infinite linear;
  opacity: 0.4;
}
@keyframes flicker {
  0%, 96%, 100% { opacity: 0.4; }
  97% { opacity: 0.1; }
  98% { opacity: 0.7; }
  99% { opacity: 0.2; }
}

/* ---------- Cursor trail dot ---------- */
.cursor-trail {
  position: fixed; width: 10px; height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff 0%, #c8cdd3 45%, #6b7079 100%);
  box-shadow: 0 0 0 1px #0a0e1a, 0 0 6px rgba(0,240,255,0.35);
  pointer-events: none;
  z-index: 9500;
  transform: translate(-50%, -50%);
  animation: trailFade 900ms ease-out forwards;
}
@keyframes trailFade {
  0%   { opacity: 0.9; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0;   transform: translate(-50%, -50%) scale(0.2); }
}

/* ===============================================================
   CHROME BEZEL WINDOW SYSTEM
   =============================================================== */
.win {
  position: relative;
  background: linear-gradient(180deg, #f6f7f9 0%, #d4d8de 45%, #aab0b9 100%);
  border: 1.5px solid #0a0e1a;
  box-shadow:
    inset 1px 1px 0 #ffffff,
    inset -1px -1px 0 #6b7079,
    0 8px 24px rgba(10,14,26,0.25),
    0 2px 4px rgba(10,14,26,0.15);
  border-radius: 4px;
}
.win.is-active { box-shadow: inset 1px 1px 0 #ffffff, inset -1px -1px 0 #6b7079, 0 0 0 1.5px #00f0ff, 0 10px 28px rgba(10,14,26,0.32); }

.win-titlebar {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 10px;
  background:
    linear-gradient(180deg, #d8dce2 0%, #b8bec5 50%, #9aa0a9 100%);
  border-bottom: 1.5px solid #0a0e1a;
  position: relative;
  user-select: none;
  font-family: 'Space Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.win-titlebar::after {
  content: "";
  position: absolute; left: 0; right: 0; top: 2px;
  height: 1px; background: rgba(255,255,255,0.5);
}

.win-dots { display: flex; gap: 6px; align-items: center; }
.win-dot {
  width: 12px; height: 12px; border-radius: 50%;
  border: 1px solid rgba(10,14,26,0.55);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}
.win-dot.red    { background: radial-gradient(circle at 30% 30%, #ff8a8a, #d12121); }
.win-dot.yellow { background: radial-gradient(circle at 30% 30%, #ffe488, #c8a214); }
.win-dot.green  { background: radial-gradient(circle at 30% 30%, #a8f3a3, #1d8a25); }

.win-title {
  flex: 1; text-align: center;
  font-weight: 700;
  color: #0a0e1a;
  text-shadow: 0 1px 0 rgba(255,255,255,0.6);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.win-controls { display: flex; gap: 4px; }
.win-btn {
  width: 18px; height: 16px;
  background: linear-gradient(180deg, #f0f2f5, #b8bec5);
  border: 1px solid #0a0e1a;
  font-family: 'Space Mono', monospace; font-size: 10px;
  line-height: 1; color: #0a0e1a;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0;
}
.win-btn:hover { background: linear-gradient(180deg, #c2ecf2, #00f0ff); }
.win-body { padding: 16px; background: #ffffff; }

.win.closing {
  animation: closeWin 0.35s ease forwards;
  pointer-events: none;
}
@keyframes closeWin {
  0%   { transform: scale(1) rotate(0deg); opacity: 1; }
  50%  { transform: scale(0.7) rotate(-8deg); opacity: 0.7; }
  100% { transform: scale(0) rotate(40deg); opacity: 0; }
}

.win.minimizing {
  animation: minWin 0.4s ease forwards;
  pointer-events: none;
}
@keyframes minWin {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: translateY(80vh) scale(0.04); opacity: 0; }
}

.deleted-badge {
  position: fixed;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  background: #0a0e1a; color: #ff2ea0;
  padding: 6px 10px;
  border: 1.5px solid #ff2ea0;
  box-shadow: 0 0 0 1px #0a0e1a, 0 6px 16px rgba(0,0,0,0.4);
  z-index: 9100;
  animation: driftDown 1.4s ease-out forwards;
  pointer-events: none;
}
@keyframes driftDown {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(160px); opacity: 0; }
}

/* ===============================================================
   TASKBAR
   =============================================================== */
.taskbar {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 8000;
  display: flex; align-items: stretch;
  height: 56px;
  background: linear-gradient(180deg, #e2e6eb 0%, #b8bec5 40%, #8a9099 100%);
  border-top: 2px solid #0a0e1a;
  box-shadow:
    inset 0 1px 0 #ffffff,
    inset 0 -1px 0 #6b7079,
    0 -4px 12px rgba(0,0,0,0.2);
  font-family: 'Space Mono', monospace;
  font-size: 11px;
}
.taskbar-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 16px;
  background: linear-gradient(180deg, #f4f6f8 0%, #c8cdd3 100%);
  border: 1.5px solid #0a0e1a;
  border-bottom: none; border-top: none;
  font-family: 'Bungee', sans-serif; font-size: 14px;
  letter-spacing: 0.05em;
  color: #0a0e1a;
  text-decoration: none;
  position: relative;
  text-shadow: 0 1px 0 rgba(255,255,255,0.7);
}
.taskbar-btn .bullet {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, #ff2ea0 60%, #6a0c40);
  box-shadow: 0 0 6px #ff2ea0;
}
.taskbar-btn:hover { background: linear-gradient(180deg, #fff, #00f0ff); }

.taskbar-marquee {
  flex: 1;
  overflow: hidden;
  position: relative;
  border-left: 1.5px solid #6b7079;
  border-right: 1.5px solid #6b7079;
  background: linear-gradient(180deg, #d4d8de, #aab0b9);
  display: flex; align-items: center;
}
.taskbar-marquee::before, .taskbar-marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 40px; z-index: 2;
  pointer-events: none;
}
.taskbar-marquee::before { left: 0; background: linear-gradient(90deg, #c8cdd3, transparent); }
.taskbar-marquee::after  { right: 0; background: linear-gradient(270deg, #c8cdd3, transparent); }
.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #0a0e1a;
  text-shadow: 0 1px 0 rgba(255,255,255,0.6);
}
.marquee-track span { padding: 0 24px; }
.marquee-track .accent { color: #ff2ea0; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.taskbar-chips {
  display: flex; gap: 4px; align-items: center;
  padding: 0 10px;
  border-left: 1.5px solid #6b7079;
}
.taskbar-chip {
  display: inline-flex; align-items: center; gap: 4px;
  height: 30px; padding: 0 8px;
  background: linear-gradient(180deg, #f0f2f5, #c8cdd3);
  border: 1.5px solid #0a0e1a;
  font-family: 'Space Mono', monospace; font-size: 10px;
  letter-spacing: 0.05em; text-transform: uppercase;
  max-width: 160px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.taskbar-chip:hover { background: linear-gradient(180deg, #fff, #00f0ff); }
.taskbar-chip .dot { width: 6px; height: 6px; background: #1d8a25; border-radius: 50%; box-shadow: 0 0 6px #1d8a25; }

.taskbar-right {
  display: flex; align-items: center; gap: 8px;
  padding: 0 12px;
  border-left: 1.5px solid #6b7079;
  background: linear-gradient(180deg, #d4d8de, #aab0b9);
}
.taskbar-clock {
  font-family: 'Space Mono', monospace; font-weight: 700; font-size: 12px;
  letter-spacing: 0.06em;
  color: #0a0e1a;
  background: linear-gradient(180deg, #c8cdd3, #8a9099);
  border: 1.5px inset #6b7079;
  padding: 6px 10px;
  min-width: 92px; text-align: center;
}
.taskbar-cart {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(180deg, #f0f2f5, #c8cdd3);
  border: 1.5px solid #0a0e1a;
  padding: 6px 10px;
  font-family: 'Space Mono', monospace; font-size: 11px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: #0a0e1a; text-decoration: none;
}
.taskbar-cart:hover { background: linear-gradient(180deg, #fff, #00f0ff); }
.cart-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 18px; height: 18px;
  background: #ff2ea0; color: #fff;
  border-radius: 9px;
  font-size: 10px; font-weight: 700;
  padding: 0 5px;
  box-shadow: 0 0 0 1px #0a0e1a;
}

/* ===============================================================
   HERO — main browser window + scattered preview windows
   =============================================================== */
.hero-stage {
  position: relative;
  min-height: calc(100vh - 24px);
  display: flex; align-items: center; justify-content: center;
  padding: 40px 0;
}

.hero-main {
  position: relative;
  width: min(1180px, 96vw);
  /* shift slightly off-axis: 12px right, 8px down */
  transform: translate(12px, 8px);
  z-index: 4;
}

.hero-main .win-body {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  padding: 28px 32px 32px;
  position: relative;
}

.hero-headline {
  font-family: 'Bungee', sans-serif;
  font-size: clamp(54px, 14vw, 196px);
  line-height: 0.86;
  color: #0a0e1a;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.hero-headline .magenta {
  color: #ff2ea0;
  text-shadow:
    2px 2px 0 #0a0e1a,
    -1px -1px 0 #fff;
  display: inline-block;
  transform: skewX(-4deg);
}
.hero-headline .stroke {
  -webkit-text-stroke: 2px #0a0e1a;
  color: transparent;
  text-shadow: 2px 2px 0 #00f0ff;
}

.hero-meta {
  display: flex; flex-direction: column; gap: 14px;
  margin-top: 18px;
  font-family: 'VT323', monospace;
  font-size: 18px;
  color: #0a0e1a;
}
.hero-meta .tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: #0a0e1a; color: #00f0ff;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 10px; width: max-content;
  border: 1.5px solid #0a0e1a;
  box-shadow: 3px 3px 0 #ff2ea0;
}
.hero-meta .row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-meta .chunk {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.08em;
  background: #fff;
  border: 1.5px solid #0a0e1a;
  padding: 6px 10px;
}
.hero-meta .chunk strong { color: #ff2ea0; }

.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 6px;
  font-family: 'Bungee', sans-serif;
  background: linear-gradient(180deg, #f4f6f8 0%, #c8cdd3 50%, #aab0b9 100%);
  border: 1.5px solid #0a0e1a;
  padding: 12px 18px;
  font-size: 16px; letter-spacing: 0.04em;
  color: #0a0e1a; text-decoration: none;
  box-shadow:
    inset 1px 1px 0 #fff,
    inset -1px -1px 0 #6b7079,
    4px 4px 0 #0a0e1a;
  text-transform: uppercase;
}
.hero-cta:hover {
  background: linear-gradient(180deg, #c8f7ff, #00f0ff);
  transform: translate(-2px, -2px);
  box-shadow:
    inset 1px 1px 0 #fff,
    inset -1px -1px 0 #6b7079,
    6px 6px 0 #0a0e1a;
}

.hero-shoe-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 380px;
  background:
    radial-gradient(circle at 50% 50%, #fff 0%, #e2e6eb 55%, #b6bcc4 100%);
  border: 1.5px solid #0a0e1a;
  overflow: hidden;
}
.hero-shoe-stage::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(0,0,0,0.05) 0 1px, transparent 1px 4px);
  pointer-events: none;
}
.hero-shoe {
  width: 88%;
  animation: rotateSlow 40s linear infinite;
  filter: drop-shadow(2px 6px 14px rgba(0,0,0,0.35));
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.hero-shoe-stage .specs {
  position: absolute;
  bottom: 8px; left: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0a0e1a;
  background: rgba(255,255,255,0.78);
  border: 1.5px solid #0a0e1a;
  padding: 4px 8px;
}
.hero-shoe-stage .qr {
  position: absolute;
  top: 8px; right: 8px;
  width: 56px; height: 56px;
  background: #fff;
  border: 1.5px solid #0a0e1a;
  padding: 4px;
}

/* status strip under main hero */
.hero-statusbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
  padding: 8px 14px;
  background: linear-gradient(180deg, #d4d8de, #aab0b9);
  border-top: 1.5px solid #6b7079;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-statusbar .seg { display: inline-flex; align-items: center; gap: 6px; }
.hero-statusbar .seg .led { width: 8px; height: 8px; background: #00f0ff; box-shadow: 0 0 8px #00f0ff; border: 1px solid #0a0e1a; }
.hero-statusbar .seg .led.pink { background: #ff2ea0; box-shadow: 0 0 8px #ff2ea0; }

/* scattered preview windows */
.preview-window {
  position: absolute;
  width: 220px;
  z-index: 3;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.preview-window:hover {
  transform: scale(1.04) rotate(0deg) !important;
  z-index: 6;
}
.preview-window .win-body { padding: 10px; }
.preview-window .preview-shoe {
  aspect-ratio: 4/3;
  width: 100%;
  background: radial-gradient(circle at 50% 50%, #fff, #c8cdd3 100%);
  border: 1.5px solid #0a0e1a;
  overflow: hidden;
  display: grid; place-items: center;
  position: relative;
}
.preview-window .preview-shoe::after {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(0,0,0,0.06) 0 1px, transparent 1px 3px);
  pointer-events: none;
}
.preview-window .preview-shoe svg { width: 78%; filter: drop-shadow(1px 3px 6px rgba(0,0,0,0.3)); }
.preview-window .preview-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 6px;
  font-family: 'Space Mono', monospace; font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.preview-window .preview-meta .px { color: #ff2ea0; }

.preview-window.p1 { top: 4%;  left: 1%;  transform: rotate(-3deg); }
.preview-window.p2 { top: 8%;  right: 1%; transform: rotate(4deg); width: 240px; }
.preview-window.p3 { bottom: 6%; left: 4%; transform: rotate(-2deg); width: 200px; }

/* ===============================================================
   SECTION TITLES (desktop section labels)
   =============================================================== */
.section {
  position: relative;
  padding: 80px 0 40px;
  margin: 0 auto;
  width: min(1240px, 96vw);
}
.section-label {
  display: flex; align-items: center; gap: 14px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0a0e1a;
  margin-bottom: 14px;
}
.section-label .line { flex: 1; height: 2px; background: #0a0e1a; }
.section-label .tag {
  background: #0a0e1a; color: #00f0ff;
  padding: 4px 10px;
  border: 1.5px solid #0a0e1a;
  box-shadow: 3px 3px 0 #ff2ea0;
}
.section-title {
  font-family: 'Bungee', sans-serif;
  font-size: clamp(40px, 7vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #0a0e1a;
  margin-bottom: 24px;
}
.section-title .accent { color: #ff2ea0; }

/* ===============================================================
   DRAGGABLE PRODUCT WINDOWS GRID
   =============================================================== */
.drop-canvas {
  position: relative;
  height: 1280px;
  margin: 16px 0 0;
  border: 2px dashed rgba(10,14,26,0.25);
  background:
    repeating-linear-gradient(0deg, rgba(10,14,26,0.06) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(90deg, rgba(10,14,26,0.06) 0 1px, transparent 1px 28px);
}
.drop-canvas .canvas-hint {
  position: absolute; left: 14px; top: 14px;
  font-family: 'Space Mono', monospace; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(10,14,26,0.55);
  pointer-events: none;
}

.product-window {
  position: absolute;
  width: 360px;
  user-select: none;
  z-index: 5;
}
.product-window .win-body { padding: 0; }
.product-hero-img {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
  background: #c8cdd3;
  border-bottom: 1.5px solid #0a0e1a;
}
.product-hero-img img { width:100%; height:100%; object-fit:cover; display:block; }
.product-hero-img::after {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(0,0,0,0.07) 0 1px, transparent 1px 4px);
  pointer-events: none;
}
.product-hero-img .px-badge {
  position: absolute; top: 8px; left: 8px;
  background: #0a0e1a; color: #00f0ff;
  font-family: 'Space Mono', monospace; font-size: 10px;
  letter-spacing: 0.1em; padding: 4px 6px;
  border: 1.5px solid #0a0e1a;
}
.product-hero-img .px-badge.pink { color: #ff2ea0; }

.product-info {
  padding: 12px 14px 14px;
  background: #fff;
}
.product-info h3 {
  font-family: 'Bungee', sans-serif;
  font-size: 22px; line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.product-info .sub {
  font-family: 'VT323', monospace;
  font-size: 16px; color: #0a0e1a;
  margin-top: 4px;
}
.product-info .meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 10px;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.product-info .price {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 16px;
}
.product-info .add {
  background: linear-gradient(180deg, #f4f6f8 0%, #c8cdd3 50%, #aab0b9 100%);
  border: 1.5px solid #0a0e1a;
  padding: 6px 10px;
  font-family: 'Space Mono', monospace;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #0a0e1a; text-decoration: none;
  box-shadow: 2px 2px 0 #0a0e1a;
}
.product-info .add:hover {
  background: linear-gradient(180deg, #c8f7ff, #00f0ff);
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 #0a0e1a;
}
.product-info .view {
  font-family: 'Space Mono', monospace;
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em;
  color: #0a0e1a; text-decoration: underline;
}

/* ===============================================================
   STORY (readme.txt) WINDOW
   =============================================================== */
.story-win .win-body {
  background: #ffffff;
  padding: 0;
}
.story-win .editor-toolbar {
  display: flex; gap: 12px; align-items: center;
  padding: 6px 12px;
  background: linear-gradient(180deg, #e2e6eb, #c8cdd3);
  border-bottom: 1.5px solid #0a0e1a;
  font-family: 'Space Mono', monospace;
  font-size: 10px; letter-spacing: 0.08em;
  text-transform: uppercase;
}
.story-win .editor-toolbar span {
  border: 1.5px outset #c8cdd3;
  padding: 2px 6px;
  background: #c8cdd3;
}
.story-win .editor-area {
  display: grid;
  grid-template-columns: 36px 1fr;
  min-height: 540px;
}
.line-numbers {
  background: #f1f3f5;
  border-right: 1.5px solid #c8cdd3;
  padding: 18px 6px;
  text-align: right;
  font-family: 'Space Mono', monospace;
  font-size: 13px; color: #6b7079;
  line-height: 1.7;
}
.line-numbers span { display: block; }
.editor-body {
  padding: 18px 22px;
  font-family: 'VT323', monospace;
  font-size: 19px; line-height: 1.7;
  color: #0a0e1a;
}
.editor-body h2 {
  font-family: 'Bungee', sans-serif;
  font-size: 32px; line-height: 1;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.editor-body .ascii {
  font-family: 'Space Mono', monospace;
  font-size: 13px; color: #6b7079; white-space: pre;
  margin: 10px 0;
}
.editor-body p { margin-bottom: 12px; max-width: 70ch; }
.editor-body .blink { color: #ff2ea0; animation: blink 1s steps(1, end) infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* ===============================================================
   MEDIA ARCHIVE (Windows Explorer style)
   =============================================================== */
.archive-win .win-body { padding: 0; }
.archive-toolbar {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 10px;
  background: linear-gradient(180deg, #e2e6eb, #c8cdd3);
  border-bottom: 1.5px solid #0a0e1a;
}
.archive-toolbar .tb-btn {
  display: inline-flex; align-items: center; gap: 4px;
  background: linear-gradient(180deg, #f4f6f8, #c8cdd3);
  border: 1.5px solid #0a0e1a;
  padding: 2px 8px;
  font-family: 'Space Mono', monospace;
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em;
}
.archive-toolbar .path {
  flex: 1;
  background: #fff;
  border: 1.5px inset #c8cdd3;
  padding: 4px 8px;
  font-family: 'Space Mono', monospace; font-size: 11px;
}
.archive-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.archive-table thead th {
  text-align: left;
  background: linear-gradient(180deg, #e2e6eb, #c8cdd3);
  border-bottom: 1.5px solid #0a0e1a;
  border-right: 1px solid #c8cdd3;
  padding: 6px 10px;
  font-family: 'Space Mono', monospace;
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
}
.archive-table tbody td {
  padding: 8px 10px;
  border-bottom: 1px dashed #c8cdd3;
  font-family: 'VT323', monospace; font-size: 17px;
}
.archive-table tbody tr { cursor: pointer; }
.archive-table tbody tr:hover { background: #e8f9ff; }
.archive-table tbody tr.is-open { background: #00f0ff; }
.archive-table .file-name { display: inline-flex; align-items: center; gap: 8px; }
.archive-table .file-icon {
  width: 18px; height: 22px; background: #fff;
  border: 1.5px solid #0a0e1a;
  position: relative;
  box-shadow: inset 0 -3px 0 #00f0ff;
}
.archive-table .file-icon::before {
  content: "";
  position: absolute; top: 0; right: 0;
  width: 7px; height: 7px;
  background: linear-gradient(135deg, transparent 50%, #0a0e1a 50%);
  border-left: 1.5px solid #0a0e1a;
  border-bottom: 1.5px solid #0a0e1a;
}
.archive-table .file-name.pink .file-icon { box-shadow: inset 0 -3px 0 #ff2ea0; }

.archive-reader {
  margin-top: 20px;
}
.archive-reader .win-body {
  padding: 20px 24px;
  font-family: 'VT323', monospace;
  font-size: 18px; line-height: 1.6;
  background: #fff;
  min-height: 280px;
}
.archive-reader h3 {
  font-family: 'Bungee', sans-serif;
  font-size: 22px; margin-bottom: 12px;
  text-transform: uppercase;
}
.archive-reader .article-meta {
  font-family: 'Space Mono', monospace;
  font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: #6b7079;
  border-bottom: 1.5px dashed #c8cdd3;
  padding-bottom: 8px; margin-bottom: 14px;
}
.archive-reader p { margin-bottom: 10px; max-width: 70ch; }

/* ===============================================================
   NEWSLETTER (subscribe.exe popup)
   =============================================================== */
.newsletter-stage {
  position: relative;
  min-height: 460px;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(0,240,255,0.18), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255,46,160,0.18), transparent 50%),
    linear-gradient(180deg, #d8dce2, #b6bcc4);
  border: 1.5px solid #0a0e1a;
  overflow: hidden;
}
.newsletter-stage::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(0,0,0,0.05) 0 1px, transparent 1px 4px);
  pointer-events: none;
}
.subscribe-popup {
  width: min(520px, 92%);
  z-index: 4;
  position: relative;
  transform: rotate(-1.2deg);
}
.subscribe-popup .win-body {
  padding: 22px 24px 24px;
  text-align: center;
}
.subscribe-popup .icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  background: linear-gradient(180deg, #f4f6f8, #c8cdd3);
  border: 1.5px solid #0a0e1a;
  margin-bottom: 12px;
  font-family: 'Bungee', sans-serif; font-size: 30px;
  color: #ff2ea0;
  box-shadow: inset 1px 1px 0 #fff, inset -1px -1px 0 #6b7079, 3px 3px 0 #0a0e1a;
}
.subscribe-popup h3 {
  font-family: 'Bungee', sans-serif;
  font-size: 28px; line-height: 1;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.subscribe-popup p {
  font-family: 'VT323', monospace;
  font-size: 18px; color: #0a0e1a;
  margin-bottom: 14px;
}
.sub-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 8px;
}
.sub-form input {
  width: 100%;
  border: 1.5px inset #6b7079;
  background: #f1f3f5;
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  padding: 10px 12px;
  letter-spacing: 0.04em;
  color: #0a0e1a;
}
.sub-form input:focus { outline: none; border-color: #00f0ff; background: #fff; }
.sub-form button {
  font-family: 'Bungee', sans-serif;
  font-size: 13px;
  letter-spacing: 0.05em;
  background: linear-gradient(180deg, #f4f6f8 0%, #c8cdd3 50%, #aab0b9 100%);
  border: 1.5px solid #0a0e1a;
  padding: 10px 14px;
  text-transform: uppercase;
  color: #0a0e1a;
  box-shadow: inset 1px 1px 0 #fff, inset -1px -1px 0 #6b7079, 3px 3px 0 #0a0e1a;
}
.sub-form button:hover { background: linear-gradient(180deg, #c8f7ff, #00f0ff); }
.sub-status {
  margin-top: 12px;
  min-height: 20px;
  font-family: 'Space Mono', monospace; font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.progress-bar {
  display: none;
  margin-top: 10px;
  height: 18px;
  background: #f1f3f5;
  border: 1.5px inset #6b7079;
  position: relative; overflow: hidden;
}
.progress-bar.is-on { display: block; }
.progress-bar .fill {
  height: 100%;
  background: repeating-linear-gradient(
    -45deg,
    #00f0ff 0 8px,
    #0a0e1a 8px 12px
  );
  width: 0%;
  transition: width 0.1s linear;
}
.progress-bar .label {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Mono', monospace; font-size: 10px;
  color: #0a0e1a; mix-blend-mode: difference;
}

/* desktop sticky note shape near newsletter */
.sticky {
  position: absolute;
  background: #ffec99;
  border: 1.5px solid #0a0e1a;
  padding: 14px;
  font-family: 'VT323', monospace; font-size: 16px;
  width: 200px;
  box-shadow: 4px 4px 0 rgba(10,14,26,0.4);
  transform: rotate(4deg);
  top: 20px; right: 24px;
}
.sticky::after {
  content: "";
  position: absolute; left: 50%; top: -10px; transform: translateX(-50%);
  width: 60px; height: 14px;
  background: rgba(255,46,160,0.6);
  border: 1px solid #0a0e1a;
}
.sticky.alt { background: #c2ecf2; transform: rotate(-3deg); top: 30px; left: 24px; right: auto; }

/* ===============================================================
   FOOTER TASKBAR (separate from sticky one)
   =============================================================== */
.foot {
  margin-top: 80px;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 16px 18px;
  background: linear-gradient(180deg, #e2e6eb 0%, #b8bec5 40%, #8a9099 100%);
  border-top: 2px solid #0a0e1a;
  border-bottom: 2px solid #0a0e1a;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.foot .blob {
  background: linear-gradient(180deg, #f4f6f8, #c8cdd3);
  border: 1.5px solid #0a0e1a;
  padding: 6px 10px;
}
.foot .blob.z {
  background: #0a0e1a; color: #00f0ff;
  display: inline-flex; align-items: center; gap: 6px;
}
.foot .blob.z .zmark {
  display: inline-grid; place-items: center;
  width: 18px; height: 18px;
  background: #00f0ff; color: #0a0e1a;
  font-family: 'Bungee', sans-serif; font-size: 12px;
  border: 1.5px solid #00f0ff;
  box-shadow: 0 0 0 1.5px #0a0e1a;
}
.foot .spacer { flex: 1; }

/* ===============================================================
   ICONS (corner desktop icons)
   =============================================================== */
.desktop-icons {
  position: absolute;
  top: 20px; right: 28px;
  display: grid;
  grid-template-columns: repeat(2, 80px);
  gap: 12px 18px;
  z-index: 2;
}
.desktop-icon {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  width: 80px;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #0a0e1a;
  text-decoration: none;
  text-align: center;
  text-shadow: 0 1px 0 rgba(255,255,255,0.5);
}
.desktop-icon .icon-img {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: linear-gradient(180deg, #f4f6f8, #c8cdd3);
  border: 1.5px solid #0a0e1a;
  box-shadow: inset 1px 1px 0 #fff, 2px 2px 0 rgba(10,14,26,0.35);
}
.desktop-icon:hover .icon-img { background: linear-gradient(180deg, #c8f7ff, #00f0ff); }

/* ===============================================================
   BOOT SCREEN
   =============================================================== */
.boot {
  position: fixed; inset: 0; z-index: 10000;
  background: #0a0e1a;
  display: grid; place-items: center;
  color: #ffffff;
  font-family: 'VT323', monospace;
  font-size: 22px;
  padding: 24px;
}
.boot .boot-inner { max-width: 720px; width: 100%; }
.boot .boot-line { margin-bottom: 6px; }
.boot .boot-line .blink {
  display: inline-block; width: 10px; height: 18px;
  background: #00f0ff; vertical-align: middle;
  animation: blink 0.8s steps(1, end) infinite;
}
.boot .boot-bar {
  margin-top: 14px;
  height: 22px;
  background: #1a2030;
  border: 1.5px solid #00f0ff;
}
.boot .boot-bar .b-fill {
  width: 0%;
  height: 100%;
  background: repeating-linear-gradient(-45deg, #00f0ff 0 8px, #0a0e1a 8px 12px);
}
.boot.fade { animation: bootOut 0.5s ease forwards; }
@keyframes bootOut {
  to { opacity: 0; visibility: hidden; }
}
.boot .corner {
  position: absolute; top: 18px; right: 22px;
  font-family: 'Space Mono', monospace; font-size: 11px;
  color: #ff2ea0; letter-spacing: 0.12em;
}
.boot .ascii {
  font-family: 'Space Mono', monospace;
  white-space: pre;
  font-size: 12px; color: #00f0ff;
  margin-bottom: 14px;
  line-height: 1.05;
}

/* ===============================================================
   PRODUCT DETAIL PAGE
   =============================================================== */
.detail-stage {
  padding: 30px 24px 96px;
  min-height: calc(100vh - 24px);
  position: relative;
}
.detail-win {
  width: min(1240px, 96vw);
  margin: 24px auto 0;
}
.detail-win .win-body {
  padding: 0;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}
.detail-gallery {
  background: #fff;
  border-right: 1.5px solid #0a0e1a;
  padding: 0;
  position: relative;
}
.detail-hero {
  position: relative;
  aspect-ratio: 16/10;
  width: 100%;
  background: radial-gradient(circle at 50% 50%, #fff, #c8cdd3 100%);
  overflow: hidden;
}
.detail-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.detail-hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(0,0,0,0.07) 0 1px, transparent 1px 4px);
  pointer-events: none;
}
.detail-hero .tag {
  position: absolute; top: 12px; left: 12px;
  background: #0a0e1a; color: #00f0ff;
  font-family: 'Space Mono', monospace; font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 8px;
}
.detail-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 12px;
  border-top: 1.5px solid #0a0e1a;
}
.detail-thumbs .thumb {
  aspect-ratio: 1/1;
  background: linear-gradient(180deg, #fff, #c8cdd3);
  border: 1.5px solid #0a0e1a;
  position: relative;
  display: grid; place-items: center;
  overflow: hidden;
}
.detail-thumbs .thumb svg { width: 70%; opacity: 0.75; }
.detail-thumbs .thumb.active { box-shadow: inset 0 0 0 2px #00f0ff; }

.detail-info {
  padding: 24px 28px 28px;
}
.detail-info .breadcrumbs {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #6b7079;
}
.detail-info .breadcrumbs a { color: #0a0e1a; text-decoration: none; }
.detail-info .breadcrumbs a:hover { color: #ff2ea0; }
.detail-info h1 {
  font-family: 'Bungee', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.detail-info h1 .accent { color: #ff2ea0; }
.detail-info .subtitle {
  font-family: 'VT323', monospace;
  font-size: 20px;
  margin-top: 8px;
}
.detail-info .price-row {
  display: flex; align-items: baseline; gap: 12px;
  margin-top: 12px;
  font-family: 'Space Mono', monospace;
}
.detail-info .price-row .price { font-size: 28px; font-weight: 700; }
.detail-info .price-row .stock {
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  background: #0a0e1a; color: #00f0ff;
  padding: 4px 8px;
}
.spec-table {
  margin-top: 16px;
  width: 100%; border-collapse: collapse;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
}
.spec-table td {
  padding: 6px 0;
  text-transform: uppercase;
  border-bottom: 1px dashed #c8cdd3;
}
.spec-table td:first-child { color: #6b7079; width: 40%; }
.spec-table td:last-child { font-weight: 700; }
.size-selector {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 16px;
}
.size-selector .size {
  font-family: 'Space Mono', monospace;
  font-size: 11px; font-weight: 700;
  background: linear-gradient(180deg, #f4f6f8, #c8cdd3);
  border: 1.5px solid #0a0e1a;
  padding: 8px 10px;
  min-width: 44px; text-align: center;
  cursor: pointer;
}
.size-selector .size:hover { background: linear-gradient(180deg, #c8f7ff, #00f0ff); }
.size-selector .size.active {
  background: #0a0e1a; color: #00f0ff;
}
.size-selector .size.oos { color: #aab0b9; text-decoration: line-through; pointer-events: none; }
.detail-actions {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 8px;
  margin-top: 18px;
}
.detail-actions .primary {
  font-family: 'Bungee', sans-serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  background: linear-gradient(180deg, #f4f6f8 0%, #c8cdd3 50%, #aab0b9 100%);
  border: 1.5px solid #0a0e1a;
  padding: 14px 16px;
  text-transform: uppercase;
  color: #0a0e1a; text-decoration: none;
  text-align: center;
  box-shadow: inset 1px 1px 0 #fff, inset -1px -1px 0 #6b7079, 4px 4px 0 #0a0e1a;
}
.detail-actions .primary:hover {
  background: linear-gradient(180deg, #c8f7ff, #00f0ff);
}
.detail-actions .secondary {
  font-family: 'Space Mono', monospace;
  font-size: 11px; font-weight: 700;
  background: #fff;
  border: 1.5px solid #0a0e1a;
  padding: 14px 16px;
  text-transform: uppercase;
  color: #0a0e1a;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.06em;
}
.detail-actions .secondary:hover { background: #ff2ea0; color: #fff; }

.detail-description {
  margin-top: 18px;
  font-family: 'VT323', monospace;
  font-size: 18px; line-height: 1.55;
  color: #0a0e1a;
}
.detail-description p { margin-bottom: 8px; max-width: 60ch; }

/* drift other product windows around detail page */
.detail-stage .product-window { width: 220px; }
.detail-stage .product-window .product-info { padding: 8px 10px; }
.detail-stage .product-window .product-info h3 { font-size: 16px; }
.detail-stage .product-window .product-info .sub { font-size: 13px; }
.detail-stage .product-window .product-info .price { font-size: 13px; }
.detail-stage .product-window .product-info .add { font-size: 10px; padding: 4px 6px; box-shadow: 1px 1px 0 #0a0e1a; }

/* ===============================================================
   CART (shopping_cart.exe)
   =============================================================== */
.cart-win {
  width: min(960px, 96vw);
  margin: 30px auto;
}
.cart-win .win-body { padding: 0; }
.cart-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
}
.cart-table thead th {
  text-align: left;
  background: linear-gradient(180deg, #e2e6eb, #c8cdd3);
  border-bottom: 1.5px solid #0a0e1a;
  padding: 8px 14px;
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
}
.cart-table tbody td {
  padding: 14px;
  border-bottom: 1px dashed #c8cdd3;
  vertical-align: middle;
}
.cart-item-thumb {
  width: 80px; aspect-ratio: 4/3;
  background: linear-gradient(180deg, #fff, #c8cdd3);
  border: 1.5px solid #0a0e1a;
  display: grid; place-items: center;
}
.cart-item-thumb svg { width: 70%; }
.cart-item-info .title {
  font-family: 'Bungee', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
}
.cart-item-info .sub {
  font-family: 'VT323', monospace;
  font-size: 14px;
}
.cart-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 18px;
  border-top: 1.5px solid #0a0e1a;
  background: linear-gradient(180deg, #e2e6eb, #c8cdd3);
  align-items: end;
}
.cart-summary .totals {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cart-summary .totals .row {
  display: flex; justify-content: space-between; gap: 30px;
  border-bottom: 1px dashed rgba(10,14,26,0.35);
  padding: 4px 0;
}
.cart-summary .totals .row.grand {
  border-bottom: none;
  font-family: 'Bungee', sans-serif;
  font-size: 18px;
  letter-spacing: 0;
  padding-top: 8px;
}
.cart-summary .totals .row.grand .v { color: #ff2ea0; }
.cart-summary .checkout {
  font-family: 'Bungee', sans-serif;
  font-size: 14px; letter-spacing: 0.05em;
  background: linear-gradient(180deg, #f4f6f8 0%, #c8cdd3 50%, #aab0b9 100%);
  border: 1.5px solid #0a0e1a;
  padding: 14px 24px;
  text-transform: uppercase;
  color: #0a0e1a; text-decoration: none;
  text-align: center;
  box-shadow: inset 1px 1px 0 #fff, inset -1px -1px 0 #6b7079, 4px 4px 0 #0a0e1a;
}
.cart-summary .checkout:hover {
  background: linear-gradient(180deg, #c8f7ff, #00f0ff);
}

/* ===============================================================
   CHECKOUT ALERT DIALOG
   =============================================================== */
.alert-stage {
  min-height: calc(100vh - 60px);
  display: grid; place-items: center;
  padding: 60px 24px;
}
.alert-dialog {
  width: min(560px, 92%);
}
.alert-dialog .win-body {
  padding: 22px 22px 22px 100px;
  position: relative;
  background: #fff;
}
.alert-dialog .alert-icon {
  position: absolute;
  left: 22px; top: 22px;
  width: 60px; height: 60px;
  background: linear-gradient(180deg, #fff, #c8cdd3);
  border: 1.5px solid #0a0e1a;
  display: grid; place-items: center;
  font-family: 'Bungee', sans-serif;
  font-size: 36px;
  color: #ff2ea0;
  text-shadow: 2px 2px 0 #0a0e1a;
  box-shadow: inset 1px 1px 0 #fff, inset -1px -1px 0 #6b7079, 3px 3px 0 #0a0e1a;
}
.alert-dialog h2 {
  font-family: 'Bungee', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.alert-dialog p {
  font-family: 'VT323', monospace;
  font-size: 18px;
  margin-bottom: 12px;
}
.alert-dialog .actions {
  display: flex; gap: 8px; margin-top: 16px;
}
.alert-dialog .btn {
  font-family: 'Space Mono', monospace;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em;
  background: linear-gradient(180deg, #f4f6f8, #c8cdd3);
  border: 1.5px solid #0a0e1a;
  padding: 8px 14px;
  text-transform: uppercase;
  color: #0a0e1a; text-decoration: none;
  box-shadow: inset 1px 1px 0 #fff, inset -1px -1px 0 #6b7079, 2px 2px 0 #0a0e1a;
}
.alert-dialog .btn:hover { background: linear-gradient(180deg, #c8f7ff, #00f0ff); }
.alert-dialog .btn.dim { color: #6b7079; }

/* ===============================================================
   ABOUT (readme.txt page)
   =============================================================== */
.about-stage { padding: 30px 24px 96px; }
.readme-win { width: min(960px, 96vw); margin: 24px auto 0; }
.readme-win .win-body { padding: 0; }
.readme-area {
  display: grid;
  grid-template-columns: 36px 1fr;
  min-height: 80vh;
  background: #fff;
}

/* ===============================================================
   RESPONSIVE
   =============================================================== */
@media (max-width: 900px) {
  .hero-main .win-body { grid-template-columns: 1fr; }
  .hero-shoe-stage { min-height: 280px; }
  .preview-window { display: none; }
  .desktop-icons { display: none; }
  .detail-win .win-body { grid-template-columns: 1fr; }
  .detail-gallery { border-right: none; border-bottom: 1.5px solid #0a0e1a; }
  .drop-canvas { height: auto; min-height: 1600px; padding-bottom: 40px; }
  .taskbar-marquee { display: none; }
  .taskbar-chips { display: none; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .hero-headline { font-size: 18vw; }
  .taskbar { height: 50px; }
  .taskbar-btn { padding: 0 10px; font-size: 12px; }
  .taskbar-cart { padding: 4px 8px; font-size: 10px; }
  .taskbar-clock { min-width: 70px; font-size: 10px; padding: 4px 6px; }
  .section-title { font-size: 12vw; }
  .product-window { position: relative !important; left: auto !important; top: auto !important; width: 100% !important; margin-bottom: 16px; transform: none !important; }
  .drop-canvas { height: auto; border: none; padding: 0; background: none; display: flex; flex-direction: column; gap: 14px; }
  .drop-canvas .canvas-hint { display: none; }
  .sticky { display: none; }
  .alert-dialog .win-body { padding: 90px 22px 22px; }
  .alert-dialog .alert-icon { left: 22px; top: 22px; }
}

/* ===============================================================
   UTILS
   =============================================================== */
.glitch-text {
  position: relative; display: inline-block;
}
.glitch-text::before, .glitch-text::after {
  content: attr(data-text);
  position: absolute; left: 0; top: 0; width: 100%;
  pointer-events: none;
}
.glitch-text::before { color: #00f0ff; transform: translate(-2px, 0); mix-blend-mode: screen; opacity: 0.7; }
.glitch-text::after  { color: #ff2ea0; transform: translate(2px, 0);  mix-blend-mode: screen; opacity: 0.5; }
