*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body{
  font-family: 'Orbitron', sans-serif;
}

:root {
  --page-padding-x: clamp(22px, 2vw, 34px);
  --page-padding-y: clamp(20px, 2vh, 28px);

  --left-col-width: 45%;
  --right-col-width: 55%;

  --panel-bg: rgba(8, 10, 16, 0.72);
  --panel-border: rgba(255, 255, 255, 0.14);
  --panel-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);

  --cta-bg: linear-gradient(180deg, #2ad463 0%, #20c458 100%);
  --cta-color: #041108;
  --cta-shadow: 0 14px 30px rgba(18, 184, 79, 0.35);

  --radius-md: 18px;
  --radius-lg: 24px;
}

.prelander {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bg-image{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;

  filter:
    brightness(.55)
    contrast(1.1)
    saturate(1.05);
}

.bg-overlay{
  position:absolute;
  inset:0;

  background:
    linear-gradient(90deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.55) 35%, rgba(0,0,0,.85) 100%),
    linear-gradient(180deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.25) 40%, rgba(0,0,0,.65) 100%);

  pointer-events:none;
}

.prelander::after{
  content:"";
  position:absolute;
  inset:0;

  background:
    radial-gradient(circle at center,
    rgba(0,0,0,0) 40%,
    rgba(0,0,0,.55) 100%);

  pointer-events:none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: var(--left-col-width) var(--right-col-width);
  padding: var(--page-padding-y) var(--page-padding-x);
  gap: 24px;
}

/* LEFT */
.left-column {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: start;
}

.left-column{
  display:flex;
  flex-direction:column;
  align-items:center;
}

.awards {
  display: flex;
  gap: 16px;

  justify-content: center;   /* centre horizontalement */
  align-items: center;

  width: 100%;
}

.award-image {
  width: 150px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.35));
}

.character-wrap {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 12px;
}

.character-image {
  max-height: 72vh;
  max-width: 90%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.45));
}

/* RIGHT */
.right-column {
  height: 100%;
  display: grid;
  grid-template-rows: auto 320px 82px;
  gap: 24px;
  align-content: center;
  padding-right: 10px;
}

.top-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
}

.game-logo {
  width: 420px;
  max-width: 90%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.6));
}

.top-copy{
  font-family:'Orbitron', sans-serif;

  margin:0;
  max-width:760px;

  font-size:clamp(0.95rem,1.05vw,1.05rem);
  line-height:1.5;

  letter-spacing:1px;

  color:#d9f1ff;

  text-shadow:
    0 0 6px rgba(120,200,255,.5),
    0 0 14px rgba(0,0,0,.9);
}

.top-copy::before{
  content:"";
  display:block;
  width:120px;
  height:2px;
  margin:0 auto 16px auto;

  background:linear-gradient(
    90deg,
    transparent,
    #6fd6ff,
    transparent
  );
}

.video-card {
  background: rgba(8, 10, 16, 0.58);
  border: 2px solid rgba(255,255,255,.14);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(0,0,0,.4);
  overflow: hidden;
  min-height: 0;
}

.promo-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #000;
}

.cta-button{
  position: relative;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;

  min-height: 86px;
  border-radius: 18px;
  text-decoration:none;
  text-transform:uppercase;

  font-family:'Orbitron', sans-serif;
  font-weight:700;
  letter-spacing:2px;
  font-size:clamp(1.05rem,1.45vw,1.35rem);

  color:#041108;
  border:1px solid rgba(255,255,255,.22);

  background:
    linear-gradient(180deg, #52ff8d 0%, #28df67 45%, #17b952 100%);

  box-shadow:
    0 0 12px rgba(67,255,145,.35),
    0 0 26px rgba(30,255,120,.25),
    0 16px 34px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.45),
    inset 0 -10px 18px rgba(0,0,0,.10);

  transition: transform .22s ease, filter .22s ease, box-shadow .22s ease;
}

.cta-button:hover{
  transform: translateY(-2px) scale(1.01);
  filter: brightness(1.04);
  box-shadow:
    0 0 18px rgba(67,255,145,.45),
    0 0 38px rgba(30,255,120,.35),
    0 18px 40px rgba(0,0,0,.38),
    inset 0 1px 0 rgba(255,255,255,.5),
    inset 0 -10px 18px rgba(0,0,0,.10);
}

