* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  height: 100vh;
  background: #F5F0EB;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Wrapper */
.craft-wrapper {
  width: 100%;
  padding: 20px;
}

/* Card */
.craft-card {
  max-width: 520px;
  margin: auto;
  background: #FFF5E1;
  border-radius: 20px;
  padding: 55px 35px;
  text-align: center;
  box-shadow: 0 35px 90px rgba(93, 64, 55, 0.3);
  animation: floatIn 0.9s ease forwards;
}

/* Loader */
.craft-loader {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
}

.craft-loader .ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #5D4037;
  animation: spin 1.6s linear infinite;
}

.craft-loader .ring:nth-child(2) {
  inset: 12px;
  border-top-color: #3E2723;
  animation-duration: 2.2s;
}

.craft-loader .ring:nth-child(3) {
  inset: 24px;
  border-top-color: #8D6E63;
  animation-duration: 2.8s;
}

/* Text */
.craft-card h1 {
  font-size: 28px;
  font-weight: 700;
  color: #5D4037;
  margin-bottom: 12px;
}

.craft-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #3E2723;
  margin-bottom: 32px;
}

/* Button */
.craft-btn {
  display: inline-block;
  padding: 14px 34px;
  background: #5D4037;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.craft-btn:hover {
  background: #3E2723;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(93, 64, 55, 0.45);
}

/* Animations */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(25px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Mobile */
@media (max-width: 480px) {
  .craft-card {
    padding: 45px 25px;
  }

  .craft-card h1 {
    font-size: 24px;
  }

  .craft-loader {
    width: 100px;
    height: 100px;
  }
}
