/* ==========================================================================
   Mikro Sinema Indonesia - Under Construction / Coming Soon
   Luxury Cinematic & Gold Foil Aesthetics
   ========================================================================== */

:root {
  --bg-primary: #07080b;
  --bg-secondary: #0e1017;
  --bg-card: rgba(18, 20, 29, 0.7);
  --bg-card-hover: rgba(28, 32, 45, 0.85);

  --gold-100: #fbf5df;
  --gold-200: #f3e2a9;
  --gold-300: #e5c368;
  --gold-400: #d4a739;
  --gold-500: #b88622;
  --gold-600: #8c6212;

  --gold-gradient: linear-gradient(135deg, #fdf6df 0%, #ecc96e 30%, #c49630 65%, #f6deb0 100%);
  --gold-gradient-soft: linear-gradient(135deg, rgba(243, 226, 169, 0.15) 0%, rgba(184, 134, 34, 0.05) 100%);
  --gold-border: linear-gradient(135deg, rgba(243, 226, 169, 0.5) 0%, rgba(184, 134, 34, 0.15) 50%, rgba(243, 226, 169, 0.4) 100%);

  --text-primary: #f8f9fc;
  --text-secondary: #a2a8b9;
  --text-muted: #6b7280;

  --font-serif: 'Cinzel', serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --shadow-gold: 0 10px 40px -10px rgba(212, 167, 57, 0.35);
  --shadow-gold-sm: 0 4px 20px rgba(212, 167, 57, 0.2);
  --shadow-card: 0 20px 40px -15px rgba(0, 0, 0, 0.7);

  --glow-beam: radial-gradient(circle at 50% 0%, rgba(212, 167, 57, 0.18) 0%, rgba(14, 16, 23, 0) 70%);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

/* Background Atmosphere & Projector Light */
.ambient-lighting {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-lighting::before {
  content: '';
  position: absolute;
  top: -20vh;
  left: 50%;
  transform: translateX(-50%);
  width: 90vw;
  max-width: 1100px;
  height: 80vh;
  background: var(--glow-beam);
  filter: blur(50px);
  animation: beamPulse 8s ease-in-out infinite alternate;
}

.ambient-lighting::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(1.5px 1.5px at 20% 30%, rgba(255, 255, 255, 0.07) 100%, transparent),
    radial-gradient(1.5px 1.5px at 80% 40%, rgba(255, 255, 255, 0.05) 100%, transparent),
    radial-gradient(2px 2px at 40% 70%, rgba(212, 167, 57, 0.08) 100%, transparent);
  background-size: 180px 180px;
  opacity: 0.8;
}

#dustCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Film Strip Decorative Borders */
.film-strip-top,
.film-strip-bottom {
  position: fixed;
  left: 0;
  width: 100%;
  height: 14px;
  z-index: 10;
  background: #0a0a0d;
  background-image: repeating-linear-gradient(
    90deg,
    #0a0a0d,
    #0a0a0d 14px,
    rgba(212, 167, 57, 0.3) 14px,
    rgba(212, 167, 57, 0.3) 22px
  );
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  opacity: 0.65;
}

.film-strip-top {
  top: 0;
  border-bottom: 1px solid rgba(212, 167, 57, 0.2);
}

.film-strip-bottom {
  bottom: 0;
  border-top: 1px solid rgba(212, 167, 57, 0.2);
}

/* Layout Wrapper */
.page-wrapper {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 24px 32px;
  width: 100%;
}

/* Navigation Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0 24px;
}

.brand-network {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(18, 20, 29, 0.65);
  border: 1px solid rgba(212, 167, 57, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 500;
}

.network-bullet {
  color: var(--gold-400);
  font-size: 0.75rem;
}

.header-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-200);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.25s ease;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  background: rgba(18, 20, 29, 0.6);
  border: 1px solid rgba(212, 167, 57, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.link-btn:hover {
  color: #0c0e14;
  background: var(--gold-gradient);
  border-color: transparent;
  box-shadow: var(--shadow-gold-sm);
  transform: translateY(-2px);
}

/* Hero Section */
.hero-content {
  text-align: center;
  padding: 20px 0 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Bouncing Logo & Status Underneath */
.hero-logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}

.logo-container {
  position: relative;
  margin-bottom: 12px;
  cursor: pointer;
  perspective: 1000px;
  user-select: none;
}

.logo-glow-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 167, 57, 0.3) 0%, transparent 70%);
  filter: blur(35px);
  animation: glowRing 6s infinite alternate ease-in-out;
}

