:root {
  --white: rgba(255, 255, 255, 0.92);
  --blue: #126cff;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
}

body {
  background: #060a0d;
  color: var(--white);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
}

button {
  font: inherit;
}

.landing {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  overflow: hidden;
  background: #080b0d url("assets/backgrounds/landing-background.png") center center / cover no-repeat;
}

.site-header {
  position: absolute;
  top: 8.1vh;
  left: 50%;
  z-index: 10;
  width: min(520px, 88vw);
  text-align: center;
  transform: translateX(-50%);
  pointer-events: none;
}

.site-header h1 {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.05rem, 1.35vw, 1.48rem);
  font-weight: 400;
  line-height: 1.15;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.22);
}

.site-header p {
  margin: 1.15rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.78rem, 1vw, 1rem);
  font-weight: 300;
}

.panel {
  position: relative;
  display: grid;
  grid-template-rows: 7.5rem 22.5rem auto 1fr;
  justify-items: center;
  align-content: start;
  min-height: 100vh;
  overflow: hidden;
}

.brand {
  position: relative;
  z-index: 4;
  display: grid;
  grid-row: 2;
  justify-items: center;
  align-self: start;
  width: min(60%, 27rem);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
}



.brand-business img {
  max-width: 27rem;
}

.brand-business p {
  margin: -8.75rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(0.78rem, 1.12vw, 1.02rem);
  font-weight: 300;
}

.brand-games {
  width: min(49%, 23rem);
}

.enter {
  position: relative;
  z-index: 6;
  display: inline-flex;
  grid-row: 3;
  align-items: center;
  justify-content: center;
  align-self: start;
  min-width: 13.9rem;
  min-height: 2.4rem;
  padding: 0 0 1.05rem;
  color: var(--white);
  font-size: clamp(0.82rem, 1.05vw, 1rem);
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.enter-business {
  border-bottom-color: rgba(18, 108, 255, 0.72);
  box-shadow: 0 6px 15px -14px rgba(18, 108, 255, 0.8);
}

.enter-games {
  color: rgba(255, 255, 255, 0.91);
  border-bottom-color: rgba(255, 255, 255, 0.44);
}

.arrow {
  display: inline-flex;
  align-items: center;
  margin-left: 0.85rem;
  color: var(--blue);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 0.85;
}

.enter-games .arrow {
  color: rgba(255, 255, 255, 0.78);
}


.site-footer {
  position: absolute;
  bottom: 10.3vh;
  left: 50%;
  z-index: 10;
  display: flex;
  gap: 1.04rem;
  align-items: center;
  justify-content: center;
  width: min(92vw, 34rem);
  color: rgba(255, 255, 255, 0.56);
  font-size: clamp(0.7rem, 0.9vw, 0.88rem);
  transform: translateX(-50%);
  white-space: nowrap;
}

@media (min-width: 761px) and (max-height: 900px) {
  .panel {
    grid-template-rows: 7.5rem 17.5rem auto 1fr;
  }
}

@media (max-width: 760px) {
  .landing {
    grid-template-columns: 1fr;
    min-height: 100vh;
  }

  .site-header {
    top: 2.4rem;
  }

  .panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: auto;
  }

  .panel-business {
    min-height: 26rem;
    padding-top: 2rem;
  }

  .panel-games {
    min-height: 38rem;
    padding-top: 1rem;
  }

  .brand,
  .enter {
    position: static;
    left: auto;
    top: auto;
    align-self: center;
    margin-right: auto;
    margin-left: auto;
    transform: none;
  }

  .brand-business {
    width: min(80%, 27rem);
    margin-top: -4.5rem;
  }

  .brand-business p {
    margin-top: -9.5rem;
  }

  .brand-games {
    width: min(68%, 21rem);
  }

  .enter {
    min-width: 13.2rem;
    font-size: 0.82rem;
    margin-top: 1.25rem;
  }

  .enter-business {
    margin-top: 1rem;
  }

  .site-footer {
    bottom: 2.1rem;
    gap: 0.72rem;
  }
}

@media (max-width: 420px) {
  .site-header h1 {
    font-size: 0.95rem;
  }

  .site-header p {
    margin-top: 0.8rem;
    font-size: 0.76rem;
  }

  .panel-business {
    min-height: 23.5rem;
    padding-top: 1.8rem;
  }

  .panel-games {
    min-height: 34rem;
  }

  .brand-business {
    width: 86%;
    margin-top: -3.2rem;
  }

  .brand-business p {
    margin-top: -7.1rem;
    font-size: 0.72rem;
  }

  .brand-games {
    width: 76%;
  }

  .enter {
    min-width: 12.4rem;
    font-size: 0.72rem;
    margin-top: 1.4rem;
  }

  .enter-business {
    margin-top: 0.85rem;
  }

  .site-footer {
    font-size: 0.66rem;
  }
}
