/* ============================================================
   PRESS.START — Stylesheet
   INFINITE PLAY™ // treykel
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Share+Tech+Mono&display=swap');

/* ── Variables ──────────────────────────────────────────── */
:root {
  --black: #000000;
  --deep: #060608;
  --amber: #ffb700;
  --amber-dim: #7a5800;
  --green: #00ff88;
  --red: #ff3333;
  --white: #f0f0f0;
  --grey: #333333;
  --grey-mid: #555555;
  --pixel: 'Press Start 2P', monospace;
  --mono: 'Share Tech Mono', monospace;
  --scanline-opacity: 0.06;
  --transition: 0.3s ease;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100%;
  background: var(--black);
  color: var(--amber);
  font-family: var(--mono);
  overflow: hidden;
  -webkit-font-smoothing: none;
  image-rendering: pixelated;
}

/* ── Scanlines overlay ──────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, var(--scanline-opacity)) 2px,
    rgba(0, 0, 0, var(--scanline-opacity)) 4px
  );
  pointer-events: none;
  z-index: 9999;
}

/* ── CRT vignette ───────────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 60%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
  z-index: 9998;
}

/* ── Screens ────────────────────────────────────────────── */
.screen {
  position: fixed;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.screen.active {
  display: flex;
}

/* ── Boot Screen ────────────────────────────────────────── */
#boot-screen {
  background: var(--black);
  text-align: center;
  gap: 40px;
}

.boot-logo {
  font-family: var(--pixel);
  font-size: clamp(10px, 3vw, 18px);
  color: var(--amber);
  letter-spacing: 0.15em;
  line-height: 1.8;
  text-shadow: 0 0 20px rgba(255, 183, 0, 0.5);
  animation: flicker 8s infinite;
}

.boot-logo .tm {
  font-size: 0.5em;
  vertical-align: super;
}

.boot-tagline {
  font-family: var(--mono);
  font-size: clamp(10px, 2vw, 13px);
  color: var(--amber-dim);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: -20px;
}

.press-start-btn {
  font-family: var(--pixel);
  font-size: clamp(9px, 2.5vw, 14px);
  color: var(--amber);
  background: transparent;
  border: 2px solid var(--amber);
  padding: 16px 32px;
  letter-spacing: 0.2em;
  cursor: pointer;
  text-transform: uppercase;
  animation: blink-border 1.2s step-end infinite;
  transition: all 0.1s;
  text-shadow: 0 0 10px rgba(255, 183, 0, 0.8);
  box-shadow: 0 0 20px rgba(255, 183, 0, 0.15), inset 0 0 20px rgba(255, 183, 0, 0.05);
}

.press-start-btn:hover {
  background: var(--amber);
  color: var(--black);
  box-shadow: 0 0 40px rgba(255, 183, 0, 0.6);
  animation: none;
  text-shadow: none;
}

.press-start-btn:active {
  transform: scale(0.97);
}

.boot-version {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--grey-mid);
  letter-spacing: 0.2em;
  position: absolute;
  bottom: 24px;
}

/* CRT boot lines */
.boot-lines {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--amber-dim);
  letter-spacing: 0.1em;
  line-height: 1.8;
  text-align: left;
  max-width: 360px;
  width: 90%;
  opacity: 0;
  animation: boot-reveal 2s ease forwards 0.3s;
}

/* ── Drop Feed Screen ───────────────────────────────────── */
#feed-screen {
  background: var(--black);
  flex-direction: column;
  justify-content: flex-start;
  overflow-y: auto;
  padding: 0 0 80px 0;
}

#feed-screen::-webkit-scrollbar { width: 4px; }
#feed-screen::-webkit-scrollbar-track { background: transparent; }
#feed-screen::-webkit-scrollbar-thumb { background: var(--amber-dim); }

.feed-header {
  width: 100%;
  padding: 24px 20px 16px;
  border-bottom: 1px solid var(--grey);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background: var(--black);
  z-index: 10;
}

.feed-logo {
  font-family: var(--pixel);
  font-size: clamp(8px, 2vw, 11px);
  color: var(--amber);
  letter-spacing: 0.1em;
}

