* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
  transition: all 0.5s ease;
}

.home-body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(-45deg, orange, white, green);
  animation: gradientMove 12s ease infinite;
  padding: 20px;
}

.home-container {
  text-align: center;
  padding: 50px 40px;
  border-radius: 25px;
  width: 100%;
  max-width: 520px;
  transition: 0.3s;
  animation: fadeIn 2s ease forwards;
}

.home-container h1 {
  margin-bottom: 15px;
  font-size: 34px;
  color: darkblue;
  letter-spacing: 2px;
}

.home-container p {
  color: #555;
  margin-bottom: 30px;
  line-height: 1.7;
  font-size: 15px;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
}

.start-btn {
  text-decoration: none;
  background: linear-gradient(135deg, #8e2de2, #d230d2);
  color: white;
  transition: 0.3s;
  padding: 14px 34px;
  border-radius: 40px;
  font-weight: 700;
  display: inline-block;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  letter-spacing: 1px;
}

.start-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  background: blue;
}

.start-btn:active {
  transform: scale(0.96);
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.spinner {
  border: 8px solid #f3f3f3;
  border-top: 5px solid white;
  border-top: 5px solid transparent;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 600px) {
  .home-container {
    padding: 35px 20px;
    border-radius: 18px;
  }

  .home-container h1 {
    font-size: 26px;
  }

  .home-container p {
    font-size: 14px;
  }

  .start-btn {
    width: 100%;
    padding: 12px 0;
    font-size: 14px;
  }
}

@media (max-width: 380px) {
  .home-container h1 {
    font-size: 22px;
  }
}
