/* style.css (FULLY UPDATED) */
:root{
  --blue:#1f64ff;
  --blue-dark:#153fa8;
  --bg:#ffffff;
  --black:#000000;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family: Arial, system-ui, sans-serif;
  color:#0a0a0a;

  /* IN-GAME BACKGROUND + readability overlay */
  background:
    linear-gradient(rgba(255,255,255,0.1), rgba(255,255,255,0.10)),
    url("background.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.page{
  max-width:1200px;
  margin:24px auto;
  padding:26px;
  background: rgba(255,255,255,0.92);
  border-radius:18px;
  box-shadow:
    0 30px 70px rgba(0,0,0,0.22),
    0 10px 22px rgba(31,100,255,0.12);
}

/* ===== Layout ===== */
.grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:40px;
  align-items:start;
}

.left{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.right{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
}

/* ===== Logo ===== */
.logoAbove{
  width:480px;              /* change this number if you want */
  margin:0 auto 10px;
  display:block;
  image-rendering:pixelated;
  filter: drop-shadow(0 16px 26px rgba(0,0,0,0.25));
}

/* ===== Trailer (THUMBNAIL VERSION) ===== */
.trailerBox{
  display:block;
  width:100%;
  max-width:620px;
  aspect-ratio:16/9;
  background:#000;
  text-decoration:none;
  border-radius:16px;
  overflow:hidden;
  position:relative;
  box-shadow:
    0 18px 42px rgba(0,0,0,0.40),
    inset 0 0 0 2px rgba(255,255,255,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor:pointer;
}

.trailerBox:hover{
  transform: translateY(-2px);
  box-shadow:
    0 22px 52px rgba(0,0,0,0.46),
    inset 0 0 0 2px rgba(255,255,255,0.06);
}

/* Thumbnail fills the whole box */
.trailerThumb{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  z-index:1;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.trailerBox:hover .trailerThumb{
  transform: scale(1.05);
  filter: brightness(0.85);
}

/* Play overlay */
.playOverlay{
  position:absolute;
  inset:0;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:64px;
  color:#ffffff;
  background: rgba(0,0,0,0.25);
  opacity:0;
  transition: opacity 0.25s ease;
  pointer-events:none;
}

.trailerBox:hover .playOverlay{
  opacity:1;
}

/* ===== Updates ===== */
.updates{
  text-align:center;
  color:var(--blue-dark);
  font-weight:800;
}

.update{
  margin-top:12px;
  padding:14px 18px;
  border-radius:14px;
  background: linear-gradient(180deg, #f9fbff, #eef3ff);
  box-shadow: 0 10px 22px rgba(31,100,255,0.10);
}

.uTitle{
  font-size:30px;
  margin-bottom:8px;
  color: var(--blue-dark);
}

.medium{
  font-size:20px;
  font-weight:700;
  color: var(--blue-dark);
  opacity: 0.95;
  line-height: 1.25;
}

.spacer{
  height:18px;
}

/* ===== Character ===== */
.char{
  width:220px;
  height:220px;
  object-fit:contain;
  image-rendering:pixelated;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.25));
}

/* ===== Download ===== */
.download{
  font-size:64px;
  color:var(--blue);
  text-decoration:none;
  font-weight:700;
  text-shadow:
    0 2px 0 rgba(255,255,255,0.75),
    0 10px 22px rgba(31,100,255,0.35);
}

.download:hover{
  text-decoration:underline;
}

/* ===== Description ===== */
.desc{
  margin:0;
  max-width:420px;
  text-align:center;
  color:var(--blue-dark);
  font-size:20px;
  line-height:1.2;
  font-weight:800;
}

.small{
  text-align:center;
  font-size:13px;
  color:rgba(0,0,0,0.62);
}

/* ===== VirusTotal Box ===== */
.vtBox{
  margin-top:18px;
  padding:16px 20px;
  border-radius:16px;
  background: linear-gradient(180deg, #f7faff, #eaf0ff);
  border:2px solid rgba(31,100,255,0.25);
  text-align:center;
  text-decoration:none;
  color:#1f64ff;
  display:inline-block;
  box-shadow: 0 12px 28px rgba(31,100,255,0.18);
}

.vtScore{
  font-size:28px;
  font-weight:900;
  letter-spacing:1px;
}

.vtText{
  font-size:14px;
  font-weight:700;
  opacity:0.92;
}

.vtBox:hover{
  background: linear-gradient(180deg, #ffffff, #eaf0ff);
}

/* ===== Staff / Credits ===== */
.creditsBox{
  margin-top: 28px;
  padding: 20px 22px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f7faff, #eef3ff);
  box-shadow: 0 12px 28px rgba(31,100,255,0.14);
  text-align: center;
}

.creditsSection + .creditsSection{
  margin-top: 22px;
}

.creditsTitle{
  font-size: 30px;
  font-weight: 900;
  color: var(--blue-dark);
  margin-bottom: 10px;
}

/* ===== Footer ===== */
.siteFooter{
  text-align:center;
  font-size:13px;
  opacity:0.75;
  padding:16px 0;
  color:#ffffff;
}