.feed-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.subscribe-btn {
  font-family: var(--pixel);
  font-size: 8px;
  color: var(--green);
  border: 1px solid var(--green);
  padding: 6px 10px;
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: background 0.1s, color 0.1s;
  white-space: nowrap;
}

.subscribe-btn:hover {
  background: var(--green);
  color: var(--black);
}

.feed-signal {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--green);
  letter-spacing: 0.2em;
  animation: pulse 2s ease-in-out infinite;
}

.feed-title {
  width: 100%;
  padding: 32px 20px 8px;
  font-family: var(--pixel);
  font-size: clamp(8px, 2vw, 12px);
  color: var(--amber-dim);
  letter-spacing: 0.3em;
}

.drop-list {
  width: 100%;
  padding: 8px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 600px;
  align-self: center;
}

/* ── Drop Card ──────────────────────────────────────────── */
.drop-card {
  border: 1px solid var(--grey);
  background: var(--deep);
  padding: 20px;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition), transform 0.1s;
  position: relative;
  overflow: hidden;
}

.drop-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--card-color, var(--amber));
  box-shadow: 0 0 12px var(--card-color, var(--amber));
}

.drop-card:hover {
  border-color: var(--card-color, var(--amber));
  box-shadow: 0 0 24px rgba(255,183,0,0.1);
  transform: translateX(2px);
}

.drop-card:active {
  transform: translateX(2px) scale(0.99);
}

.drop-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 10px;
}

.drop-card-title {
  font-family: var(--pixel);
  font-size: clamp(9px, 2.5vw, 13px);
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.drop-status {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  padding: 3px 8px;
  border: 1px solid currentColor;
  white-space: nowrap;
}

.drop-status.live {
  color: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 8px rgba(0, 255, 136, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

.drop-status.soon {
  color: var(--amber-dim);
  border-color: var(--amber-dim);
}

.drop-status.locked {
  color: var(--amber);
  border-color: var(--amber-dim);
  letter-spacing: 0.35em;
  animation: blink-border 1s step-end infinite;
}

.drop-card-sub {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--grey-mid);
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}

.drop-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.drop-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--grey-mid);
  border: 1px solid var(--grey);
  padding: 2px 6px;
}

.drop-card-arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-family: var(--pixel);
  font-size: 8px;
  color: var(--grey-mid);
  transition: color var(--transition), right var(--transition);
}

.drop-card:hover .drop-card-arrow {
  color: var(--amber);
  right: 16px;
}

/* ── Drop Detail Screen ─────────────────────────────────── */
#detail-screen {
  background: var(--black);
  flex-direction: column;
  justify-content: flex-start;
  overflow-y: auto;
  padding: 0 0 100px 0;
}

#detail-screen::-webkit-scrollbar { width: 4px; }
#detail-screen::-webkit-scrollbar-thumb { background: var(--amber-dim); }

.detail-header {
  width: 100%;
  padding: 20px;
  border-bottom: 1px solid var(--grey);
  display: flex;
  align-items: center;
  gap: 16px;
  position: sticky;
  top: 0;
  background: var(--black);
  z-index: 10;
}

.back-btn {
  font-family: var(--pixel);
  font-size: 9px;
  color: var(--amber);
  background: transparent;
  border: 1px solid var(--amber);
  padding: 8px 12px;
  cursor: pointer;
  letter-spacing: 0.1em;
  transition: all 0.1s;
}

.back-btn:hover {
  background: var(--amber);
  color: var(--black);
}

.detail-header-title {
  font-family: var(--pixel);
  font-size: clamp(8px, 2vw, 11px);
  color: var(--white);
  letter-spacing: 0.1em;
}

.detail-body {
  width: 100%;
  max-width: 600px;
  align-self: center;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.detail-hero {
  border: 1px solid var(--grey);
  background: var(--deep);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.detail-hero-placeholder {
  font-family: var(--pixel);
  font-size: clamp(12px, 4vw, 24px);
  color: var(--detail-color, var(--amber));
  text-align: center;
  line-height: 1.6;
  padding: 20px;
  text-shadow: 0 0 12px var(--detail-color, var(--amber));
}

.detail-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(255,183,0,0.05) 100%);
}

