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

body {
  background: #000;
  color: #fff;
  font-family: "Cinzel", serif;
  line-height: 1.6;
}

/* ===== NAV ===== */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background: rgba(0,0,0,0.9);
  z-index: 1000;
  border-bottom: 1px solid #ff0000;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: #ff0000;
  text-decoration: none;
  letter-spacing: 4px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ff0000;
}

/* ===== HERO / MOTION POSTER ===== */
.hero {
  height: 100vh;
  background: url('assets/chester_header.jpg') center/cover no-repeat;
  position: relative;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, transparent, #000 70%);
}

.hero .glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,0,0,0.25), transparent 60%);
  mix-blend-mode: screen;
  animation: pulse 4s ease-in-out infinite;
}

.hero-content {
  position: absolute;
  bottom: 15%;
  left: 10%;
}

.hero h1 {
  font-size: 6rem;
  letter-spacing: 8px;
  color: #ff0000;
  text-shadow: 0 0 20px #000;
}

.tagline {
  font-size: 1.5rem;
  margin-top: 10px;
  opacity: 0.8;
}

.whisper {
  margin-top: 20px;
  font-size: 1rem;
  opacity: 0.7;
  animation: flicker 3s infinite;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #ff0000;
  color: #fff;
  text-decoration: none;
  letter-spacing: 2px;
  transition: 0.3s;
}

.btn:hover {
  background: #990000;
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 10%;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ff0000;
}

h3 {
  color: #ccc;
  margin-bottom: 10px;
}

.sub-heading {
  margin-top: 30px;
  color: #ff0000;
}

/* ===== TRAILER ===== */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* ===== CAST & CREW ===== */
.crew-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.crew-card {
  background: #111;
  padding: 20px;
  border-left: 4px solid #ff0000;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  border: 2px solid #ff0000;
}

/* ===== SCREENINGS ===== */
.screening-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.screening {
  background: #111;
  padding: 20px;
  border-left: 4px solid #ff0000;
}

/* ===== EPK / DOWNLOADS ===== */
.download-list {
  list-style: none;
  margin-top: 20px;
}

.download-list li {
  margin-bottom: 10px;
}

.download-list a {
  color: #ff0000;
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.download-list a:hover {
  color: #fff;
}

/* ===== DARKWEB TEASER ===== */
.darkweb-section {
  background: #000;
  position: relative;
  font-family: "Courier New", monospace;
  color: #0f0;
  border-top: 1px solid #0f0;
  border-bottom: 1px solid #0f0;
}

.darkweb-section .noise {
  position: absolute;
  inset: 0;
  background: url('assets/noise.png');
  mix-blend-mode: screen;
  opacity: 0.08;
  pointer-events: none;
}

.terminal-content {
  position: relative;
  z-index: 1;
}

.terminal-title {
  font-size: 3rem;
  letter-spacing: 6px;
  color: #0f0;
}

.cursor {
  animation: blink 1s step-end infinite;
}

.warning {
  color: #f00;
  margin-top: 10px;
  margin-bottom: 30px;
}

.red {
  color: #f00;
}

.terminal-links {
  margin-top: 20px;
}

.terminal-link {
  display: block;
  color: #0f0;
  text-decoration: none;
  margin-bottom: 8px;
  font-family: "Courier New", monospace;
}

.terminal-link:hover {
  color: #f00;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 40px;
  background: #111;
  margin-top: 40px;
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.9; }
}

@keyframes flicker {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.8; }
  60% { opacity: 0.1; }
  70% { opacity: 0.9; }
}

@keyframes blink {
  50% { opacity: 0; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links a {
    font-size: 0.7rem;
    margin-left: 10px;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .section {
    padding: 60px 5%;
  }
}
