:root{
  --bg: #000;
  --accent: #fff;
  --muted: rgba(255,255,255,0.08);
  --button-bg: #111;
  --button-border: #8f8f8f;
  --gap: 18px;
}

html,body{
  height:100%;
  margin:0;
  font-family: "Pixelify Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: var(--bg);
  color: var(--accent);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  display:flex;
  align-items:center;
  justify-content:center;
}

.wrap{
  width:min(920px, 94vw);
  text-align:center;
  padding: 36px;
  box-sizing:border-box;
}

.artwork{
  display:block;
  max-width:80%;
  height:auto;
  image-rendering: pixelated;
  margin: 0 auto;
}

.logo{
  display:block;
  max-width:30%;
  height:auto;
  margin: 18px auto 10px;
  image-rendering: pixelated;
}

.title{
  font-size: clamp(22px, 4.4vw, 40px);
  letter-spacing: 1px;
  margin: 8px 0 14px;
  line-height:1;
  position:relative;
  display:inline-block;
  padding:6px 12px;
}

.scanlines {
  background: repeating-linear-gradient(
      to bottom,
      #ffffff 0px,
      #ffffff 2px,
      #cccccc 2px,
      #cccccc 4px
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 6px rgba(255,255,255,0.04);
}

.subtitle{
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  margin-bottom: 10px;
  opacity:0.95;
}

.credits{
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  line-height: 1.4;
}

.btn-row{
  display:flex;
  gap: 14px;
  justify-content:center;
  margin-top: 10px;
  flex-wrap:wrap;
}

.btn {
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  padding: 12px 18px;
  background: var(--button-bg);
  border: 2px solid var(--button-border);
  color:var(--accent);
  font-weight:700;
  font-size:14px;
  border-radius: 0;
  box-shadow: 0 6px 12px rgba(0,0,0,0.7);
  transition: all 0.1s ease;
  user-select:none;
}

.btn:hover{
  background: white;
  color: black;
  border-color: white;
  box-shadow: 0 10px 24px rgba(255,255,255,0.4);
}

.btn:active { transform: translateY(1px) scale(0.998); }

.foot{
  margin-top: 24px;
  color: rgba(255,255,255,0.75);
  font-size:14px;
}

.foot a{
  color: white;
  text-decoration: underline;
}

@media (max-width:520px){
  .logo{ max-width:90%;}
  .btn{ width:100%; justify-content:center; }
  .btn-row{ gap:10px; }
}