.detail-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail-title {
  font-family: var(--pixel);
  font-size: clamp(12px, 3.5vw, 20px);
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.detail-sub {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--grey-mid);
  letter-spacing: 0.3em;
}

.detail-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.detail-section-label {
  font-family: var(--pixel);
  font-size: 9px;
  color: var(--amber-dim);
  letter-spacing: 0.3em;
  border-bottom: 1px solid var(--grey);
  padding-bottom: 8px;
  margin-bottom: 12px;
}

.detail-lore {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--white);
  line-height: 1.8;
  letter-spacing: 0.02em;
}

/* Tracklist */
.track-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.track-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--grey);
  font-family: var(--mono);
  font-size: 13px;
  color: var(--white);
  letter-spacing: 0.05em;
}

.track-num {
  font-size: 10px;
  color: var(--grey-mid);
  margin-right: 12px;
  font-family: var(--pixel);
  min-width: 20px;
}

.track-title {
  flex: 1;
}

.track-duration {
  font-size: 11px;
  color: var(--grey-mid);
}

/* Products */
.product-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--grey);
  padding: 16px;
  background: var(--deep);
}

.product-name {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--white);
  letter-spacing: 0.05em;
}

.product-type {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--grey-mid);
  letter-spacing: 0.2em;
  margin-top: 2px;
}

.product-price {
  font-family: var(--pixel);
  font-size: 11px;
  color: var(--amber);
}

/* Buy Button */
.buy-btn {
  width: 100%;
  font-family: var(--pixel);
  font-size: clamp(9px, 2.5vw, 12px);
  color: var(--black);
  background: var(--amber);
  border: none;
  padding: 20px;
  cursor: pointer;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.1s;
  box-shadow: 0 0 30px rgba(255, 183, 0, 0.3);
}

.buy-btn:hover {
  background: var(--white);
  box-shadow: 0 0 50px rgba(255, 183, 0, 0.5);
  transform: translateY(-1px);
}

.buy-btn:active {
  transform: translateY(0) scale(0.99);
}

.buy-btn.notify {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
  box-shadow: 0 0 20px rgba(0,255,136,0.2);
}

.buy-btn.notify:hover {
  background: var(--green);
  color: var(--black);
  box-shadow: 0 0 40px rgba(0,255,136,0.5);
}

.buy-btn.soon-disabled {
  background: var(--deep);
  color: var(--amber-dim);
  border: 1px solid var(--grey);
  cursor: default;
  box-shadow: none;
}

/* Lore code hint tiles */
.lore-hint-tiles {
  display: flex;
  gap: 3px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.lore-hint-tile {
  font-family: var(--mono);
  font-size: 12px;
  width: 20px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid;
  flex-shrink: 0;
}

.lore-hint-tile.open {
  color: var(--amber-dim);
  border-color: var(--grey);
  background: var(--deep);
}

.lore-hint-tile.filled {
  color: var(--amber);
  border-color: var(--amber-dim);
  background: var(--deep);
  text-shadow: 0 0 6px rgba(255, 183, 0, 0.4);
}

.lore-hint-tile.locked {
  color: var(--grey-mid);
  border-color: var(--grey);
  background: var(--black);
}

/* Notify new drops CTA */
.notify-drops-btn {
  width: 100%;
  font-family: var(--pixel);
  font-size: clamp(8px, 2vw, 10px);
  color: var(--amber-dim);
  background: transparent;
  border: 1px solid var(--grey);
  padding: 14px 20px;
  cursor: pointer;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.15s;
}

.notify-drops-btn:hover {
  color: var(--amber);
  border-color: var(--amber-dim);
}

.notify-drops-btn:active {
  transform: scale(0.99);
}

/* Lore Locker */
.lore-locker {
  border: 1px solid var(--grey-mid);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--deep);
}

