@import url('https://fonts.googleapis.com/css2?family=Black+Ops+One&family=Stardos+Stencil:wght@700&display=swap');

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #050505;
  color: #f3ead7;
  font-family: 'Stardos Stencil', 'Black Ops One', Impact, sans-serif;
  text-transform: uppercase;
}

.panel {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 54px 24px;
}
.hero { background-image: url('assets/bg1.png'); }
.manifesto { background-image: url('assets/bg2.png'); }
.screens { background-image: url('assets/bg3.png'); }
.credits { background-image: url('assets/bg4.png'); }

.shade { position: absolute; inset: 0; pointer-events: none; }
.hero-shade { background: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.58)); }
.text-shade { background: linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.34), rgba(0,0,0,.66)); }
.gallery-shade { background: rgba(0,0,0,.32); }
.credits-shade { background: rgba(0,0,0,.64); }

.hero-content,
.rage-text,
.joe,
.grid,
.credits-content { position: relative; z-index: 2; }

.hero-content {
  width: min(1180px, 96vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.logo {
  width: min(780px, 92vw);
  display: block;
  filter: drop-shadow(0 18px 20px rgba(0,0,0,.78));
}
.video-link {
  display: block;
  width: min(980px, 94vw);
  border: 4px solid #d8c28a;
  background: #000;
  box-shadow: 0 18px 44px rgba(0,0,0,.78);
  cursor: pointer;
}
.video-link video {
  width: 100%;
  display: block;
}

.manifesto {
  justify-content: space-between;
  gap: 32px;
}
.joe {
  width: min(410px, 36vw);
  align-self: flex-end;
  margin-left: max(1vw, 12px);
  filter: drop-shadow(0 20px 20px rgba(0,0,0,.7));
}
.rage-text {
  width: min(920px, 62vw);
  text-align: right;
  padding-right: max(2vw, 10px);
}
.rage-text p {
  margin: 9px 0;
  font-size: clamp(24px, 4.1vw, 67px);
  line-height: .92;
  letter-spacing: 2px;
  color: #f5ead0;
  text-shadow: 5px 5px 0 #000, 0 0 18px rgba(0,0,0,.85);
}
.rage-text .yellow {
  color: #ffcf4d;
}

.grid {
  width: min(1340px, 96vw);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.grid img {
  width: 100%;
  display: block;
  border: 3px solid rgba(230,215,170,.88);
  box-shadow: 0 16px 38px rgba(0,0,0,.7);
  background: #111;
}

.credits-content {
  width: min(1000px, 92vw);
  text-align: center;
}
.bit-logo {
  width: min(620px, 86vw);
  display: block;
  margin: 0 auto 34px;
  filter: drop-shadow(0 18px 24px rgba(0,0,0,.8));
}
.dev {
  margin: 18px 0 70px;
  font-size: clamp(16px, 2.2vw, 28px);
  letter-spacing: 1px;
  color: #f1e6cd;
  text-shadow: 3px 3px 0 #000;
}
.dev span { font-size: .8em; }
.soon {
  margin: 0;
  font-size: clamp(42px, 7.6vw, 108px);
  line-height: .9;
  color: #ffcf4d;
  text-shadow: 6px 6px 0 #000, 0 0 20px rgba(0,0,0,.85);
}

.soon-sub {
  display: inline-block;
  margin-top: 18px;
  font-size: .42em;
  line-height: 1.08;
  color: #f3ead7;
  letter-spacing: 2px;
}

.social-links {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.social-links a {
  color: #ffcf4d;
  font-size: clamp(16px, 2.2vw, 28px);
  letter-spacing: 2px;
  text-decoration: none;
  text-shadow: 3px 3px 0 #000;
}
.social-links a:hover {
  text-decoration: underline;
}

@media (max-width: 860px) {
  .manifesto { flex-direction: column; justify-content: center; }
  .joe { width: min(300px, 68vw); align-self: center; margin: 0; }
  .rage-text { width: 94vw; text-align: center; padding: 0; }
  .grid { grid-template-columns: 1fr; }
}
