*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green-deep: #1a4d28;
  --green-dark: #0e2814;
  --green-bg: #14371d;
  --yellow: #e8c840;
  --yellow-glow: rgba(232, 200, 64, 0.12);
  --yellow-dim: rgba(232, 200, 64, 0.35);
  --cream: #ede8dc;
  --cream-dim: #9e9688;
  --white: #f8f4eb;
  --text-ghost: rgba(240, 235, 224, 0.08);
  --text-faint: rgba(240, 235, 224, 0.2);
  --text-muted: rgba(240, 235, 224, 0.4);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

html, body {
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
}

body {
  background: var(--green-dark);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

/* ---- Rich textured green background ---- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 40%, var(--green-bg) 0%, var(--green-dark) 70%),
    radial-gradient(ellipse at 20% 80%, rgba(26, 77, 40, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(26, 77, 40, 0.2) 0%, transparent 50%);
}

.grain::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ---- Page layout ---- */
.page {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

/* ---- Top bar ---- */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2.5rem;
  flex-shrink: 0;
}

.top-email {
  font-size: 0.6rem;
  letter-spacing: 0.05rem;
  color: var(--text-muted);
  transition: color 0.3s;
}

.top-email:hover { color: var(--yellow); }

.social-links {
  display: flex;
  gap: 0.8rem;
}

.social-links a {
  color: var(--text-muted);
  transition: color 0.3s;
}

.social-links a:hover { color: var(--yellow); }

/* ---- Hero ---- */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* ============================================
   MULTILINGUAL TICKER — slow cinematic scroll
   ============================================ */
.ticker {
  width: 100vw;
  overflow: hidden;
  position: relative;
}

.ticker::before,
.ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--green-dark), transparent);
}

.ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--green-dark), transparent);
}

.ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: scroll-left 40s linear infinite;
  width: max-content;
}

.ticker-track.reverse {
  animation: scroll-right 45s linear infinite;
}

.tk {
  flex-shrink: 0;
  color: var(--text-faint);
  font-size: clamp(1rem, 2vw, 1.4rem);
  letter-spacing: 0.05em;
  padding: 0 1.2rem;
  transition: color 0.3s;
}

.tk-dot {
  flex-shrink: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--yellow-dim);
}

.tk-kannada   { font-family: 'Noto Sans Kannada', sans-serif; }
.tk-devanagari{ font-family: 'Noto Sans Devanagari', sans-serif; }
.tk-tamil     { font-family: 'Noto Sans Tamil', sans-serif; }
.tk-malayalam { font-family: 'Noto Sans Malayalam', sans-serif; }
.tk-urdu      { font-family: 'Noto Nastaliq Urdu', serif; direction: rtl; font-size: clamp(1.2rem, 2.4vw, 1.7rem); }
.tk-english   { font-family: var(--font-display); font-style: italic; font-weight: 600; }

.ticker-top { margin-bottom: 1.5rem; }
.ticker-bottom { margin-top: 1.5rem; }

@keyframes scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes scroll-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* ============================================
   MAIN TITLE — big, dramatic, outlined
   ============================================ */
.title-block {
  opacity: 0;
  animation: revealTitle 1.2s ease 0.3s forwards;
}

.main-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(5rem, 14vw, 11rem);
  line-height: 0.85;
  letter-spacing: -0.01em;
  color: transparent;
  -webkit-text-stroke: 2px var(--yellow);
  paint-order: stroke fill;
  text-shadow: 0 0 80px var(--yellow-glow);
}

.main-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.85rem, 1.8vw, 1.15rem);
  letter-spacing: clamp(0.8rem, 2vw, 1.6rem);
  text-transform: uppercase;
  color: var(--cream);
  margin-top: 2.1rem;
}

/* ---- Middle info ---- */
.middle-info {
  margin-top: 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

.thin-line {
  width: 30px;
  height: 1px;
  background: var(--yellow);
  opacity: 0.6;
  margin-bottom: 0.3rem;
}

.film-society {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.4rem;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--text-muted);
}

