:root{
  --sky1:#0c3545;
  --sky2:#0c3545;

  --grass:#008000;
  --grass-dark:#006400;
  --grassH:70px;

  /* Main tower */
  --tower:#e67e22;
  --tower-outline: rgba(0,0,0,.22);
  --tower-shadow: 0 18px 40px rgba(0,0,0,.18);
  --radius: 22px;

  /* Side towers */
  --side:#3f8efc;
  --side-dark:#2f6fe0;
  --side-outline: rgba(0,0,0,.20);
  --sideW:220px;
  --sideHpx:320px;

  /* Main windows */
  --win: 36px;
  --gap: 26px;
  --win-fill: rgba(255,255,255,.16);
  --win-border: rgba(0,0,0,.12);

  /* Side windows */
  --swin: 18px;
  --sgap: 14px;

  /* Layout */
  --ink:#1b1b1b;
  --headerH: 120px;
  --towerTopGap: 6px;

  --inset: 22px;
  --lobbyH: 150px;

  /* Promo tiles */
  --tileSize:180px;
  --tileGap:14px;
  --tilePad:12px;
}

*{ box-sizing:border-box; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  min-height:100vh;
  background: linear-gradient(180deg, var(--sky1), var(--sky2));
  overflow-x:hidden;
  padding-bottom: var(--grassH);
}

