:root {
  --accent: #e50914;
  --bg: #0a0a0b;
  --bg-2: #141414;
  --card: #1c1c1f;
  --card-2: #2a2a2e;
  --text: #f3f3f4;
  --muted: #a7a7ad;
  --muted-2: #6f6f76;
  --line: rgba(255,255,255,0.08);
  --nav-h: 68px;
  --shadow: 0 24px 60px rgba(0,0,0,0.7);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

.ix-wordmark {
  font-family: "Anton", sans-serif;
  color: var(--accent);
  letter-spacing: 0.06em;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
  background: none; border: none; padding: 0;
  text-shadow: 0 2px 18px rgba(0,0,0,0.5);
}

/* ============ SHOT / SCREENSHOT PLACEHOLDER ============ */
.ix-shot {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background:
    radial-gradient(120% 120% at 70% 10%, #26262b 0%, #161619 55%, #0e0e10 100%);
  display: flex; align-items: center; justify-content: center;
}
.ix-shot-stripes {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg, rgba(255,255,255,0.035) 0 10px, transparent 10px 20px);
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), rgba(0,0,0,0.35));
}
.ix-shot-label {
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-family: "DM Mono", ui-monospace, monospace;
  color: var(--muted-2);
  text-align: center; padding: 12px;
}
.ix-shot-frame { font-size: 22px; opacity: 0.5; }
.ix-shot-name { font-size: 12px; letter-spacing: 0.04em; color: var(--muted); }
.ix-shot-hint { font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.65; }