.cta-button::before{
  content:"";
  position:absolute;
  top:0;
  left:-35%;
  width:30%;
  height:100%;
  pointer-events:none;

  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.18) 35%,
    rgba(255,255,255,.65) 50%,
    rgba(255,255,255,.18) 65%,
    rgba(255,255,255,0) 100%
  );

  transform: skewX(-20deg);
  animation: ctaSheen 2.6s linear infinite;
}

.cta-button::after{
  content:"";
  position:absolute;
  inset:auto 10% -18px 10%;
  height:26px;
  border-radius:999px;
  background: radial-gradient(circle, rgba(45,255,130,.45) 0%, rgba(45,255,130,0) 70%);
  filter: blur(10px);
  pointer-events:none;
}
.cta-button:hover{
  transform: translateY(-2px) scale(1.01);
  filter: brightness(1.04);
  box-shadow:
    0 0 18px rgba(67,255,145,.45),
    0 0 38px rgba(30,255,120,.35),
    0 18px 40px rgba(0,0,0,.38),
    inset 0 1px 0 rgba(255,255,255,.5),
    inset 0 -10px 18px rgba(0,0,0,.10);
}

.cta-button::before{
  content:"";
  position:absolute;
  top:0;
  left:-35%;
  width:30%;
  height:100%;
  pointer-events:none;

  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.18) 35%,
    rgba(255,255,255,.65) 50%,
    rgba(255,255,255,.18) 65%,
    rgba(255,255,255,0) 100%
  );

  transform: skewX(-20deg);
  animation: ctaSheen 2.6s linear infinite;
}

.cta-button::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-22px;
  transform:translateX(-50%);
  width:70%;
  height:32px;

  background:radial-gradient(
    ellipse,
    rgba(60,255,150,.45) 0%,
    rgba(60,255,150,0) 70%
  );

  filter:blur(12px);
  pointer-events:none;
}

.cta-button:hover{

  transform:translateY(-3px) scale(1.02);

  box-shadow:
    0 18px 45px rgba(0,255,120,.55),
    inset 0 2px 10px rgba(255,255,255,.4);

  filter:brightness(1.05);
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .left-column {
    grid-template-rows: auto;
  }

  .character-wrap {
    display: none;
  }

  .right-column {
    grid-template-rows: auto 1fr 82px;
    padding-right: 0;
  }
}

.cta-text{
  position:relative;
  z-index:2;
  display:inline-flex;
  align-items:center;
  gap:0;
}

.cta-text span{
  display:inline-block;
  animation: ctaWave 1.8s ease-in-out infinite;
}

.cta-text span:nth-child(1){ animation-delay: 0.00s; }
.cta-text span:nth-child(2){ animation-delay: 0.04s; }
.cta-text span:nth-child(3){ animation-delay: 0.08s; }
.cta-text span:nth-child(4){ animation-delay: 0.12s; }
.cta-text span:nth-child(5){ animation-delay: 0.16s; }
.cta-text span:nth-child(6){ animation-delay: 0.20s; }
.cta-text span:nth-child(7){ animation-delay: 0.24s; }
.cta-text span:nth-child(8){ animation-delay: 0.28s; }
.cta-text span:nth-child(9){ animation-delay: 0.32s; }
.cta-text span:nth-child(10){ animation-delay: 0.36s; }
.cta-text span:nth-child(11){ animation-delay: 0.40s; }
.cta-text span:nth-child(12){ animation-delay: 0.44s; }
.cta-text span:nth-child(13){ animation-delay: 0.48s; }
.cta-text span:nth-child(14){ animation-delay: 0.52s; }
.cta-text span:nth-child(15){ animation-delay: 0.56s; }
.cta-text span:nth-child(16){ animation-delay: 0.60s; }
.cta-text span:nth-child(17){ animation-delay: 0.64s; }
.cta-text span:nth-child(18){ animation-delay: 0.68s; }
.cta-text span:nth-child(19){ animation-delay: 0.72s; }
.cta-text span:nth-child(20){ animation-delay: 0.76s; }

@keyframes ctaWave{
  0%, 100%{
    transform: translateY(0);
  }
  25%{
    transform: translateY(-2px);
  }
  50%{
    transform: translateY(0);
  }
  75%{
    transform: translateY(2px);
  }
}

@keyframes ctaSheen{
  0%{
    left:-35%;
  }
  100%{
    left:115%;
  }
}