.cascete-body{
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: #000;
  z-index: 99999;
}
.cassette-tape {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  row-gap: 20px;
  width: 300px;
  height: 210px;
  background: linear-gradient(to bottom, #2c2c2c, #1a1a1a);
  border: 10px solid #333;
  border-radius: 10px;
  box-shadow:
    10px 10px 20px rgba(0, 0, 0, 0.5),
    inset -4px -4px 8px rgba(255, 255, 255, 0.1),
    inset 4px 4px 8px rgba(0, 0, 0, 0.7);
  transform: perspective(800px) rotateX(4deg);
  font-family: "Dancing Script", cursive;
  font-optical-sizing: auto;
  margin: 4px;
}
.label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 30px;
  font-size: 12px;
  letter-spacing: 2px;
  margin: 20px auto 10px;
  border-radius: 4px;
  background: radial-gradient(circle, #fff 30%, #222 100%);
  box-shadow:
    inset -2px -2px 5px rgba(0, 0, 0, 0.5),
    inset 2px 2px 5px rgba(255, 255, 255, 0.1);
  color: #000;
}
.window {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: radial-gradient(circle, #666 30%, #222 100%);
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.1);
  width: 200px;
  height: 60px;
  margin: 0 auto;
  border-radius: 6px;
  padding: 0 20px;
}
.reel {
  width: 20px;
  background: radial-gradient(circle, #666 30%, #222 100%);
  height: 20px;
  border-radius: 50%;
  animation: spin 3s linear infinite;
  box-shadow:
    0 0 0 4px #fff,
    0 0 0 14px #000,
    0 0 5px 14px #0005;
  border: 2px dashed #fff;
  z-index: 1;
}
.left-reel {
  height: 40px;
  width: 40px;
  border: 4px dashed #fff;
  box-shadow:
    0 0 0 6px #fff,
    0 0 0 30px #000,
    0 0 5px 30px #0005;
  animation: spin 4s linear infinite;
}
.tape-strip {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  background: radial-gradient(circle, #666 30%, #222 100%);
  position: absolute;
  bottom: 15px;
  left: 50%;
  width: 190px;
  height: 4px;
  transform: translateX(-50%);
  border-radius: 2px;
}
.reel-string {
  position: absolute;
  content: "";
  width: 62%;
  height: 8px;
  top: -7px;
  left: 50px;
  background-color: #0008;
  transform: rotate(12deg);
  border-radius: 8px;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}