/* ============================================
   MIRACLE ON THE PRECIPICE — Landing Page
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #E8E0D4;
  background: #1D0E03;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* --- Utilities --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* --- Typography --- */
h1, h2, h3 { font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif; font-weight: 700; line-height: 1.15; }
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: 0.5rem;
  color: #F5F0E8;
}
.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #B8A98A;
  margin-bottom: 3rem;
  font-weight: 300;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
}
.btn-primary {
  background: linear-gradient(135deg, #02CA81 0%, #33D99A 50%, #02CA81 100%);
  color: #252018;
  border-color: #02CA81;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #33D99A 0%, #5BE8B5 50%, #33D99A 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(2, 202, 129, 0.35);
}
.btn-outline {
  background: transparent;
  color: #33D99A;
  border-color: #33D99A;
}
.btn-outline:hover {
  background: rgba(229, 184, 90, 0.1);
  transform: translateY(-2px);
}
.btn-large { padding: 18px 48px; font-size: 1.15rem; }

/* ============================================
   CITY PICKER
   ============================================ */
#cityPicker {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #1D0E03 url('/assets/hero-bg.jpg') center center / cover no-repeat;
  overflow: hidden;
}
.city-picker-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(2, 202, 129, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(29, 14, 3, 0.95) 0%, transparent 50%),
    linear-gradient(180deg, rgba(29, 14, 3, 0.5) 0%, rgba(29, 14, 3, 0.85) 100%);
  z-index: 1;
}
.city-picker-content {
  position: relative;
  z-index: 2;
  padding: 40px 24px;
  max-width: 900px;
  width: 100%;
}
/* City select dropdown */
.city-select-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 2rem;
}
.city-select-label {
  font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #B8A98A;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-align: left;
}
.city-select-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.city-select-wrapper {
  position: relative;
  width: 100%;
  max-width: 380px;
}
.city-select {
  width: 100%;
  padding: 16px 48px 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(2, 202, 129, 0.3);
  border-radius: 10px;
  color: #E8E0D4;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.city-select:focus {
  border-color: #02CA81;
  box-shadow: 0 0 0 3px rgba(2, 202, 129, 0.2);
}
.city-select:hover {
  border-color: rgba(2, 202, 129, 0.5);
}
.city-select option {
  background: #252018;
  color: #E8E0D4;
  padding: 12px;
}
.city-select-wrapper::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid #02CA81;
  pointer-events: none;
}
.btn-city-go {
  min-width: 200px;
  padding: 16px 48px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
.btn-city-go:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

@media (max-width: 480px) {
  .city-select-area { padding: 0 16px; }
  .city-select-wrapper { max-width: 100%; }
  .btn-city-go { width: 100%; max-width: 380px; }
}

/* ============================================
   HERO
   ============================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #1D0E03 url('/assets/hero-bg.jpg') center center / cover no-repeat;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(2, 202, 129, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(29, 14, 3, 0.95) 0%, transparent 50%),
    linear-gradient(180deg, rgba(29, 14, 3, 0.5) 0%, rgba(29, 14, 3, 0.85) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 24px;
  max-width: 1100px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 60px;
  text-align: left;
}
.hero-text {
  flex: 1;
}
.hero-poster {
  flex: 0 0 280px;
}
.hero-poster img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(2, 202, 129, 0.15);
}
/* --- Title Lockup (logo treatment) --- */
.title-lockup {
  font-family: 'Jost', sans-serif;
  text-transform: uppercase;
  color: #F5F0E8;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 0.9;
  letter-spacing: 0.2em;
}
.lockup-line1 {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 700;
}
.lockup-a {
  font-size: 1.5em;
  line-height: 0.7;
  vertical-align: baseline;
  position: relative;
  top: 0.04em;
}
.lockup-line2 {
  font-size: clamp(0.75rem, 1.8vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.35em;
  color: #B8A98A;
  margin: 0.15em 0;
}
.lockup-line3 {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 700;
}
.hero-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, #F5F0E8 0%, #33D99A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-headline {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: #B8A98A;
  margin-bottom: 1rem;
  font-weight: 300;
}
.hero-cast {
  font-size: 0.85rem;
  color: #8A7D6B;
  font-style: italic;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
}

/* --- Trailer Section --- */
#trailer {
  padding: 80px 0;
  background: linear-gradient(180deg, #1A150F 0%, #1D0E03 100%);
  border-top: 1px solid rgba(2, 202, 129, 0.1);
  border-bottom: 1px solid rgba(2, 202, 129, 0.1);
}
#trailer .section-title {
  margin-bottom: 2rem;
}
.trailer-wrapper {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(2, 202, 129, 0.2);
}
lite-youtube {
  display: block;
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background-color: #000;
  background-position: center;
  background-size: cover;
  cursor: pointer;
}
lite-youtube > .lty-playbtn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1;
  opacity: 0.9;
  transition: opacity 0.2s, transform 0.2s;
}
lite-youtube:hover > .lty-playbtn { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
.lty-playbtn-bg { transition: fill 0.1s; }
lite-youtube:hover .lty-playbtn-bg { fill: #f00; fill-opacity: 1; }
lite-youtube > iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.btn-hero { min-width: 260px; }

/* ============================================
   STATS BAR
   ============================================ */
#stats {
  background: linear-gradient(90deg, #1A150F 0%, #252018 50%, #1A150F 100%);
  border-top: 1px solid rgba(2, 202, 129, 0.15);
  border-bottom: 1px solid rgba(2, 202, 129, 0.15);
  padding: 28px 0;
}
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #33D99A;
}
.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #8A7D6B;
  font-weight: 500;
}