.lore-locker-label {
  font-family: var(--pixel);
  font-size: 9px;
  color: var(--grey-mid);
  letter-spacing: 0.3em;
}

.lore-input-row {
  display: flex;
  gap: 8px;
}

.lore-input {
  flex: 1;
  background: var(--black);
  border: 1px solid var(--grey);
  color: var(--amber);
  font-family: var(--mono);
  font-size: 13px;
  padding: 10px 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  outline: none;
  transition: border-color 0.2s;
}

.lore-input:focus {
  border-color: var(--amber);
}

.lore-input::placeholder {
  color: var(--grey-mid);
  text-transform: none;
  letter-spacing: 0.05em;
}

.lore-submit {
  font-family: var(--pixel);
  font-size: 9px;
  color: var(--amber);
  background: transparent;
  border: 1px solid var(--amber);
  padding: 10px 14px;
  cursor: pointer;
  letter-spacing: 0.1em;
  transition: all 0.1s;
  white-space: nowrap;
}

.lore-submit:hover {
  background: var(--amber);
  color: var(--black);
}

.lore-unlock-msg {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--green);
  letter-spacing: 0.1em;
  display: none;
}

/* ── Divider ────────────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--grey);
}

/* ── Transition overlay ─────────────────────────────────── */
#transition-overlay {
  position: fixed;
  inset: 0;
  background: var(--amber);
  z-index: 9990;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

#transition-overlay.flash {
  opacity: 1;
}

/* ── Animations ─────────────────────────────────────────── */
@keyframes blink-border {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0.2; }
}

@keyframes flicker {
  0%, 95%, 100% { opacity: 1; }
  96% { opacity: 0.8; }
  97% { opacity: 1; }
  98% { opacity: 0.6; }
  99% { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes boot-reveal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes glitch {
  0%, 100% { transform: translate(0); clip-path: none; }
  20% { transform: translate(-2px, 1px); }
  40% { transform: translate(2px, -1px); clip-path: inset(30% 0 60% 0); }
  60% { transform: translate(-1px, 2px); }
  80% { transform: translate(1px, -2px); clip-path: inset(60% 0 20% 0); }
}

/* ── IP Player (post-unlock custom controls) ────────────── */
.ip-player {
  background: var(--deep);
  border: 1px solid var(--green);
  padding: 16px;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.08), inset 0 0 30px rgba(0, 255, 136, 0.02);
  margin: 8px 0;
}

.ip-player-label {
  font-family: var(--pixel);
  font-size: 8px;
  color: var(--green);
  letter-spacing: 0.3em;
  margin-bottom: 10px;
  animation: pulse 1.5s ease-in-out infinite;
}

.ip-player-title {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--white);
  letter-spacing: 0.08em;
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--grey);
}

/* Custom player controls */
.ip-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.ip-play-btn {
  font-family: var(--pixel);
  font-size: 10px;
  color: var(--black);
  background: var(--green);
  border: none;
  width: 38px;
  height: 38px;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.4);
  transition: background 0.1s, box-shadow 0.1s;
}

.ip-play-btn:hover {
  background: var(--white);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
}

.ip-play-btn:active {
  transform: scale(0.95);
}

.ip-timeline {
  flex: 1;
  height: 3px;
  background: var(--grey);
  cursor: pointer;
  position: relative;
  margin: 0 4px;
}

.ip-progress {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0%;
  background: var(--green);
  box-shadow: 0 0 6px rgba(0, 255, 136, 0.6);
  transition: width 0.1s linear;
}

.ip-scrubhead {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 10px;
  height: 10px;
  background: var(--green);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 6px rgba(0, 255, 136, 0.8);
  transition: left 0.1s linear;
}

.ip-time {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--grey-mid);
  white-space: nowrap;
  letter-spacing: 0.05em;
  min-width: 80px;
  text-align: right;
}

.ip-player-hint {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--grey-mid);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Action buttons row */
.ip-action-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.ip-action-btn {
  font-family: var(--pixel);
  font-size: 9px;
  padding: 10px 16px;
  text-decoration: none;
  letter-spacing: 0.15em;
  display: inline-block;
  cursor: pointer;
  transition: all 0.1s;
}

