*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

body {
  width: 100%;
}

@media screen and (max-width: 760px) {
  body {
    background: linear-gradient(135deg, #051321 0%, #0a1929 100%);
  }
}

.app {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  height: 100dvh;
  background: url("../img/1-e.js") no-repeat center center;
  background-size: cover;
  background-position: center;
}

/* @media screen and (max-width: 760px) {
  .app {
    height: calc(100dvh + 60px);
  }
} */

header {
  width: 100%;
  padding: 8px;
  /* padding-bottom: 0; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* border-bottom: 1px solid rgba(0, 210, 255, 0.2); */
}

header .left {
  display: flex;
  align-items: center;
  gap: 12px;
}

header > img {
  width: 24px;
  height: 24px;
}

.left > img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #00a2ff;
  box-shadow: 0 0 10px #00a2ff, 0 0 20px rgba(0, 162, 255, 0.5);
}

.left .beside {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.beside h1 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
}

.beside > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.beside > div p {
  font-size: 12px;
  color: #e6f3ff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
}

.beside > div img {
  width: 14px;
  height: 14px;
}

.hero {
  width: 100%;
  height: 145px;
}

.hero div {
  width: 100%;
  height: 100%;
  background-image: url("../img/bottom-img.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.variant-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  padding-inline: 16px;
  gap: 12px;
  /* padding-top: 24px; */
}

.variant-grid a {
  /* border: 1px solid rgba(0, 210, 255, 0.2); */
  border-radius: 12px;
  padding: 8px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.variant-grid a > img {
  width: 68px;
  height: 68px;
  border-radius: 12px;
}

.variant-grid a .beside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.variant-grid a .beside > h2 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
}

.variant-grid a .beside > img {
  width: 60px;
  margin: 8px 0 4px 0;
}

.variant-grid a .beside > button {
  border: none;
  outline: none;
  background: linear-gradient(to right, #fefd00, #ffc100);
  width: max-content;
  border-radius: 999px;
  font-size: 12px;
  padding: 4px 8px;
  color: #231e58;
  cursor: pointer;
}

footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  /* background-color: rgba(158, 184, 112, .5); */
  padding-inline: 16px;
  /* border-top: 1px solid rgba(0, 210, 255, 0.2); */
  z-index: 999;
}

footer a {
  text-decoration: none;
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  gap: 5px;
}

footer a > img {
  width: 30px;
  height: 30px;
  border-radius: 999px;
}

footer a > span {
  /* color: #a2e3ff; */
  color: #ffffff;
  font-size: 12px;
  font-weight: bold;
}

.bottom-img div {
  width: 100%;
  height: 100px;
  background-image: url("../img/banner-top.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  /* position: absolute;
  bottom: 0; */
}