@import url('https://fonts.googleapis.com/css2?family=Baloo+2&display=swap');

body::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at top center, rgba(255, 255, 224, 0.3), transparent 70%);
  z-index: 0;
  margin: 0;
  padding: 0;
  background: url("../assets/background_image.png") no-repeat center center fixed;
  background-size: cover;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Baloo 2', cursive;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 40%, #fbc02d 100%);
  animation: sunriseFade 3s ease-in-out;
}

@keyframes sunriseFade {
  0% {
    opacity: 0;
    background: #000000;
  }
  100% {
    opacity: 1;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 40%, #fbc02d 100%);
  }
}

.start-container {
  background: white;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 15px 25px rgba(0,0,0,0.1);
  text-align: center;
  max-width: 500px;
  width: 90%;
  border: 3px dashed #fbc02d;
  z-index: 2;
}

.logo {
  max-width: 320px;
  width: 90%;
  height: auto;
  margin-bottom: 20px;
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.start-btn {
  display: inline-block;
  padding: 14px 30px;
  background-color: #f57f17;
  color: white;
  font-size: 18px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.start-btn:hover {
  background-color: #ef6c00;
}

/* Ornaments */
.ornament {
  position: absolute;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, #fdd835 30%, #fbc02d 100%);
  border-radius: 50%;
  opacity: 0.3;
  animation: float 15s linear infinite;
  z-index: 1;
  filter: blur(1px);
}

.ornament-1 { top: 10%; left: -50px; animation-delay: 0s; }
.ornament-2 { top: 60%; left: -70px; animation-delay: 5s; width: 50px; height: 50px; }
.ornament-3 { top: 30%; left: -60px; animation-delay: 10s; width: 30px; height: 30px; }

@keyframes float {
  0% { transform: translateX(0) rotate(0deg); opacity: 0.2; }
  50% { transform: translateX(60vw) translateY(-10px) rotate(20deg); opacity: 0.4; }
  100% { transform: translateX(120vw) translateY(0px) rotate(0deg); opacity: 0.2; }
}

/* Responsive */
@media (max-width: 768px) {
  .start-btn {
    padding: 12px 24px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .start-container {
    padding: 25px 20px;
  }

  .start-btn {
    font-size: 15px;
    padding: 10px 20px;
  }

  .ornament {
    width: 25px;
    height: 25px;
  }

  .ornament-2 {
    width: 30px;
    height: 30px;
  }

  .ornament-3 {
    width: 20px;
    height: 20px;
  }
}
