/* === PREMIUM TOKENS (Light Theme - Bright Editorial) === */
:root {
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --text: #1e293b;
  --text-muted: #64748b;
  --accent: #e11d48; /* TicketNew Rose/Red */
  --accent-soft: rgba(225, 29, 72, 0.1);
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(0, 0, 0, 0.05);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-glass: 0 10px 40px -10px rgba(0,0,0,0.08);
  --paper-tear: polygon(0% 0%, 5% 2%, 10% 0%, 15% 3%, 20% 0%, 25% 2%, 30% 0%, 35% 3%, 40% 0%, 45% 2%, 50% 0%, 55% 3%, 60% 0%, 65% 2%, 70% 0%, 75% 3%, 80% 0%, 85% 2%, 90% 0%, 95% 3%, 100% 0%, 100% 100%, 0% 100%);
  --geometric-pattern: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e11d48' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2v-4h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2v-4h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* === CSS RESET & BASE === */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
  font-size: 18px;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  background-image: var(--geometric-pattern);
}

h1, h2, h3 {
  font-family: 'Abril Fatface', serif;
  font-weight: 400;
  line-height: 1.1;
}

img { max-width: 100%; height: auto; display: block; object-fit: cover; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }

/* === STRUCTURAL BASELINES === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; width: 100%; }
section { padding: 80px 0; position: relative; width: 100%; }

.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* === CUSTOM SCROLLBAR === */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #be123c; }

/* === NAVIGATION (Split Header) === */
.ticket-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.nav-top-bar {
  background: var(--bg-alt);
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-muted);
}

.nav-top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-socials a { margin-left: 15px; font-size: 16px; }
.nav-socials a:hover { color: var(--accent); }

.nav-main-bar { padding: 15px 0; }
.nav-main-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 22px;
  color: var(--accent);
}

.nav-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links li a { font-weight: 600; font-size: 16px; }
.nav-links li a.active, .nav-links li a:hover { color: var(--accent); }

.nav-toggle { display: none; font-size: 28px; cursor: pointer; }

/* === BUTTONS === */
.btn {
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 20px -5px var(--accent); }

.btn-ghost { background: transparent; border-color: var(--accent); color: var(--accent); }
.btn-ghost:hover { background: var(--accent-soft); transform: translateY(-3px); }

/* === HERO SECTION === */
.cinema-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: radial-gradient(circle at center, #fff5f7 0%, #ffffff 100%);
  padding-top: 140px;
}

.hero-title {
  font-size: clamp(3.5rem, 10vw, 8rem);
  color: var(--text);
  margin-bottom: 20px;
  max-width: 1000px;
  line-height: 0.9;
}

.hero-tagline {
  font-size: 24px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 700px;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.hero-icon-block .nav-logo-img {
  width: 64px;
  height: 64px;
  margin: 0 auto;
}

.rating-badge {
  background: #fef3c7;
  color: #92400e;
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-ctas { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }

/* === STATS SECTION === */
.stat-narrative {
  background: var(--bg-alt);
  padding: 60px 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.narrative-text {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
  color: var(--text);
  line-height: 1.4;
  font-weight: 400;
}

.narrative-text strong {
  color: var(--accent);
  font-weight: 900;
}

/* === SCREENSHOT GALLERY (Stacked) === */
.showcase-stacked {
  background: var(--bg);
  padding: 100px 0;
}

.stacked-gallery {
  display: flex;
  flex-direction: column;
  gap: 150px;
  align-items: center;
}

.gallery-item {
  width: 100%;
  max-width: 90vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.screenshot-protector {
  max-width: 320px;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.15);
  transition: transform 0.5s ease;
}

.gallery-item:hover .screenshot-protector { transform: scale(1.02); }

.gallery-caption {
  margin-top: 30px;
  max-width: 500px;
}

.gallery-caption h3 { font-size: 28px; margin-bottom: 10px; }
.gallery-caption p { color: var(--text-muted); }

/* === FEATURES (Bento Grid) === */
.feature-grid-section {
  background: var(--bg-alt);
  clip-path: var(--paper-tear);
  padding: 120px 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(280px, auto);
  gap: 24px;
}

.bento-cell {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-glass);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.3s ease;
}

.bento-cell:hover { transform: translateY(-5px); border-color: var(--accent); }

.bento-cell.large {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(135deg, #fff 0%, #fff1f2 100%);
  display: block;
}

.bento-cell i {
  font-size: 40px;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}

.bento-cell h3 { font-size: 24px; margin-bottom: 12px; }
.bento-cell p { color: var(--text-muted); font-size: 16px; }

.interactive-mockup {
  margin-top: 30px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
}

/* === SEAT PICKER MINI GAME === */
.seat-picker-mock {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.screen-indicator {
  width: 100%;
  height: 5px;
  background: #cbd5e1;
  border-radius: 10px;
  position: relative;
  margin-bottom: 15px;
}

.screen-indicator::after {
  content: 'SCREEN';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 2px;
  color: #94a3b8;
}

.seat-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.seat-row {
  display: flex;
  gap: 8px;
}

.seat {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: #e2e8f0;
  cursor: pointer;
  transition: 0.2s;
}

.seat.selected { background: var(--accent); }
.seat.occupied { background: #94a3b8; cursor: not-allowed; }

/* === REVIEWS (Chat Bubbles) === */
.audience-reviews {
  padding: 100px 0;
}

.reviews-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.chat-bubble {
  background: var(--bg-alt);
  padding: 32px;
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: var(--shadow-glass);
  width: fit-content;
  max-width: 90%;
}

.chat-bubble.left {
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-bubble.right {
  align-self: flex-end;
  background: #fff;
  border-bottom-right-radius: 4px;
  border: 1px solid var(--glass-border);
}

.review-stars { color: #f59e0b; margin-bottom: 10px; font-size: 14px; }
.review-text { font-style: italic; margin-bottom: 15px; font-size: 18px; }
.reviewer-name { font-weight: 700; color: var(--accent); font-size: 16px; }

/* === DOWNLOAD CTA === */
.final-call {
  text-align: center;
  padding: 120px 0;
  background: radial-gradient(circle at center, #fff 0%, #fef2f2 100%);
}

.final-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.final-call h2 { font-size: 40px; margin-bottom: 40px; }

/* === FOOTER (Map + Info) === */
.site-footer {
  background: var(--bg-alt);
  padding: 80px 0 40px;
  border-top: 1px solid var(--glass-border);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-map iframe {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-md);
  border: 0;
  filter: grayscale(1) invert(0.1) contrast(1.2);
}

.footer-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-col h4 { margin-bottom: 20px; font-size: 18px; color: var(--accent); }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: var(--text-muted); font-size: 15px; }
.footer-col a:hover { color: var(--accent); }

.newsletter-form { display: flex; gap: 10px; margin-top: 15px; }
.newsletter-form input {
  padding: 10px 15px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  flex-grow: 1;
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.footer-logo { width: 24px; height: 24px; border-radius: 4px; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    border-bottom: 1px solid var(--glass-border);
    clip-path: circle(0% at 90% 0);
    transition: clip-path 0.5s ease-in-out;
  }
  .nav-links.mobile-active { clip-path: circle(150% at 90% 0); }
  .nav-toggle { display: block; }
  .nav-top-bar { display: none; }

  .hero-title { font-size: 3rem; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-cell.large { grid-column: span 1; grid-row: span 1; }

  .footer-info { grid-template-columns: 1fr; text-align: center; }
  .newsletter-form { flex-direction: column; }
  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}
