:root{
  --bg-top:#c6002f;
  --bg-bottom:#870020;
  --text:#fff;
  --shadow: rgba(0,0,0,.25);
  --tight:-0.03em;
  --pad: clamp(16px, 4vw, 40px);
  --col-gap: clamp(60px, 10vw, 140px);
  --h1: clamp(36px, 4.2vw, 64px);
  --sub: clamp(14px, 1.2vw, 20px);
  --btn: clamp(14px, 1.1vw, 18px);
  --divider-h: clamp(280px, 36vh, 420px);
}
*{box-sizing:border-box}

body{
  margin:0;
  min-height:100svh;
  display:flex;
  flex-direction:column;
  font-family: "Be Vietnam Pro", system-ui, sans-serif;
  color:var(--text);
  background: radial-gradient(120% 140% at 50% 0%, #d10b39 0%, var(--bg-top) 35%, var(--bg-bottom) 100%);
}

.brand{
  padding: var(--pad);
  font-weight: 800;
  letter-spacing: var(--tight);
  user-select:none;
}

main{
  flex:1;
  display:grid;
  place-items:center;
  padding: clamp(12px, 3vw, 32px) var(--pad) 90px;
}

.grid{
  display:flex;
  align-items:center;
  gap: var(--col-gap);
}

.section{
  display:flex;
  flex-direction:column;
  align-items:center; 
  text-align:center;
  min-width: clamp(260px, 32vw, 520px);
  max-width: 560px;
}

h1{
  margin:0 0 .35rem 0;
  font-size: var(--h1);
  font-weight: 800;
  letter-spacing: var(--tight);
  line-height: 1.02;
}

.kerning-fix{
  margin-right:-0.08em;
  display:inline-block;
}

.sub{
  margin: 0 0 1.2rem 0;
  font-size: var(--sub);
  font-weight: 300;
  opacity: .95;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: center; /* centers contents horizontally */
  gap: .6rem;
  width: 245px;   /* match App Store badge */
  height: 82px;   /* match App Store badge */

  font-size: 23px;   /* slightly larger text */
  font-weight: 700;
  color: #121212;
  background: #fff;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 6px 18px var(--shadow);
  border: 2px solid #000;
  transition: transform .15s ease, box-shadow .2s ease;
}
.cta:hover{ transform: translateY(-1px); box-shadow:0 10px 22px var(--shadow); }
.cta:active{ transform: translateY(0); }

.cta img {
  display:block;
}

.game-icon {
  width: 48px;
  height: 48px;
}

.divider{
  width:1px;
  height: var(--divider-h);
  background: rgba(255,255,255,.55);
  box-shadow: 0 0 0 0.5px rgba(255,255,255,.25);
  flex: 0 0 auto;
}

.social{
  position: fixed;
  left: var(--pad);
  bottom: 18px;
  display:flex;
  align-items:center;
  gap:20px;
}
.social a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#fff;
  text-decoration:none;
  font-weight:600;
  letter-spacing: var(--tight);
  opacity:.95;
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  padding: .55rem 1rem;
  transition: transform .15s ease, box-shadow .2s ease, opacity .2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.social a:hover{ 
  opacity:1; 
  transform: translateY(-1px);
  box-shadow: 0 10px 22px var(--shadow);
}
.social a:active{ transform: translateY(0); }
.social img{
  width:18px;
  height:18px;
  display:block;
}

.appstore-badge{
  display:inline-block;
  transition: transform .15s ease, box-shadow .2s ease;
  box-shadow: 0 6px 18px var(--shadow);
  border-radius: 12px;
  overflow: hidden;
}
.appstore-badge:hover{ transform: translateY(-1px); box-shadow:0 10px 22px var(--shadow); }
.appstore-badge:active{ transform: translateY(0); }

@media (max-width: 820px){
  main{ padding-bottom: 110px; }
  .grid{
    flex-direction:column;
    gap: 48px;
    width: min(92vw, 760px);
  }
  .divider{
    width: 68%;
    height: 1px;
    margin: 16px 0 16px;
  }
  .section{ width: 100%; }
}