.sun{
  position: fixed;
  top: 14px;
  right: 18px;
  width: 84px;
  height: 84px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.75), rgba(255,255,255,0) 40%),
              linear-gradient(180deg, #ffe16a, #ffb703);
  border: 4px solid rgba(0,0,0,.14);
  box-shadow: 0 12px 0 rgba(0,0,0,.06);
  z-index: 2;
  pointer-events:none;
}
.sun::before{
  content:"";
  position:absolute;
  inset:-14px;
  border-radius: 999px;
  background:
    repeating-conic-gradient(
      from 0deg,
      rgba(255,183,3,.55) 0 8deg,
      transparent 8deg 16deg
    );
  -webkit-mask: radial-gradient(circle, transparent 58px, #000 59px);
  mask: radial-gradient(circle, transparent 58px, #000 59px);
  opacity:.9;
}

header{
  padding: 18px 16px 0;
  position:relative;
  z-index:3;
}
.container{
  width:min(1400px, calc(100% - 32px));
  margin:0 auto;
}
.nav{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:center;
  align-items:flex-start;
  padding: 12px 0 14px;
}
.cloud{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width: 128px;
  min-height: 52px;
  padding: 12px 18px 10px;
  border-radius: 999px;
  background:#fff;
  box-shadow: 0 10px 0 rgba(0,0,0,.05);
  font-weight:800;
  text-decoration:none;
  color: var(--ink);
  line-height:1;
  transition: transform .12s ease, box-shadow .12s ease;
  isolation:isolate;
}
.cloud::before,.cloud::after{
  content:"";
  position:absolute;
  background:#fff;
  z-index:-1;
  border-radius:999px;
}
.cloud::before{
  width: 38px;
  height: 38px;
  top: -14px;
  left: 20px;
  transform: rotate(-8deg);
}
.cloud::after{
  width: 56px;
  height: 56px;
  top: -22px;
  right: 14px;
  transform: rotate(8deg);
}
.cloud:hover{ transform: translateY(-2px); box-shadow: 0 12px 0 rgba(0,0,0,.06); }

main{
  padding: var(--towerTopGap) 16px 0;
  position:relative;
  z-index:1;
}
.street{
  width:min(1400px, calc(100% - 32px));
  margin:0 auto;
  display:grid;
  grid-template-columns: var(--sideW) minmax(0, 760px) var(--sideW);
  gap:18px;
  align-items:end;
  justify-content:center;
}

.tower{
  width:100%;
  background: var(--tower);
  border: 4px solid var(--tower-outline);
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: var(--tower-shadow);
  position:relative;
  overflow:hidden;
  padding:26px;
  min-height: calc(100vh - var(--headerH) - 18px);
  z-index:2;
  isolation: isolate;
}

.side-tower{
  width: var(--sideW);
  height: var(--sideHpx);
  background: linear-gradient(180deg, var(--side), var(--side-dark));
  border: 4px solid var(--side-outline);
  border-radius: 18px 18px 0 0;
  box-shadow: var(--tower-shadow);
  position:relative;
  overflow:hidden;
  z-index:2;
  isolation: isolate;
}

.windows{
  position:absolute;
  top: var(--inset);
  left: var(--inset);
  right: var(--inset);
  bottom: calc(var(--inset) + var(--lobbyH));
  display:grid;
  gap: var(--gap);
  z-index:1;
  pointer-events:none;
  opacity:.22;
}
.window{
  width: var(--win);
  height: var(--win);
  border-radius: 8px;
  background: var(--win-fill);
  border: 3px solid var(--win-border);
  box-shadow:
    inset 0 3px 0 rgba(255,255,255,.18),
    inset 0 -3px 0 rgba(0,0,0,.08),
    0 2px 0 rgba(0,0,0,.08);
}
.window.on{
  background: rgba(255, 242, 140, .55);
  border-color: rgba(0,0,0,.18);
  box-shadow:
    inset 0 3px 0 rgba(255,255,255,.45),
    inset 0 -3px 0 rgba(0,0,0,.08),
    0 0 14px rgba(255, 242, 140, .35),
    0 2px 0 rgba(0,0,0,.08);
}

.swindows{
  position:absolute;
  inset:12px;
  display:grid;
  gap: var(--sgap);
  z-index:1;
  pointer-events:none;
  opacity:.22;
}
.swindow{
  width: var(--swin);
  height: var(--swin);
  border-radius: 6px;
  background: rgba(255,255,255,.16);
  border: 3px solid rgba(0,0,0,.12);
  box-shadow:
    inset 0 3px 0 rgba(255,255,255,.18),
    inset 0 -3px 0 rgba(0,0,0,.08),
    0 2px 0 rgba(0,0,0,.08);
}

.content{
  position:absolute;
  top: 26px;
  left: 26px;
  right: 18px;
  bottom: calc(var(--lobbyH) + 16px);
  z-index:2;
  overflow: hidden;
}
.content-scroll{
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 16px 18px 24px 16px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,.35) rgba(255,255,255,.12);
}
.content-panel{
  max-width:72ch;
  margin:0 auto;
  padding: 0;
}
.content-scroll::-webkit-scrollbar{
  width: 12px;
}
.content-scroll::-webkit-scrollbar-track{
  background: rgba(255,255,255,.14);
  border-radius: 999px;
}
.content-scroll::-webkit-scrollbar-thumb{
  background: rgba(0,0,0,.32);
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.14);
}
h1{ margin:0 0 10px; font-size: clamp(22px, 3vw, 34px); letter-spacing:-.02em; }
h2{ margin: 28px 0 12px; font-size: clamp(18px, 2.2vw, 26px); }
h3{ margin: 22px 0 10px; font-size: clamp(16px, 1.9vw, 22px); }
p{ margin:0 0 14px; line-height:1.55; }
.view-copy{
  font-size: 18px;
  max-width: 46ch;
}
.contact-form{
  margin-top: 24px;
}
.form-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:14px;
}
.form-field{
  margin-bottom: 14px;
}
.form-field.is-hidden{
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-field label{
  display:block;
  margin-bottom: 6px;
  font-weight: 700;
}
.form-field input,
.form-field textarea{
  width:100%;
  padding: 12px 14px;
  border: 2px solid rgba(0,0,0,.12);
  border-radius: 16px;
  background: rgba(255,255,255,.78);
  color: var(--ink);
  font: inherit;
}
.form-field textarea{
  min-height: 180px;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus{
  outline: none;
  border-color: rgba(12,53,69,.55);
  box-shadow: 0 0 0 4px rgba(12,53,69,.12);
}
.form-actions{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.button-primary{
  border: 0;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(12,53,69,.92);
  color:#fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 0 rgba(0,0,0,.14);
}
.button-primary:hover{
  background: rgba(12,53,69,1);
}
.form-status{
  font-weight: 700;
}
.form-status.is-error{
  color: #7f1d1d;
}
.feature-video{
  margin-top: 56px;
}
.video-frame{
  position: relative;
  width: 100%;
  max-width: 720px;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 0 rgba(0,0,0,.08);
  background: rgba(255,255,255,.16);
}
.video-frame iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.prize-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:12px;
  margin: 18px 0 24px;
}
.prize-card{
  background: rgba(255,255,255,.2);
  border: 2px solid rgba(0,0,0,.12);
  border-radius: 18px;
  padding: 14px 12px;
  text-align:center;
  box-shadow: 0 6px 0 rgba(0,0,0,.05);
}
.prize-card strong{
  display:block;
  margin-bottom:6px;
  font-size: 15px;
}
.prize-card span{
  font-size: 22px;
  font-weight: 800;
}
.content-table{
  width:100%;
  border-collapse: collapse;
  margin: 0 0 18px;
  background: rgba(255,255,255,.14);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 0 rgba(0,0,0,.05);
}
.content-table th,
.content-table td{
  padding: 10px 12px;
  text-align:left;
  border-bottom: 1px solid rgba(0,0,0,.12);
  vertical-align: middle;
}
.content-table th{
  background: rgba(255,255,255,.22);
  font-size: 14px;
  letter-spacing: .02em;
}
.content-table tr:last-child td{
  border-bottom:none;
}
.teleport-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width: 92px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(12,53,69,.88);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 0 rgba(0,0,0,.14);
}
.teleport-link:hover{
  background: rgba(12,53,69,1);
}
.inline-action{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(12,53,69,.88);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 0 rgba(0,0,0,.14);
}
.inline-action:hover{
  background: rgba(12,53,69,1);
}
.center-action{
  text-align: center;
}
.pagination{
  margin-top: 22px;
  text-align: center;
  line-height: 1.9;
}
.pagination a{
  display: inline-block;
  min-width: 34px;
  margin: 0 4px 8px;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.2);
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 3px 0 rgba(0,0,0,.08);
}
.pagination a:hover{
  background: rgba(255,255,255,.32);
}
.pagination .current{
  display: inline-block;
  min-width: 34px;
  margin: 0 4px 8px;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(12,53,69,.88);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 3px 0 rgba(0,0,0,.12);
}

