.outer {
  width: 300px;
  height: 250px;
  border-radius: 20px;
  padding: 1px;
  background: radial-gradient(circle 230px at 0% 0%, var(--gold-light), var(--bg2));
  position: relative;
}

.dot {
  width: 5px;
  aspect-ratio: 1;
  position: absolute;
  background-color: var(--gold-light);
  box-shadow: 0 0 10px var(--gold-light);
  border-radius: 100px;
  z-index: 2;
  right: 10%;
  top: 10%;
  animation: moveDot 6s linear infinite;
}

@keyframes moveDot {
  0%,
  100% {
    top: 10%;
    right: 10%;
  }
  25% {
    top: 10%;
    right: calc(100% - 35px);
  }
  50% {
    top: calc(100% - 30px);
    right: calc(100% - 35px);
  }
  75% {
    top: calc(100% - 30px);
    right: 10%;
  }
}

.card {
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 19px;
  border: solid 1px #202222;
  background-size: 20px 20px;
  background: radial-gradient(circle 280px at 0% 0%, var(--bg2), var(--bg));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
  color: #fff;
}
.ray {
  width: 220px;
  height: 45px;
  border-radius: 100px;
  position: absolute;
  background-color: #ecd7ac96;
  opacity: 0.4;
  box-shadow: 0 0 50px var(--gold-light);
  filter: blur(10px);
  transform-origin: 10%;
  top: 0%;
  left: 0;
  transform: rotate(40deg);
}

.line {
  width: 100%;
  height: 1px;
  position: absolute;
  background-color: var(--bg2);
}
.topl {
  top: 10%;
  background: linear-gradient(90deg, #554f43 30%, var(--bg2) 70%);
}
.bottoml {
  bottom: 10%;
}
.leftl {
  left: 10%;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, #554f43 30%, var(--bg2) 70%);
}
.rightl {
  right: 10%;
  width: 1px;
  height: 100%;
}