/* ── Drop Zone — Rocky's Gallery, standalone edition ──────────────────
   Reborn from the Shopify theme 2026-07-10. Same DNA, no Liquid.
   Tokens: void #000 · volt #9DFF20 · sold-red #FF5030 · paper #F2F2F2 · mat #EFECE6 */

:root {
  --void: #000;
  --void-2: #0d0d0d;
  --volt: #9dff20;
  --volt-dim: rgba(157, 255, 32, 0.35);
  --sold: #ff5030;
  --paper: #f2f2f2;
  --mat: #efece6;
  --font-display: "Archivo", sans-serif;
  --font-mono: "Space Mono", monospace;
}

* { box-sizing: border-box; }
html { scrollbar-color: #2b2b2b #000; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--void);
  color: var(--paper);
  font-family: var(--font-display);
}
::selection { background: var(--volt); color: #000; }
img { max-width: 100%; display: block; }

/* ── Hero ── */
.dz-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.dz-hero__bg { position: absolute; inset: 0; }
.dz-hero__img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.72) saturate(1.1); }
.dz-hero__leds { position: absolute; inset: 0; width: 100%; height: 100%; mix-blend-mode: screen; }
.dz-hero__scan {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(157,255,32,.05) 48%, rgba(157,255,32,.1) 50%, rgba(157,255,32,.05) 52%, transparent 100%);
  background-size: 100% 260px;
  background-repeat: no-repeat;
  background-position: 0 -260px;
  opacity: 0;
  animation: dz-scan 9s linear infinite;
}
@keyframes dz-scan {
  0% { background-position: 0 -260px; opacity: 0; }
  8% { opacity: 1; }
  92% { opacity: 1; }
  100% { background-position: 0 calc(100% + 260px); opacity: 0; }
}
.dz-hero__shade {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.55) 0%, rgba(0,0,0,.12) 40%, rgba(0,0,0,.72) 100%);
}
.dz-hero__content {
  position: relative; z-index: 1;
  text-align: center;
  padding: 14svh 20px 9svh;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  margin: auto 0;
}
.dz-hero__eyebrow {
  font-family: var(--font-mono);
  color: var(--volt);
  font-size: .72rem; letter-spacing: .34em; text-transform: uppercase;
  margin: 0;
}
.dz-hero__title {
  font-size: clamp(2.6rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1; letter-spacing: .01em;
  margin: 0; text-wrap: balance; text-transform: uppercase;
}
.dz-hero__tagline {
  font-family: var(--font-mono);
  color: #d9d9d9;
  font-size: clamp(.72rem, 1.6vw, .95rem);
  letter-spacing: .14em; text-transform: uppercase;
  margin: 0;
}
.dz-hero__status {
  font-family: var(--font-mono);
  color: var(--volt);
  font-size: .7rem; letter-spacing: .22em; text-transform: uppercase;
  margin: 10px 0 0;
  display: inline-flex; align-items: center; gap: 9px;
}
.dz-hero__dot {
  width: 8px; height: 8px;
  background: var(--volt); border-radius: 50%;
  box-shadow: 0 0 8px var(--volt);
  animation: dz-blink 1.6s steps(2) infinite;
}
@keyframes dz-blink { 50% { opacity: .25; } }
.dz-hero__cta {
  margin-top: 22px;
  display: inline-block;
  background: var(--volt); color: #000;
  font-family: var(--font-mono); font-weight: 700;
  font-size: clamp(.9rem, 2vw, 1.1rem);
  letter-spacing: .16em; text-transform: uppercase; text-decoration: none;
  padding: 18px 42px;
  border: 1px solid var(--volt);
  animation: dz-pulse 2.4s ease-out infinite;
}
@keyframes dz-pulse {
  0% { box-shadow: 0 0 0 0 rgba(157,255,32,.55), 0 0 18px rgba(157,255,32,.35); }
  70% { box-shadow: 0 0 0 18px rgba(157,255,32,0), 0 0 18px rgba(157,255,32,.35); }
  100% { box-shadow: 0 0 0 0 rgba(157,255,32,0), 0 0 18px rgba(157,255,32,.35); }
}
.dz-hero__cta:hover, .dz-hero__cta:focus-visible { background: #000; color: var(--volt); outline: none; }
.dz-hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.dz-hero__cta--secondary { background: transparent; color: var(--paper); border: 1px solid rgba(255,255,255,.45); animation: none; }
.dz-hero__cta--secondary:hover, .dz-hero__cta--secondary:focus-visible { border-color: var(--volt); }

/* ── Ticker ── */
.dz-ticker {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(157,255,32,.5);
  background: rgba(0,0,0,.82);
  overflow: hidden;
  padding: 11px 0;
}
.dz-ticker__track {
  display: inline-flex; gap: 26px; white-space: nowrap;
  font-family: var(--font-mono);
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--volt);
  will-change: transform;
  animation: dz-tick 36s linear infinite;
}
@keyframes dz-tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.dz-ticker__track .sep { opacity: .4; }

/* ── Grid ── */
.dz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: 22px;
  padding: 60px clamp(16px, 4vw, 48px) 70px;
  max-width: 1500px;
  margin: 0 auto;
}
.dz-card {
  background: var(--mat);
  padding: clamp(10px, 3.2%, 20px);
  border: 1px solid var(--volt-dim);
  transition: border-color 120ms linear;
  cursor: pointer;
  position: relative;
  display: flex; flex-direction: column; gap: 0;
}
.dz-card:hover, .dz-card:focus-visible { border-color: var(--volt); outline: none; }
.dz-card__media {
  border: 1px solid rgba(0,0,0,.16);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #ddd;
}
.dz-card__media img { width: 100%; height: 100%; object-fit: cover; }
.dz-card__meta {
  display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
  padding-top: 12px;
  color: #111;
}
.dz-card__title {
  font-size: .82rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  margin: 0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.dz-card__price {
  font-family: var(--font-mono);
  font-size: .78rem; font-weight: 700;
  white-space: nowrap;
}

/* ── Modal ── */
.dz-modal { position: fixed; inset: 0; z-index: 50; display: grid; place-items: center; padding: 18px; }
.dz-modal[hidden] { display: none; }
.dz-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.88); }
.dz-modal__panel {
  position: relative;
  margin: 0;
  max-width: min(920px, 96vw);
  max-height: 92svh;
  overflow: auto;
  background: var(--void-2);
  border: 1px solid var(--volt);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(240px, 1fr);
}
.dz-modal__mat { background: var(--mat); padding: clamp(14px, 2.6%, 30px); }
.dz-modal__mat img { border: 1px solid rgba(0,0,0,.16); width: 100%; }
.dz-modal__meta { padding: 26px 24px; display: flex; flex-direction: column; gap: 14px; }
.dz-modal__meta h2 {
  margin: 0;
  font-size: 1.15rem; font-weight: 900;
  letter-spacing: .06em; text-transform: uppercase;
}
.dz-modal__desc { margin: 0; font-family: var(--font-mono); font-size: .78rem; line-height: 1.7; color: #c9c9c9; }
.dz-modal__row { display: flex; align-items: center; gap: 16px; margin-top: auto; }
.dz-modal__price { font-family: var(--font-mono); font-weight: 700; font-size: 1.05rem; color: var(--volt); }
.dz-modal__buy {
  background: var(--volt); color: #000;
  border: 1px solid var(--volt);
  font-family: var(--font-mono); font-weight: 700;
  font-size: .8rem; letter-spacing: .16em; text-transform: uppercase;
  padding: 12px 28px;
  cursor: pointer;
}
.dz-modal__buy:hover { background: var(--void); color: var(--volt); }
.dz-modal__note { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .08em; color: var(--volt); margin: 0; }
/* Wallpaper sizes — secondary to the full-res Download, so ghost buttons. */
.dz-modal__walls { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.dz-modal__walls-label {
  font-family: var(--font-mono); font-size: .62rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--volt-dim);
}
.dz-modal__walls-btns { display: flex; flex-wrap: wrap; gap: 8px; }
.dz-modal__wall {
  background: transparent; color: var(--volt);
  border: 1px solid var(--volt-dim);
  font-family: var(--font-mono); font-size: .62rem;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 7px 14px; cursor: pointer;
}
.dz-modal__wall:hover, .dz-modal__wall:focus-visible { border-color: var(--volt); background: rgba(157, 255, 32, 0.12); }
.dz-modal__wall small { display: block; font-size: .55rem; letter-spacing: .06em; color: var(--volt-dim); }
.dz-modal__close {
  position: absolute; top: 8px; right: 10px; z-index: 1;
  background: none; border: none;
  color: var(--paper);
  font-size: 1.6rem; line-height: 1;
  cursor: pointer;
}
.dz-modal__close:hover { color: var(--volt); }
@media (max-width: 680px) {
  .dz-modal__panel { grid-template-columns: 1fr; }
}

/* ── Footer ── */
.dz-footer {
  border-top: 1px solid var(--volt-dim);
  padding: 34px 20px 44px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: .74rem; letter-spacing: .1em; text-transform: uppercase;
}
.dz-footer a { color: var(--volt); }
.dz-footer__fine { opacity: .5; font-size: .64rem; }

@media (prefers-reduced-motion: reduce) {
  .dz-hero__scan, .dz-hero__dot, .dz-hero__cta, .dz-ticker__track { animation: none; }
}

/* ── Pager ── */
.dz-pager {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0 clamp(16px, 4vw, 48px) 80px;
  flex-wrap: wrap;
}
.dz-pager__btn {
  background: none;
  color: var(--paper);
  border: 1px solid var(--volt-dim);
  font-family: var(--font-mono);
  font-size: .75rem;
  min-width: 42px;
  padding: 9px 12px;
  cursor: pointer;
  transition: border-color 120ms linear, color 120ms linear;
}
.dz-pager__btn:hover:not(:disabled) { border-color: var(--volt); }
.dz-pager__btn.is-current { border-color: var(--volt); color: var(--volt); }
.dz-pager__btn:disabled { opacity: .3; cursor: default; }

/* ── Donate + commissions ── */
/* ── Donate ── */
.dz-front {
  width: min(1180px, calc(100% - 32px));
  margin: 44px auto 58px;
  border: 1px solid rgba(157,255,32,.32);
  background: linear-gradient(135deg, rgba(157,255,32,.07), rgba(255,255,255,.025));
}
.dz-kids-feature {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  gap: clamp(28px, 5vw, 70px); align-items: center;
  padding: clamp(28px, 5vw, 58px);
  border-bottom: 1px solid rgba(157,255,32,.22);
}
.dz-kids-feature__copy { max-width: 650px; }
.dz-kids-feature__art { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; transform: rotate(1deg); }
.dz-kids-feature__art img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border: 1px solid rgba(255,255,255,.35); }
.dz-kids-feature__art img:nth-child(2) { transform: translateY(-12px); }
.dz-front__link { display: inline-block; margin-top: 16px; color: var(--volt); font-family: var(--font-mono); font-weight: 700; text-decoration: none; }
.dz-front__link:hover { text-decoration: underline; }
.dz-donate {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 52px) clamp(20px, 5vw, 58px);
  text-align: center;
}
.dz-donate__eyebrow {
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--volt);
  margin: 0 0 .4rem;
}
.dz-donate__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.4rem, 4vw, 2rem);
  margin: 0 0 .8rem;
}
.dz-donate__text {
  font-family: var(--font-mono);
  font-size: .9rem;
  line-height: 1.7;
  opacity: .85;
}
.dz-donate__text a { color: var(--volt); }
.dz-donate__links {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  margin-top: 22px;
}
.dz-donate__btn {
  font-family: var(--font-mono);
  font-size: .74rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--paper);
  text-decoration: none;
  border: 1px solid var(--volt-dim);
  padding: 12px 22px;
  transition: border-color 120ms linear, color 120ms linear;
}
.dz-donate__btn:hover { border-color: var(--volt); color: var(--volt); }