.logo-img {
  width: 320px;
  height: auto;
  max-width: 85vw;
  filter: drop-shadow(0 20px 32px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 28px rgba(212, 167, 57, 0.4));
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.4s ease;
  animation: floatLogo 4.5s ease-in-out infinite;
}

.logo-container:hover .logo-img {
  transform: scale(1.04) rotateY(4deg);
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.98)) drop-shadow(0 0 45px rgba(212, 167, 57, 0.7));
}

/* Status text directly under the bouncing logo */
.under-logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(18, 20, 29, 0.8);
  border: 1px solid rgba(212, 167, 57, 0.38);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 8px 22px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  color: var(--gold-200);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 6px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.55), 0 0 20px rgba(212, 167, 57, 0.18);
  transition: all 0.3s ease;
}

.under-logo-badge:hover {
  border-color: rgba(212, 167, 57, 0.65);
  background: rgba(28, 32, 45, 0.9);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.65), 0 0 25px rgba(212, 167, 57, 0.3);
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--gold-400);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px var(--gold-400);
  animation: pulseDot 2s infinite ease-in-out;
}

/* Typography & Titles */
.tagline-banner {
  display: inline-block;
  position: relative;
  padding: 6px 18px;
  margin-bottom: 20px;
  border-top: 1px solid rgba(212, 167, 57, 0.35);
  border-bottom: 1px solid rgba(212, 167, 57, 0.35);
}

.tagline-banner::before,
.tagline-banner::after {
  content: '✦';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-400);
  font-size: 0.75rem;
}
.tagline-banner::before { left: 4px; }
.tagline-banner::after { right: 4px; }

.tagline-text {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--gold-300);
  text-transform: uppercase;
}

.main-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  max-width: 880px;
}

.gold-gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-shadow: 0 0 40px rgba(212, 167, 57, 0.2);
}

.hero-subtext {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: var(--text-secondary);
  max-width: 700px;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* Countdown Timer */
.countdown-section {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 48px;
}

.countdown-label {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--gold-300);
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}

.timer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.timer-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 167, 57, 0.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-md);
  padding: 18px 10px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.timer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
  opacity: 0.8;
}

.timer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 167, 57, 0.55);
  box-shadow: var(--shadow-gold-sm);
}

.timer-number {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--gold-100);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.timer-unit {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 4px;
}

/* VIP Invitation Form */
.notify-box {
  width: 100%;
  max-width: 580px;
  background: var(--bg-card);
  border: 1px solid rgba(212, 167, 57, 0.3);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  box-shadow: var(--shadow-card), 0 0 35px rgba(212, 167, 57, 0.08);
  margin-bottom: 56px;
  position: relative;
}

.notify-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--gold-200);
  margin-bottom: 8px;
  font-weight: 600;
}

.notify-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 22px;
}

.notify-form {
  display: flex;
  gap: 12px;
  position: relative;
}

.input-wrapper {
  position: relative;
  flex: 1;
}

.input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-400);
  opacity: 0.7;
  pointer-events: none;
}

.email-input {
  width: 100%;
  padding: 14px 16px 14px 44px;
  background: rgba(9, 10, 15, 0.8);
  border: 1px solid rgba(212, 167, 57, 0.3);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  outline: none;
}

.email-input::placeholder {
  color: #555b6d;
}

.email-input:focus {
  border-color: var(--gold-400);
  box-shadow: 0 0 15px rgba(212, 167, 57, 0.25);
  background: rgba(14, 16, 23, 0.95);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--gold-gradient);
  border: none;
  border-radius: var(--radius-sm);
  color: #0c0e14;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-gold-sm);
  white-space: nowrap;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  filter: brightness(1.1);
}

.btn-gold:active {
  transform: translateY(0);
}

.form-privacy-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Feature Sneak Peek Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  width: 100%;
  margin-bottom: 50px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: left;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  background: var(--gold-border) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 167, 57, 0.15);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 167, 57, 0.1);
  border: 1px solid rgba(212, 167, 57, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-300);
  margin-bottom: 20px;
}

.feature-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-100);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Footer & Socials */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 30px 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-mini-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 167, 57, 0.25);
  color: var(--gold-200);
  transition: all 0.25s ease;
  text-decoration: none;
}