.ip-action-solid {
  color: var(--black);
  background: var(--green);
  border: none;
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.3);
}
.ip-action-solid:hover {
  background: var(--white);
}

.ip-action-outline {
  color: var(--green);
  background: transparent;
  border: 1px solid var(--green);
}
.ip-action-outline:hover {
  background: var(--green);
  color: var(--black);
}

/* Local file / Apple Music CTA */
.ip-local-cta {
  margin-top: 16px;
  border-top: 1px solid var(--grey);
  padding-top: 12px;
}

.ip-local-toggle {
  font-family: var(--pixel);
  font-size: 8px;
  color: var(--amber);
  background: transparent;
  border: none;
  cursor: pointer;
  letter-spacing: 0.15em;
  padding: 0;
  transition: color 0.1s;
}
.ip-local-toggle:hover { color: var(--white); }

.ip-local-body {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ip-instruction-block {
  padding: 12px;
  border: 1px solid var(--grey);
  background: var(--black);
}

.ip-instruction-label {
  font-family: var(--pixel);
  font-size: 8px;
  color: var(--amber-dim);
  letter-spacing: 0.2em;
  margin-bottom: 6px;
}

.ip-instruction-text {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--white);
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.ip-email-row {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.ip-email-input {
  flex: 1;
  background: var(--black);
  border: 1px solid var(--grey);
  color: var(--amber);
  font-family: var(--mono);
  font-size: 12px;
  padding: 10px 12px;
  letter-spacing: 0.05em;
  outline: none;
  transition: border-color 0.2s;
}
.ip-email-input:focus { border-color: var(--amber); }
.ip-email-input::placeholder { color: var(--grey-mid); }

.ip-email-submit {
  font-family: var(--pixel);
  font-size: 8px;
  color: var(--black);
  background: var(--amber);
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  letter-spacing: 0.1em;
  white-space: nowrap;
  transition: background 0.1s;
}
.ip-email-submit:hover { background: var(--white); }

.ip-email-msg {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--green);
  letter-spacing: 0.08em;
}

/* Lore hint row */
.lore-hint-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--grey);
  padding-top: 10px;
}

.lore-hint-btn {
  font-family: var(--pixel);
  font-size: 7px;
  color: var(--grey-mid);
  background: transparent;
  border: none;
  cursor: pointer;
  letter-spacing: 0.15em;
  text-align: left;
  padding: 0;
  transition: color 0.1s;
}

.lore-hint-btn:hover {
  color: var(--amber);
}

.lore-hint-reveal {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--amber-dim);
  letter-spacing: 0.08em;
  line-height: 1.6;
}

/* ── Install Hint (PWA A2HS banner) ─────────────────────── */
.install-hint {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--deep);
  border-top: 1px solid var(--amber-dim);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 5000;
}

.install-hint-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.install-hint-left > span:first-child {
  font-family: var(--pixel);
  font-size: 9px;
  color: var(--amber);
  letter-spacing: 0.15em;
  text-shadow: 0 0 8px rgba(255, 183, 0, 0.5);
}

.install-hint-ios-icon {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--white);
  letter-spacing: 0.04em;
}

.install-hint-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.install-hint-btn {
  font-family: var(--pixel);
  font-size: 8px;
  color: var(--black);
  background: var(--amber);
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  letter-spacing: 0.1em;
  transition: background 0.1s;
}

.install-hint-btn:hover {
  background: var(--white);
}

.install-hint-dismiss {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--grey-mid);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px 6px;
  line-height: 1;
  transition: color 0.1s;
}

.install-hint-dismiss:hover {
  color: var(--white);
}

/* ── Utility ────────────────────────────────────────────── */
.hidden { display: none !important; }

/* ── Mobile Optimizations ───────────────────────────────── */
@media (max-width: 480px) {
  .boot-logo { font-size: 10px; }
  .press-start-btn { font-size: 9px; padding: 14px 24px; }
  .drop-card { padding: 16px; }
  .detail-body { padding: 24px 16px; }
}