@media (max-width: 760px) {
  .dz-kids-feature { grid-template-columns: 1fr; }
  .dz-kids-feature__art { order: -1; }
  .dz-front { width: min(100% - 20px, 1180px); margin-top: 24px; }
}

/* ── Lightbox (full-size image view) ── */
.dz-modal__mat img { cursor: zoom-in; }
.dz-modal__hint {
  font-family: var(--font-mono); font-size: .62rem; letter-spacing: .08em;
  color: #8a8a8a; margin: 10px 0 0; text-align: center;
}
.dz-lightbox {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(0,0,0,.96);
  display: grid; place-items: center;
  padding: 12px; cursor: zoom-out;
}
.dz-lightbox[hidden] { display: none; }
.dz-lightbox img { max-width: 97vw; max-height: 96svh; }

/* ── Cross-site nav (Gallery / Kids / Swag / Sparks / GitHub / Donate) ── */
.dz-nav {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 2px 20px;
  padding: 10px 14px;
  background: var(--void-2);
  border-bottom: 1px solid #191919;
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .06em;
  text-transform: uppercase;
}
.dz-nav a { color: var(--paper); opacity: .7; text-decoration: none; padding: 2px 0; }
.dz-nav a:hover { color: var(--volt); opacity: 1; }
.dz-nav a[aria-current="page"] { color: var(--volt); opacity: 1; }
.dz-nav .dz-nav__donate { color: var(--volt); opacity: .95; }

/* ── Footer explore row ── */
.dz-explore {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 18px;
  margin: 0 0 14px;
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .06em;
}
.dz-explore a { color: var(--paper); opacity: .75; text-decoration: none; }
.dz-explore a:hover { color: var(--volt); opacity: 1; }
