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

:root {
  --bg:      #0d0d0e;
  --surface: #161618;
  --border:  rgba(255,255,255,.07);
  --accent:  #ff3d3d;
  --gold:    #f5c842;
  --text:    #e8e5df;
  --muted:   #7a7672;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Syne', sans-serif;
  overflow-x: hidden;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 40px;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  opacity: .75;
  transition: opacity .2s, color .2s;
}

.nav a:hover {
  opacity: 1;
  color: var(--gold);
}

.hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 60px;
  overflow: hidden;
  background-image:
    linear-gradient(to top, var(--bg) 2%, rgba(13,13,14,.35) 45%, rgba(13,13,14,.25) 100%),
    url("../assets/images/ID_Poster.png");
  background-size: cover;
  background-position: center 18%;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(245,200,66,.4);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  background: rgba(245,200,66,.06);
}

.status-pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .35; }
}

.title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(80px, 14vw, 170px);
  line-height: .9;
  letter-spacing: .01em;
  color: #fff;
  text-shadow: 0 4px 60px rgba(0,0,0,.85), 0 0 60px rgba(245,200,66,.25);
}

.subtitle {
  font-size: 15px;
  letter-spacing: .1em;
  color: rgba(232,229,223,.75);
  margin-top: 12px;
  font-weight: 600;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 40px 110px;
}

.grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
}

@media (max-width: 900px) {
  .grid { grid-template-columns: 1fr; }
}

.desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin: 28px 0 40px;
}

.section-heading {
  font-family: 'Bebas Neue', cursive;
  font-size: 28px;
  letter-spacing: .5px;
  margin-bottom: 18px;
  color: #fff;
}

.video-slot {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.video-slot img,
.video-slot video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: .35;
}

.video-slot-content {
  position: relative;
  z-index: 2;
  text-align: center;
  font-family: 'Space Mono', monospace;
}

.video-slot-icon {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.video-slot-text {
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

.video-note {
  font-size: 12px;
  color: var(--muted);
  font-family: 'Space Mono', monospace;
  letter-spacing: .04em;
}

.side {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: 6px;
  align-self: start;
}

.status-block {
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.status-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}

.status-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: .08em;
}

.status-value {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: #fff;
  font-weight: 700;
}

.info-line {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 10px;
  color: var(--text);
}

.info-line span {
  color: var(--accent);
}

.side-note {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
  margin-top: 18px;
}
.video-slot {
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
}

.video-slot:hover {
  transform: scale(1.02);
  box-shadow: 0 0 40px rgba(255,0,0,.25);
}

.video-slot:hover img {
  opacity: .5;
}

.video-slot-text {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #ff2b2b;
  text-shadow: 0 0 15px rgba(255,0,0,.5);
  transition: color .3s ease, text-shadow .3s ease;
}

.video-slot:hover .video-slot-text {
  color: #ff4d4d;
  text-shadow: 0 0 25px rgba(255,0,0,.8);
}