/* ---- Launch section ---- */
.launch-section {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.1s forwards;
}

.launching {
  font-size: 0.55rem;
  letter-spacing: 0.35rem;
  text-transform: uppercase;
  color: var(--yellow);
}

.countdown {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 44px;
}

.countdown-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--white);
  line-height: 1;
}

.countdown-label {
  font-size: 0.42rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.countdown-sep {
  width: 1px;
  height: 20px;
  background: var(--yellow-dim);
  margin: 0 0.2rem;
  margin-bottom: 0.8rem;
}

/* ---- Notify form ---- */
.notify-form {
  display: flex;
  margin-top: 1.5rem;
  border: 1px solid rgba(232, 200, 64, 0.12);
  overflow: hidden;
  max-width: 360px;
  width: 90%;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.4s forwards;
}

.notify-form input {
  flex: 1;
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: none;
  outline: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.02rem;
}

.notify-form input::placeholder {
  color: var(--text-muted);
}

.notify-form input:focus {
  background: rgba(255, 255, 255, 0.06);
}

.notify-form button {
  padding: 0.7rem 1.2rem;
  background: var(--yellow);
  border: none;
  color: var(--green-dark);
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.notify-form button:hover {
  background: var(--white);
}

.notify-msg {
  margin-top: 0.4rem;
  font-size: 0.6rem;
  color: var(--yellow);
  min-height: 0.8rem;
}

/* ---- Bottom bar ---- */
.bottom-bar {
  padding: 1.2rem 2.5rem;
  text-align: center;
  flex-shrink: 0;
  font-size: 0.5rem;
  letter-spacing: 0.06rem;
  color: var(--text-muted);
  opacity: 0;
  animation: fadeUp 0.8s ease 1.6s forwards;
}

/* ---- Animations ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes revealTitle {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ---- Mobile ---- */
@media (max-width: 600px) {
  .top-bar {
    padding: 0.8rem 1rem;
    justify-content: flex-end;
  }

  .top-email {
    display: none;
  }

  .main-title {
    font-size: clamp(3.2rem, 15vw, 5rem);
    -webkit-text-stroke: 1.5px var(--yellow);
  }

  .main-sub {
    letter-spacing: 0.5rem;
    font-size: 0.7rem;
    margin-top: 1.2rem;
  }

  .ticker::before,
  .ticker::after {
    width: 30px;
  }

  .tk {
    font-size: 0.85rem;
    padding: 0 0.8rem;
  }

  .tk-urdu {
    font-size: 1rem;
  }

  .ticker-top { margin-bottom: 0.8rem; }
  .ticker-bottom { margin-top: 0.8rem; }

  .middle-info {
    margin-top: 1rem;
    gap: 0.3rem;
  }

  .film-society {
    font-size: 0.5rem;
    letter-spacing: 0.3rem;
  }

  .tagline {
    font-size: 0.85rem;
  }

  .launch-section {
    margin-top: 1.2rem;
    gap: 0.4rem;
  }

  .launching {
    font-size: 0.5rem;
    letter-spacing: 0.25rem;
  }

  .countdown {
    gap: 0.3rem;
  }

  .countdown-block {
    min-width: 32px;
  }

  .countdown-num {
    font-size: 1.6rem;
  }

  .countdown-sep {
    height: 12px;
  }

  .bottom-bar {
    padding: 0.8rem 1rem;
    font-size: 0.45rem;
  }
}

/* ---- Very small screens ---- */
@media (max-width: 380px) {
  .main-title {
    font-size: 2.8rem;
  }

  .main-sub {
    font-size: 0.6rem;
    letter-spacing: 0.35rem;
    margin-top: 1rem;
  }

  .ticker-top { margin-bottom: 0.5rem; }
  .ticker-bottom { margin-top: 0.5rem; }

  .middle-info {
    margin-top: 0.8rem;
  }

  .launch-section {
    margin-top: 1rem;
  }

  .countdown-num {
    font-size: 1.4rem;
  }
}