/* image/video fill the shot frame */
.ix-shot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* cards + billboard: fill the frame, crop overflow */
  display: block;
}
/* modal hero: show the whole screenshot uncropped */
.ix-modal-hero .ix-shot-img { object-fit: contain; background: #000; }

/* ============ SPLASH ============ */
.ix-splash {
  position: fixed; inset: 0; z-index: 200;
  background: #0a0a0b;
  display: flex; flex-direction: column;
  opacity: 1;
}
.ix-splash.leaving { animation: ix-fade-out 0.6s ease both; }
@keyframes ix-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes ix-fade-out { to { opacity: 0; transform: scale(1.04); } }
.ix-splash-bar { padding: 22px 48px; }
.ix-splash-bar .ix-wordmark { font-size: 30px; }
.ix-splash-center {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 36px;
  padding-bottom: 8vh;
}
.ix-splash-title {
  font-size: clamp(28px, 5vw, 56px); font-weight: 400;
  letter-spacing: -0.01em; margin: 0; text-align: center;
  color: #fff;
}
.ix-splash-grid {
  display: flex; flex-wrap: wrap; gap: clamp(18px, 4vw, 44px);
  justify-content: center; max-width: 880px;
}
.ix-avatar {
  background: none; border: none; padding: 0;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  color: var(--muted); transition: color 0.2s;
}
.ix-avatar-face {
  width: clamp(96px, 13vw, 150px); aspect-ratio: 1;
  border-radius: 8px; overflow: hidden;
  background:
    linear-gradient(150deg, color-mix(in oklab, var(--pf) 92%, white 8%), color-mix(in oklab, var(--pf) 55%, black 45%));
  display: flex; align-items: center; justify-content: center;
  border: 3px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}
.ix-avatar-inner {
  font-family: "Anton", sans-serif; font-size: clamp(40px, 6vw, 66px);
  color: rgba(255,255,255,0.92); text-shadow: 0 3px 12px rgba(0,0,0,0.35);
}
.ix-avatar-ghost {
  background: #1a1a1d; border: 3px solid transparent;
}
.ix-avatar-plus { font-size: 56px; color: var(--muted-2); font-weight: 200; }
.ix-avatar-label { font-size: 17px; letter-spacing: 0.01em; }
.ix-avatar:hover { color: #fff; }
.ix-avatar:hover .ix-avatar-face { border-color: #fff; transform: translateY(-2px); }
.ix-splash-foot {
  letter-spacing: 0.22em; text-transform: uppercase; font-size: 13px;
  color: var(--muted-2); border: 1px solid var(--muted-2); padding: 9px 20px;
  font-weight: 500; white-space: nowrap;
}

/* ============ NAV ============ */
.ix-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 120;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 52px);
  background: linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
  transition: background 0.3s;
}
.ix-nav.solid { background: #0a0a0b; box-shadow: 0 1px 0 var(--line); }
.ix-nav-left { display: flex; align-items: center; gap: 34px; }
.ix-nav-logo { font-size: 28px; cursor: pointer; }
.ix-nav-links { display: flex; gap: 22px; }
.ix-nav-links a {
  font-size: 14px; color: #e6e6e8; opacity: 0.86; transition: opacity 0.2s;
}
.ix-nav-links a:hover { opacity: 1; color: #fff; }
.ix-nav-right { display: flex; align-items: center; gap: 16px; }
.ix-nav-ico {
  font-size: 13px; letter-spacing: 0.02em; color: var(--muted);
  transition: color 0.2s;
}
.ix-nav-ico:hover { color: #fff; }
.ix-nav-avatar {
  width: 34px; height: 34px; border-radius: 5px;
  display: grid; place-items: center; font-weight: 700; font-size: 16px;
  color: #fff;
  background: linear-gradient(150deg, var(--pf), color-mix(in oklab, var(--pf) 55%, black 45%));
}
@media (max-width: 720px) { .ix-nav-links { display: none; } }

/* ============ BILLBOARD ============ */
.ix-billboard {
  position: relative; width: 100%;
  height: min(88vh, 820px); min-height: 540px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.ix-billboard-art { position: absolute; inset: 0; }
.ix-billboard-art .ix-shot { height: 100%; }
.ix-billboard-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(77deg, rgba(8,8,9,0.92) 0%, rgba(8,8,9,0.55) 38%, rgba(8,8,9,0.05) 70%);
}
.ix-billboard-bottom-scrim {
  position: absolute; left: 0; right: 0; bottom: 0; height: 220px;
  background: linear-gradient(0deg, var(--bg) 2%, rgba(10,10,11,0) 100%);
}
.ix-billboard-content {
  position: relative; z-index: 3;
  padding: 0 clamp(18px, 4vw, 52px) clamp(60px, 9vh, 120px);
  max-width: 720px;
}
.ix-billboard-kicker {
  display: flex; align-items: center; gap: 11px;
  letter-spacing: 0.3em; font-size: 14px; font-weight: 600;
  color: #e9e9ec; margin-bottom: 16px; text-transform: uppercase;
}
.ix-ix-tag {
  font-family: "Anton", sans-serif; color: var(--accent);
  font-size: 26px; letter-spacing: 0; line-height: 1;
}
.ix-billboard-logo {
  display: flex; flex-direction: column;
  font-family: "Anton", sans-serif;
  font-size: clamp(52px, 9vw, 116px); line-height: 0.92;
  letter-spacing: 0.01em; color: #fff;
  text-shadow: 0 6px 30px rgba(0,0,0,0.5); margin-bottom: 20px;
}
.ix-billboard-tags {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-bottom: 16px; font-size: 15px;
}
.ix-billboard-year { color: var(--muted); }
.ix-badge-inline {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  color: var(--accent); border: 1px solid color-mix(in oklab, var(--accent) 60%, transparent);
  padding: 2px 7px; border-radius: 3px;
}
.ix-badge-inline.sm { font-size: 10px; }
.ix-billboard-hd {
  font-size: 11px; color: var(--muted); border: 1px solid var(--line);
  padding: 1px 6px; border-radius: 3px; letter-spacing: 0.08em;
}
.ix-billboard-tagline {
  font-size: clamp(16px, 1.7vw, 21px); line-height: 1.45;
  color: #e8e8ea; margin: 0 0 18px; text-wrap: pretty;
  max-width: 620px; text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
.ix-billboard-meta {
  display: flex; align-items: center; gap: 9px; flex-wrap: wrap;
  color: var(--muted); font-size: 14px; margin-bottom: 26px;
}
.ix-dotsep { color: var(--muted-2); }
.ix-billboard-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.ix-billboard-rating {
  margin-top: 20px; font-size: 13px; color: var(--muted);
  border-left: 3px solid var(--accent); padding: 4px 0 4px 12px;
  background: linear-gradient(90deg, rgba(255,255,255,0.04), transparent);
}
.ix-billboard-greet {
  margin-top: 14px; font-size: 14px; color: var(--muted); font-style: italic;
}

/* ============ BUTTONS ============ */
.ix-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 28px; border: none; border-radius: 5px;
  font-size: 17px; font-weight: 600; letter-spacing: 0.01em;
  transition: transform 0.12s, background 0.2s, opacity 0.2s;
}
.ix-btn:active { transform: scale(0.97); }
.ix-btn-ico { font-size: 16px; }
.ix-btn-play { background: #fff; color: #0a0a0b; }
.ix-btn-play:hover { background: rgba(255,255,255,0.78); }
.ix-btn-info { background: rgba(109,109,114,0.55); color: #fff; }
.ix-btn-info:hover { background: rgba(109,109,114,0.4); }

/* ============ ROWS ============ */
.ix-rows { padding: 8px 0 40px; position: relative; z-index: 4; margin-top: -60px; }
.ix-row { margin: 0 0 34px; }
.ix-row-title {
  font-size: clamp(17px, 1.6vw, 23px); font-weight: 700; color: #e9e9ec;
  margin: 0 0 12px; padding: 0 clamp(18px, 4vw, 52px);
  letter-spacing: 0.01em;
}
.ix-row-viewport { position: relative; }
.ix-row-track {
  display: flex; gap: 9px; align-items: flex-start; overflow-x: auto; scroll-snap-type: x proximity;
  padding: 6px clamp(18px, 4vw, 52px) 24px;
  scrollbar-width: none;
}
.ix-row-track::-webkit-scrollbar { display: none; }
.ix-row-arrow {
  position: absolute; top: 0; bottom: 24px; width: clamp(18px, 4vw, 52px);
  z-index: 6; border: none; color: #fff; font-size: 34px;
  background: linear-gradient(90deg, rgba(8,8,9,0.7), rgba(8,8,9,0));
  opacity: 0; transition: opacity 0.2s; display: grid; place-items: center;
}
.ix-row-arrow.right { right: 0; background: linear-gradient(270deg, rgba(8,8,9,0.7), rgba(8,8,9,0)); }
.ix-row-arrow.left { left: 0; }
.ix-row-viewport:hover .ix-row-arrow { opacity: 1; }

/* ============ TITLE CARD ============ */
.ix-card {
  position: relative; flex: 0 0 auto;
  width: clamp(230px, 24vw, 320px);
  background: var(--card); border: none; border-radius: 5px;
  padding: 0; overflow: visible; scroll-snap-align: start;
  transition: transform 0.28s cubic-bezier(.2,.7,.3,1), z-index 0s;
  text-align: left; color: var(--text);
}
.ix-card-art {
  position: relative; aspect-ratio: 16/9; border-radius: 5px; overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}
.ix-card-badge { position: absolute; top: 8px; left: 8px; z-index: 3; }
.ix-card-rating {
  position: absolute; top: 8px; right: 8px; z-index: 3;
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em; color: #fff;
  background: rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.25);
  padding: 2px 6px; border-radius: 3px; backdrop-filter: blur(2px);
}
.ix-card-progress { position: absolute; left: 8px; right: 8px; bottom: 8px; z-index: 3; }
.ix-card-hover {
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--card); border-radius: 0 0 6px 6px;
  padding: 12px 14px 16px; opacity: 0; pointer-events: none;
  transform: translateY(-6px); transition: opacity 0.2s, transform 0.2s;
  box-shadow: var(--shadow);
}
.ix-card:hover { transform: scale(1.18) translateY(-6px); z-index: 20; }
.ix-card:hover .ix-card-art { border-radius: 6px 6px 0 0; }
.ix-card:hover .ix-card-hover { opacity: 1; transform: translateY(0); pointer-events: auto; }
.ix-card-actions { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.ix-ico-btn {
  width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  border: 1.6px solid rgba(255,255,255,0.5); color: #fff; font-size: 14px;
  background: rgba(40,40,44,0.6); transition: border-color 0.15s, background 0.15s;
}
.ix-ico-btn:hover { border-color: #fff; background: rgba(255,255,255,0.12); }
.ix-ico-play { background: #fff; color: #0a0a0b; border-color: #fff; }
.ix-ico-more { margin-left: auto; }
.ix-card-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 7px; }
.ix-card-year { font-size: 12px; color: var(--muted); border: 1px solid var(--line); padding: 0 5px; border-radius: 3px; }
.ix-card-title { font-size: 15px; font-weight: 700; line-height: 1.2; margin-bottom: 4px; }
.ix-card-genre { font-size: 12px; color: var(--muted); }
.ix-match { color: #67d28a; font-weight: 700; font-size: 13px; }

/* ============ BADGES ============ */
.ix-badge-new {
  font-family: "Anton", sans-serif; color: var(--accent);
  font-size: 12px; letter-spacing: 0.12em; text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.ix-badge-top { display: inline-flex; align-items: flex-end; gap: 4px; }
.ix-badge-top-box {
  font-family: "Anton", sans-serif; color: #fff; font-size: 11px; line-height: 0.82;
  background: var(--accent); padding: 4px 5px; border-radius: 3px; text-align: center;
}
.ix-badge-top-text { display: none; }

/* ============ PROGRESS ============ */
.ix-progress { height: 4px; background: rgba(255,255,255,0.28); border-radius: 2px; overflow: hidden; }
.ix-progress-fill { height: 100%; background: var(--accent); }

/* ============ SKILL CARD ============ */
.skills-track .ix-skill { scroll-snap-align: start; }
.ix-skill {
  flex: 0 0 auto; width: clamp(220px, 22vw, 280px);
  background: var(--card); border-radius: 7px; overflow: hidden;
  border: 1px solid var(--line);
}
.ix-skill-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 15px 10px;
}
.ix-skill-name { font-size: 16px; font-weight: 700; }
.ix-skill-rating {
  font-size: 10px; font-weight: 700; letter-spacing: 0.06em; color: var(--muted);
  border: 1px solid var(--line); padding: 2px 6px; border-radius: 3px;
}
.ix-skill .ix-shot { aspect-ratio: 16/9; }
.ix-skill-body { padding: 13px 15px 16px; display: flex; flex-direction: column; gap: 9px; }
.ix-skill-note { font-size: 12.5px; color: var(--muted); }
.ix-dots { display: inline-flex; gap: 6px; }
.ix-dot { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,0.16); }
.ix-dot.on { background: var(--accent); box-shadow: 0 0 8px color-mix(in oklab, var(--accent) 60%, transparent); }

/* ============ DAY CARD ============ */
.day-track { align-items: stretch; }
.ix-day {
  position: relative; flex: 0 0 auto;
  width: clamp(300px, 32vw, 400px);
  display: flex; align-items: center; gap: 4px;
  scroll-snap-align: start; padding: 6px 0;
}
.ix-day-num {
  font-family: "Anton", sans-serif; font-size: clamp(64px, 8vw, 104px);
  line-height: 0.8; color: #0a0a0b; -webkit-text-stroke: 3px var(--muted-2);
  flex: 0 0 auto; margin-right: -4px;
}
.ix-day-art {
  position: relative; width: clamp(150px, 16vw, 200px); aspect-ratio: 16/10;
  border-radius: 5px; overflow: hidden; flex: 0 0 auto;
}
.ix-day-emoji {
  position: absolute; right: 8px; bottom: 6px; font-size: 26px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}
.ix-day-text { flex: 1; padding-left: 12px; min-width: 0; }
.ix-day-head { display: flex; align-items: baseline; gap: 8px; }
.ix-day-title { font-size: 15px; font-weight: 700; }
.ix-day-match { font-size: 12px; color: #67d28a; font-weight: 700; }
.ix-day-blurb { font-size: 12.5px; color: var(--muted); margin: 5px 0 0; line-height: 1.4; }

/* ============ MODAL ============ */
.ix-modal-backdrop {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,0.78); backdrop-filter: blur(3px);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 4vh 16px 40px; overflow-y: auto;
  opacity: 1;
}
.ix-modal {
  width: min(880px, 100%); background: #181818; border-radius: 9px;
  overflow: hidden; box-shadow: var(--shadow); position: relative;
  opacity: 1;
}
@keyframes ix-modal-pop { from { opacity: 0; transform: translateY(24px) scale(0.97); } to { opacity: 1; transform: none; } }
.ix-modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 6;
  width: 36px; height: 36px; border-radius: 50%; border: none;
  background: #181818; color: #fff; font-size: 16px;
  display: grid; place-items: center;
}
.ix-modal-close:hover { background: #2a2a2e; }
.ix-modal-hero { position: relative; aspect-ratio: 16/8.4; }
.ix-modal-hero .ix-shot { height: 100%; }
.ix-modal-hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, #181818 2%, rgba(24,24,24,0.1) 55%, rgba(24,24,24,0.3) 100%);
  pointer-events: none;   /* let clicks reach the gallery/zoom underneath */
}
.ix-modal-hero-content { position: absolute; left: 0; right: 0; bottom: 0; padding: 0 40px 26px; z-index: 3; }
.ix-modal-title {
  font-family: "Anton", sans-serif; font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1; margin: 0 0 20px; color: #fff; max-width: 80%;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6); text-transform: uppercase; letter-spacing: 0.01em;
}
.ix-modal-cta { display: flex; align-items: center; gap: 12px; }
.ix-round-btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5); background: rgba(42,42,46,0.5);
  color: #fff; display: grid; place-items: center; font-size: 15px; font-weight: 700;
  transition: border-color 0.15s;
}
.ix-round-btn:hover { border-color: #fff; }
.ix-modal-body { padding: 8px 40px 36px; display: grid; grid-template-columns: 1fr 0.5fr; gap: 28px; }
.ix-modal-line { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; font-size: 14px; }
.ix-modal-year { color: #67d28a; font-weight: 700; }
.ix-modal-runtime { color: var(--muted); }
.ix-rating {
  font-size: 11px; color: #fff; border: 1px solid rgba(255,255,255,0.3);
  padding: 1px 6px; border-radius: 3px; letter-spacing: 0.06em;
}
.ix-modal-desc { font-size: 15.5px; line-height: 1.6; color: #dcdcde; margin: 0 0 18px; text-wrap: pretty; }
.ix-modal-highlights { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 9px; }
.ix-modal-highlights li {
  font-size: 14px; color: #cfcfd2; padding-left: 22px; position: relative; line-height: 1.45;
}
.ix-modal-highlights li::before {
  content: "▸"; position: absolute; left: 0; color: var(--accent); font-size: 13px; top: 1px;
}
.ix-modal-side { display: flex; flex-direction: column; gap: 14px; }
.ix-modal-side-label { color: var(--muted-2); font-size: 13px; }
.ix-modal-side-val { color: #e3e3e5; font-size: 13.5px; line-height: 1.5; }
@media (max-width: 640px) {
  .ix-modal-body { grid-template-columns: 1fr; gap: 18px; }
  .ix-modal-hero-content { padding: 0 22px 20px; }
  .ix-modal-body { padding: 8px 22px 28px; }
}

/* ============ FOOTER ============ */
.ix-footer {
  padding: 50px clamp(18px, 4vw, 52px) 70px; border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 14px;
}
.ix-footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.ix-footer-links a { font-size: 14px; color: var(--muted); transition: color 0.2s; }
.ix-footer-links a:hover { color: #fff; }
.ix-footer-name { font-size: 14px; color: #cfcfd2; margin: 6px 0 0; font-weight: 600; }
.ix-footer-fine { font-size: 12px; color: var(--muted-2); margin: 0; }

/* reduce-motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.05ms !important; }
  html { scroll-behavior: auto; }
}

/* ============ RESTRICTED / LOCKED ============ */
.ix-btn-locked {
  background: rgba(255, 255, 255, 0.12);
  color: #b3b3b3;
  cursor: not-allowed;
}
.ix-modal-note {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-top: 14px;
  padding: 12px 14px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  font-size: 0.9rem;
  color: #d2d2d2;
  line-height: 1.4;
}
.ix-modal-note-ico { flex: 0 0 auto; }

/* ============ GALLERY ============ */
.ix-gallery { position: relative; width: 100%; height: 100%; }
.ix-gallery-frame { width: 100%; height: 100%; cursor: zoom-in; }

.ix-gal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  z-index: 3;
}
.ix-gal-arrow:hover { background: rgba(0, 0, 0, 0.8); }
.ix-gal-prev { left: 14px; }
.ix-gal-next { right: 14px; }

.ix-gal-dots {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 3;
}
.ix-gal-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}
.ix-gal-dot.on { background: #fff; }

.ix-gal-zoom {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(0,0,0,0.55); color: #fff; font-size: 16px;
  pointer-events: none;
}

/* ============ LIGHTBOX ============ */
.ix-lightbox {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  padding: 4vh 4vw; cursor: zoom-out;
}
.ix-lightbox-img {
  max-width: 100%; max-height: 100%;
  object-fit: contain; cursor: default;
  border-radius: 4px; box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.ix-lightbox-close {
  position: absolute; top: 20px; right: 24px;
  width: 42px; height: 42px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.15); color: #fff; font-size: 18px;
  z-index: 2;
}
.ix-lightbox-close:hover { background: rgba(255,255,255,0.3); }