* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #111111;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  position: relative;
}

/* Common Screen Act Layout */
.screen-act {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  text-align: center;
  pointer-events: none;
}

/* Act 1: Gray Background & Typewriter */
#act-1 {
  background-color: #3b3c3d;
  z-index: 1;
}

.typewriter-text {
  font-family: 'Courier Prime', monospace;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #e5e7eb;
  letter-spacing: 0.05em;
  max-width: 650px;
}

.cursor {
  font-weight: 400;
  color: #e5e7eb;
  animation: blink 0.7s infinite alternate;
}

@keyframes blink {
  from { opacity: 1; }
  to { opacity: 0; }
}

/* Act 2: Crimson Background & Title */
#act-2 {
  background-color: #4a000b;
  opacity: 0;
  z-index: 2;
}

.bold-title {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: #7a0010;
  text-transform: uppercase;
  opacity: 0;
}

/* Act 3: Dark Screen + Isolated TV Static */
#act-3 {
  background-color: #0d0d0d;
  transform: translateY(100%); /* Positioned off-screen at bottom */
  z-index: 3;
  overflow: hidden; /* Traps noise overlay strictly inside Act 3 */
}

/* TV Static Overlay */
.noise-overlay {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  filter: url(#tvNoiseFilter);
  opacity: 0.35;
  mix-blend-mode: hard-light;
  pointer-events: none;
  z-index: 1;
  animation: tvStatic 0.2s steps(2) infinite;
}

@keyframes tvStatic {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-5px, 5px); }
  40% { transform: translate(-10px, -5px); }
  60% { transform: translate(5px, 10px); }
  80% { transform: translate(10px, -5px); }
  100% { transform: translate(0, 0); }
}

.card-wrapper {
  position: relative;
  z-index: 2;
  width: 260px;
  height: 260px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
  margin-bottom: 35px;
}

.reveal-card {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hidden initially; slowly fades in via GSAP */
.reveal-footer {
  position: relative;
  z-index: 2;
  opacity: 0;
}

.brand-name {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.coming-soon {
  font-size: 0.9rem;
  font-weight: 400;
  color: #9ca3af;
  letter-spacing: 0.05em;
}