/* ===== TizVision — gallery.css ===== */

.gallery-page {
  padding-top: 100px;
  padding-bottom: 48px;
  background:
    radial-gradient(ellipse 1050px 480px at 50% 0%, rgba(240,164,40,0.17), transparent 70%),
    var(--bg);
}
.gallery-head {
  max-width: 1080px;
  margin-bottom: 16px;
}
.gallery-head .section-lead { white-space: nowrap; }

.gallery-page .theme-chips { margin-bottom: 18px; }

.gallery-stage {
  position: relative;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 48px;
}

.monitor {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.5));
}

.monitor-frame {
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, #2e2f36, #1a1b20 70%, #141519);
  border: 1px solid #43444d;
  border-radius: 16px;
  padding: 18px 12px 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.monitor-cam {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10101a;
  box-shadow: inset 0 0 2px rgba(140, 180, 255, 0.5), 0 0 0 2px rgba(0, 0, 0, 0.35);
}

.monitor-screen {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  background: #15151f;
  border: 1px solid rgba(0, 0, 0, 0.55);
  aspect-ratio: 16 / 9;
}

.monitor-screen img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.monitor-screen img.is-slide {
  transition: transform .32s ease;
  will-change: transform;
}

.monitor-stand {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.monitor-neck {
  width: 18px;
  height: 20px;
  background: linear-gradient(180deg, #4a4b54, #2a2b31);
  border-inline: 1px solid #43444d;
}
.monitor-foot {
  width: 96px;
  height: 8px;
  border-radius: 8px;
  background: linear-gradient(180deg, #3a3b44, #1a1b20);
  border: 1px solid #43444d;
}

.monitor figcaption {
  margin-top: 10px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  direction: ltr;
}
.gallery-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
}
.gallery-dots button.is-active {
  background: var(--gold);
  box-shadow: 0 0 8px rgba(240, 164, 40, 0.45);
}

.gallery-arrow {
  position: absolute;
  top: 34%;
  z-index: 3;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: rgba(28, 28, 40, 0.88);
  color: var(--gold-soft);
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.gallery-arrow:hover {
  border-color: var(--gold);
  background: rgba(240, 164, 40, 0.12);
  transform: scale(1.05);
}
.gallery-arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.gallery-arrow.is-left { left: 0; }
.gallery-arrow.is-right { right: 0; }

@media (max-width: 720px) {
  .gallery-page { padding-top: 88px; }
  .gallery-head .section-lead { white-space: normal; }
  .gallery-stage { padding-inline: 0; }
  .gallery-arrow {
    top: 28%;
    width: 38px;
    height: 38px;
    background: rgba(12, 12, 18, 0.72);
  }
  .gallery-arrow.is-left { left: 6px; }
  .gallery-arrow.is-right { right: 6px; }
  .chip { padding: 8px 14px; font-size: 13px; }
}
