.gone-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f172a, #020617);
  padding: 20px;
}

.gone-card {
  background: #020617;
  border-radius: 20px;
  padding: 60px 50px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  animation: scaleFade 0.6s ease-out;
}

.gone-code {
  font-size: 96px;
  font-weight: 800;
  color: #38bdf8;
  margin-bottom: 10px;
  animation: float 3s ease-in-out infinite;
}

.gone-title {
  font-size: 24px;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 12px;
}

.gone-text {
  font-size: 15px;
  color: #9ca3af;
  margin-bottom: 30px;
  line-height: 1.6;
}

.gone-btn {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  color: #020617;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.gone-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(56, 189, 248, 0.4);
}

/* Animations */
@keyframes scaleFade {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
