/* App showcase — phones + Play Store CTA. Loaded after styles-showcase.css. */

.app-hero {
  margin-bottom: 48px;
}

.store-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}
.play-btn {
  display: inline-block;
  padding: 13px 28px;
  border: 1px solid var(--red);
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 3px;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.play-btn:hover {
  background: var(--red-bright);
}
.play-btn-ghost {
  background: transparent;
  color: var(--white);
}
.play-btn-ghost:hover {
  background: rgba(229, 51, 31, 0.16);
}

.app-note {
  margin-top: 14px;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
}
.app-note a {
  color: var(--gold);
  text-decoration: none;
}
.app-note a:hover { color: var(--white); }

.app-reel-section { margin-top: 10px; }
.app-reel-section .eyebrow { margin-bottom: 22px; }

.app-reel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 2px 18px;
  -webkit-overflow-scrolling: touch;
}
.app-reel::-webkit-scrollbar {
  height: 4px;
}
.app-reel::-webkit-scrollbar-thumb {
  background: rgba(229, 51, 31, 0.55);
}

.app-phone {
  position: relative;
  flex: 0 0 168px;
  aspect-ratio: 9 / 19.2;
  overflow: hidden;
  scroll-snap-align: center;
  border: 1px solid rgba(232, 214, 180, 0.16);
  border-radius: 22px;
  background: #0c0b0a;
  box-shadow: 0 0 28px rgba(229, 51, 31, 0.12);
}
.app-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04) brightness(0.92);
  transition: transform 0.45s ease, filter 0.35s ease;
}
.app-phone:hover img {
  transform: scale(1.03);
  filter: contrast(1.06) brightness(1);
}
.app-phone figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 1;
  pointer-events: none;
}
.app-phone .shot-num {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--red);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}
.app-phone-open {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}
.app-phone-open img {
  display: block;
}

.app-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 64px 28px;
  background: rgba(5, 4, 4, 0.92);
}
.app-lightbox[hidden] { display: none; }
body.app-lightbox-open { overflow: hidden; }
.app-lightbox-img {
  max-width: min(92vw, 420px);
  max-height: calc(100vh - 96px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 28px;
  border: 1px solid rgba(232, 214, 180, 0.18);
  box-shadow: 0 0 48px rgba(229, 51, 31, 0.18);
}
.app-lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: 0;
  color: var(--gold);
  font-family: "Share Tech Mono", monospace;
  font-size: 12px;
  letter-spacing: 3px;
  cursor: pointer;
}
.app-lightbox-close:hover { color: var(--white); }
.app-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(232, 214, 180, 0.22);
  background: rgba(10, 8, 7, 0.7);
  color: var(--white);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}
.app-lightbox-nav.prev { left: 16px; }
.app-lightbox-nav.next { right: 16px; }
.app-lightbox-nav:hover {
  border-color: var(--red);
  color: var(--red);
}

.app-features { margin-top: 48px; }
.app-features .eyebrow { margin-bottom: 22px; }

.app-cta { margin-top: 56px; }
.app-cta .store-btns { margin-top: 22px; }

@media (min-width: 1180px) {
  .app-reel {
    justify-content: center;
    overflow: visible;
  }
}

@media (max-width: 820px) {
  .app-phone { flex-basis: 150px; }
}

@media (max-width: 520px) {
  .app-phone { flex-basis: 142px; }
  .play-btn {
    letter-spacing: 2px;
    padding: 12px 18px;
  }
  .app-lightbox {
    padding: 56px 12px 24px;
  }
  .app-lightbox-nav {
    width: 40px;
    height: 40px;
  }
  .app-lightbox-nav.prev { left: 6px; }
  .app-lightbox-nav.next { right: 6px; }
}