.social-icon-btn:hover {
  background: var(--gold-gradient);
  color: #0c0e14;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(212, 167, 57, 0.4);
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #141722;
  border: 1px solid var(--gold-400);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  color: var(--text-primary);
  box-shadow: var(--shadow-gold);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(100px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast-icon {
  color: var(--gold-300);
  font-size: 1.2rem;
}

/* Keyframe Animations */
@keyframes beamPulse {
  0% { opacity: 0.5; transform: translateX(-50%) scale(0.95); }
  100% { opacity: 0.9; transform: translateX(-50%) scale(1.05); }
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes glowRing {
  0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.4; }
  100% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.75; }
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}

/* ==========================================================================
   Mobile View & Responsiveness Optimizations
   ========================================================================== */
@media (max-width: 768px) {
  .page-wrapper {
    padding: 24px 16px 20px;
  }

  .site-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0 20px;
    gap: 12px;
  }

  .brand-network {
    font-size: 0.76rem;
    padding: 5px 12px;
    letter-spacing: 0.05em;
  }

  .link-btn {
    padding: 6px 14px;
    font-size: 0.82rem;
  }

  .hero-content {
    padding: 10px 0 36px;
  }

  .hero-logo-wrapper {
    margin-bottom: 20px;
  }

  .logo-img {
    width: 250px;
    max-width: 80vw;
  }

  .logo-glow-ring {
    width: 220px;
    height: 220px;
  }

  .under-logo-badge {
    font-size: 0.8rem;
    padding: 7px 18px;
    margin-top: 4px;
    letter-spacing: 0.04em;
  }

  .tagline-banner {
    padding: 4px 14px;
    margin-bottom: 16px;
  }

  .tagline-text {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
  }

  .main-heading {
    font-size: clamp(1.75rem, 6.5vw, 2.5rem);
    margin-bottom: 14px;
    line-height: 1.22;
  }

  .hero-subtext {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 34px;
    padding: 0 4px;
  }

  .countdown-section {
    margin-bottom: 38px;
  }

  .countdown-label {
    font-size: 0.8rem;
    margin-bottom: 12px;
  }

  .timer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .timer-card {
    padding: 12px 4px;
    border-radius: var(--radius-sm);
  }

  .timer-number {
    font-size: 1.6rem;
  }

  .timer-unit {
    font-size: 0.65rem;
  }

  .notify-box {
    padding: 24px 18px;
    margin-bottom: 40px;
    border-radius: var(--radius-md);
  }

  .notify-title {
    font-size: 1.15rem;
    line-height: 1.35;
  }

  .notify-desc {
    font-size: 0.86rem;
    margin-bottom: 18px;
  }

  .notify-form {
    flex-direction: column;
    gap: 10px;
  }

  .email-input {
    font-size: 16px; /* Prevents auto-zoom in iOS Safari */
    padding: 13px 16px 13px 44px;
  }

  .btn-gold {
    width: 100%;
    padding: 13px 18px;
    font-size: 0.92rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 36px;
  }

  .feature-card {
    padding: 22px 18px;
  }

  .feature-title {
    font-size: 1.1rem;
  }

  .feature-desc {
    font-size: 0.86rem;
  }

  .site-footer {
    padding: 24px 0 10px;
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .social-links {
    gap: 12px;
  }

  .social-icon-btn {
    width: 42px;
    height: 42px;
  }

  .toast {
    left: 16px;
    right: 16px;
    bottom: 20px;
    font-size: 0.85rem;
    padding: 12px 16px;
  }
}

@media (max-width: 480px) {
  .page-wrapper {
    padding: 18px 12px 16px;
  }

  .logo-img {
    width: 220px;
    max-width: 82vw;
  }

  .under-logo-badge {
    font-size: 0.74rem;
    padding: 5px 14px;
    gap: 7px;
  }

  .status-dot {
    width: 7px;
    height: 7px;
  }

  .main-heading {
    font-size: 1.65rem;
  }

  .timer-grid {
    gap: 6px;
  }

  .timer-card {
    padding: 10px 2px;
  }

  .timer-number {
    font-size: 1.4rem;
  }

  .timer-unit {
    font-size: 0.6rem;
    letter-spacing: 0.05em;
  }

  .notify-box {
    padding: 20px 14px;
  }
}
