*,
*::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;
  height: 100dvh;
  margin: 0 auto;
  position: relative;
  background: linear-gradient(135deg, #051321 0%, #0a1929 100%);
}

@media screen and (max-height: 760px) {
  .app {
    margin-bottom: 60px;
  }
}

header {
  width: 100%;
  padding: 24px 16px;
  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: #00d9ff;
}

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

.beside > div p {
  font-size: 12px;
  color: #a0d0ff;
}

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

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

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

.variant-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(167.5px, 1fr));
  padding-inline: 16px;
  gap: 8px;
}

.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;
}

.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-between;
  background-color: rgba(5, 19, 33, 0.95);
  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;
}

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

footer a > span {
  color: #a0d0ff;
  font-size: 12px;
}