@media (max-width: 860px){
  .prize-grid{
    grid-template-columns: 1fr;
  }
  .form-grid{
    grid-template-columns: 1fr;
  }
  .content-table{
    font-size: 14px;
  }
  .content-table th,
  .content-table td{
    padding: 8px 10px;
  }
}

.lobby{
  position:absolute;
  left:0; right:0; bottom:0;
  height: var(--lobbyH);
  z-index:2;
  pointer-events:none;
}
.lobby::before{
  content:"";
  position:absolute;
  left:-4px; right:-4px; top:0;
  height:10px;
  background: rgba(0,0,0,.12);
}
.door{
  position:absolute;
  left:50%;
  bottom:18px;
  transform: translateX(-50%);
  width:170px;
  height:110px;
  border-radius: 18px 18px 10px 10px;
  background: rgba(255,255,255,.18);
  border: 4px solid rgba(0,0,0,.18);
  box-shadow: 0 10px 0 rgba(0,0,0,.07);
}
.door::before{
  content:"";
  position:absolute;
  left:18px; right:18px;
  bottom:14px;
  height:78px;
  border-radius: 14px 14px 10px 10px;
  background: rgba(0,0,0,.10);
  border: 3px solid rgba(0,0,0,.14);
  box-shadow: inset 0 6px 0 rgba(255,255,255,.12);
}
.knob{
  position:absolute;
  right:40px;
  bottom:54px;
  width:12px; height:12px;
  border-radius:999px;
  background: rgba(255,242,140,.85);
  border: 3px solid rgba(0,0,0,.18);
  box-shadow: 0 2px 0 rgba(0,0,0,.08);
}

.promo-grid{
  position:absolute;
  inset:0;
  z-index:50;
  display:grid;
  grid-template-columns: 1fr;
  justify-items:center;
  align-content:start;
  gap: var(--tileGap);
  padding: var(--tilePad);
  overflow:auto;
  scrollbar-width: thin;
}
.promo-tile{
  width: var(--tileSize);
  height: var(--tileSize);
  display:block;
  border-radius: 18px;
  overflow:hidden;
  border: 4px solid rgba(0,0,0,.18);
  box-shadow: 0 10px 0 rgba(0,0,0,.08);
  background: rgba(255,255,255,.25);
  transition: transform .12s ease, box-shadow .12s ease;
}
.promo-tile:hover{ transform: translateY(-2px); box-shadow: 0 12px 0 rgba(0,0,0,.09); }
.promo-tile:active{ transform: translateY(1px); box-shadow: 0 8px 0 rgba(0,0,0,.09); }
.promo-tile img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display:block;
  background: rgba(255,255,255,.25);
}