/* ============================================
   ROLES
   ============================================ */
#roles {
  padding: 100px 0;
  background: #1D0E03;
}
.roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.role-card {
  background: linear-gradient(180deg, #0F2A24 0%, #1D0E03 100%);
  border: 1px solid rgba(2, 202, 129, 0.15);
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.role-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #02CA81, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.role-card:hover {
  transform: translateY(-8px);
  border-color: rgba(2, 202, 129, 0.4);
  box-shadow: 0 20px 50px rgba(2, 202, 129, 0.1);
}
.role-card:hover::before { opacity: 1; }
.role-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(2, 202, 129, 0.1);
  border: 1px solid rgba(2, 202, 129, 0.25);
  font-size: 1.8rem;
}
.role-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #F5F0E8;
}
.role-card p {
  font-size: 0.92rem;
  color: #9A8E7E;
  margin-bottom: 24px;
  line-height: 1.6;
  flex: 1;
}
.role-card .btn {
  width: 100%;
  max-width: 150px;
  margin: 0 auto;
  padding: 12px 20px;
  font-size: 0.9rem;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.3;
}

/* ============================================
   ROLE FORM
   ============================================ */
.role-form-section {
  padding: 60px 0;
  background: #1A150F;
}
.form-card {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(180deg, #0F2A24 0%, #1D0E03 100%);
  border: 1px solid rgba(2, 202, 129, 0.2);
  border-radius: 20px;
  padding: 48px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.form-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #8A7D6B;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}
.form-close:hover { color: #33D99A; }
.form-title {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: #F5F0E8;
}
.form-description {
  font-size: 0.95rem;
  color: #9A8E7E;
  margin-bottom: 32px;
  line-height: 1.6;
}
.form-fields { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #B8A98A;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.form-group label .required { color: #02CA81; margin-left: 2px; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(2, 202, 129, 0.2);
  border-radius: 8px;
  color: #E8E0D4;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #02CA81;
  box-shadow: 0 0 0 3px rgba(2, 202, 129, 0.15);
}
.form-group select { cursor: pointer; }
.form-group select option { background: #252018; color: #E8E0D4; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input.error,
.form-group select.error { border-color: #D4533C; }
.btn-submit { width: 100%; margin-top: 12px; padding: 16px; font-size: 1.05rem; }
.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* Success State */
.form-success {
  text-align: center;
  padding: 40px 0;
}
.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: rgba(2, 202, 129, 0.15);
  border: 2px solid #02CA81;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #33D99A;
}
.form-success h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: #F5F0E8;
}
.form-success p { color: #9A8E7E; font-size: 1rem; }

/* ============================================
   ABOUT
   ============================================ */
#about {
  padding: 100px 0;
  background: linear-gradient(180deg, #1D0E03 0%, #1A150F 100%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text .section-title { text-align: left; margin-bottom: 1.5rem; }
.about-synopsis {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #B8A98A;
  margin-bottom: 2rem;
}
.about-poster-frame {
  aspect-ratio: 2/3;
  max-width: 360px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(2, 202, 129, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.poster-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #252018 0%, #0F2A24 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6A6058;
  font-size: 1.2rem;
  font-weight: 500;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
#testimonials {
  padding: 100px 0;
  background: #1D0E03;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.testimonial-card {
  background: linear-gradient(180deg, #0F2A24 0%, #1D0E03 100%);
  border: 1px solid rgba(2, 202, 129, 0.1);
  border-radius: 16px;
  padding: 36px;
}
.testimonial-quote {
  font-size: 1.05rem;
  font-style: italic;
  color: #B8A98A;
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid rgba(2, 202, 129, 0.3);
}
.testimonial-author {
  font-weight: 600;
  color: #F5F0E8;
  font-size: 0.95rem;
}
.testimonial-org {
  font-size: 0.85rem;
  color: #8A7D6B;
}

/* ============================================
   BILLING BLOCK
   ============================================ */
#billingBlock {
  padding: 40px 0;
  background: #1D0E03;
  text-align: center;
}
.billing-block {
  max-width: 750px;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.billing-block p {
  margin: 0;
}
.billing-cast {
  font-size: 0.75rem;
  color: rgba(245, 240, 232, 0.6);
}
.billing-role {
  text-transform: lowercase;
  font-size: 0.55rem;
  letter-spacing: 0.08em;
}

/* ============================================
   FINAL CTA
   ============================================ */
#finalCta {
  padding: 100px 0;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(2, 202, 129, 0.06) 0%, transparent 60%),
    #1A150F;
}
.final-cta-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 1rem;
  color: #F5F0E8;
}
.final-cta-text {
  font-size: 1.15rem;
  color: #9A8E7E;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

/* ============================================
   FOOTER
   ============================================ */
#footer {
  background: #120A04;
  padding: 48px 0;
  border-top: 1px solid rgba(2, 202, 129, 0.1);
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-title {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  color: #33D99A;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer-tagline { font-size: 0.85rem; color: #8A7D6B; }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  color: #8A7D6B;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: #33D99A; }
.footer-legal p { font-size: 0.8rem; color: #6A6058; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}
.fade-in-up:nth-child(1) { animation-delay: 0.1s; }
.fade-in-up:nth-child(2) { animation-delay: 0.2s; }
.fade-in-up:nth-child(3) { animation-delay: 0.3s; }
.fade-in-up:nth-child(4) { animation-delay: 0.4s; }

/* Form slide animation */
.role-form-section {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.4s ease;
  opacity: 0;
  padding: 0;
}
.role-form-section.visible {
  max-height: 1200px;
  opacity: 1;
  padding: 60px 0;
  display: block !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .hero-text { order: 1; }
  .hero-poster {
    order: 0;
    flex: 0 0 auto;
    max-width: 200px;
  }
  .title-lockup { align-items: center; }
  .hero-headline { margin-bottom: 1.5rem; }
  .btn-hero { margin: 0 auto; }
  .city-select-area { align-items: center; }
  .city-select-label { text-align: center; }
  .city-select-row { flex-direction: column; }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-text .section-title { text-align: center; }
  .about-poster-frame { max-width: 280px; }
  .roles-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .role-card { padding: 28px 20px; }
  .form-card { padding: 32px 24px; margin: 0 12px; }
  .stats-bar { gap: 30px; }
  .stat-number { font-size: 1.8rem; }
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .trailer-wrapper { border-radius: 8px; }
  #trailer { padding: 40px 0; }
}
@media (max-width: 480px) {
  .roles-grid { grid-template-columns: 1fr; max-width: 360px; }
  .hero-content { padding: 30px 16px; }
  .hero-poster { max-width: 160px; }
  .form-card { padding: 24px 18px; }
}

/* --- Lightbox (Gmail-style attachment viewer) --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
}
.lightbox.hidden { display: none; }
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}
.lightbox-topbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 12px;
  background: #1f1f1f;
  color: #e8eaed;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  flex-shrink: 0;
}
.lightbox-close {
  background: none;
  border: none;
  color: #e8eaed;
  font-size: 24px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.lightbox-close:hover { background: rgba(255,255,255,0.1); }
.lightbox-filename {
  flex: 1;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 12px;
}
.lightbox-actions {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}
.lightbox-action-btn {
  background: none;
  border: none;
  color: #e8eaed;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.lightbox-action-btn:hover { background: rgba(255,255,255,0.1); }
.lightbox-body {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 0;
}
.lightbox-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: default;
}
.lightbox-image-wrap.draggable { cursor: grab; }
.lightbox-image-wrap.dragging { cursor: grabbing; }
.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  user-select: none;
  transition: transform 0.15s ease;
  transform-origin: center center;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(0,0,0,0.4);
  border: none;
  color: #fff;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.15); }
.lightbox-nav.hidden { display: none; }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-bottombar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  flex-shrink: 0;
}
.lightbox-zoom-btn {
  background: rgba(255,255,255,0.1);
  border: none;
  color: #e8eaed;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.lightbox-zoom-btn:hover { background: rgba(255,255,255,0.2); }
.poster-img { cursor: pointer; }