.grass{
  position:fixed;
  left:0; right:0; bottom:0;
  height: var(--grassH);
  background: linear-gradient(180deg, var(--grass), var(--grass-dark));
  z-index:10;
}
.grass::before{ display:none; }
.grass-links{
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.95);
  text-shadow: 0 1px 2px rgba(0,0,0,.25);
}
.grass-links a{
  color: inherit;
  text-decoration: none;
}
.grass-links a:hover{
  text-decoration: underline;
}
.grass-links .divider{
  opacity: .72;
}
.grass-counter{
  position: fixed;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  z-index: 12;
  width: min(100% - 24px, 760px);
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.92);
  text-shadow: 0 1px 2px rgba(0,0,0,.25);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.walkway{
  position: fixed;
  left: 0;
  right: 0;
  bottom: calc(var(--grassH) - 26px);
  height: 92px;
  pointer-events: none;
  overflow: hidden;
  z-index: 11;
}
.walker{
  --duration: 20s;
  --scale: 1;
  --skin: #ffd6a5;
  --shirt: #ff4d6d;
  --pants: #264653;
  --hair: #2a1a12;
  position: absolute;
  bottom: 0;
  left: 100%;
  width: 44px;
  height: 86px;
  transform: scale(var(--scale));
  transform-origin: bottom center;
  animation: walk-across var(--duration) linear infinite;
}
.walker.delay-1{ animation-delay: -7s; }
.walker.delay-2{ animation-delay: -13s; }
.walker.delay-3{ animation-delay: -3s; }

.walker .bob{
  position: absolute;
  inset: 0;
  animation: bob 0.62s ease-in-out infinite alternate;
}
.walker .head{
  position: absolute;
  top: 2px;
  left: 12px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--skin);
  box-shadow: inset -2px -2px 0 rgba(0,0,0,.10);
}
.walker .head::before{
  content:"";
  position:absolute;
  top:-2px;
  left:0;
  width: 18px;
  height: 10px;
  border-radius: 12px 12px 8px 8px;
  background: var(--hair);
}
.walker .torso{
  position:absolute;
  top: 18px;
  left: 9px;
  width: 24px;
  height: 26px;
  border-radius: 10px 10px 8px 8px;
  background: var(--shirt);
  box-shadow: inset -2px -3px 0 rgba(0,0,0,.12);
}
.walker .arm{
  position:absolute;
  top: 22px;
  width: 6px;
  height: 22px;
  border-radius: 999px;
  background: var(--shirt);
  transform-origin: top center;
  animation: arm-swing 0.62s ease-in-out infinite alternate;
}
.walker .arm.left{ left: 7px; }
.walker .arm.right{
  right: 7px;
  animation-direction: alternate-reverse;
}
.walker .arm::after{
  content:"";
  position:absolute;
  bottom:-4px;
  left: 0;
  width: 6px;
  height: 8px;
  border-radius: 999px;
  background: var(--skin);
}
.walker .leg{
  position:absolute;
  top: 40px;
  width: 7px;
  height: 28px;
  border-radius: 999px;
  background: var(--pants);
  transform-origin: top center;
  animation: leg-swing 0.62s ease-in-out infinite alternate;
}
.walker .leg.left{ left: 14px; }
.walker .leg.right{
  right: 14px;
  animation-direction: alternate-reverse;
}
.walker .leg::after{
  content:"";
  position:absolute;
  bottom:-1px;
  left:-2px;
  width: 12px;
  height: 5px;
  border-radius: 8px 8px 3px 3px;
  background: #1f2937;
}

@keyframes walk-across{
  from{ left: calc(100% + 60px); }
  to{ left: -80px; }
}
@keyframes bob{
  from{ transform: translateY(0); }
  to{ transform: translateY(-3px); }
}
@keyframes arm-swing{
  from{ transform: rotate(22deg); }
  to{ transform: rotate(-22deg); }
}
@keyframes leg-swing{
  from{ transform: rotate(-18deg); }
  to{ transform: rotate(18deg); }
}

@media (max-width: 1100px){
  .street{ grid-template-columns: minmax(0, 760px); }
  .side-tower{ display:none; }
}
