/* Splash Screen Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: 100vh;
}

.splash-container {
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}

.logo-container {
  margin-bottom: 32px;
  position: relative;
}

.logo-circle {
  width: 120px;
  height: 120px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.leaf-icon {
  font-size: 56px;
  color: #10b981;
  position: relative;
  z-index: 1;
}

.heart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 36px;
  height: 36px;
  background: #f97316;
  border: 3px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
  z-index: 2;
}

.app-name {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.tagline {
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  opacity: 0.95;
  margin-bottom: 48px;
  letter-spacing: 0.2px;
}

.loading-dots {
  display: flex;
  gap: 12px;
  margin-bottom: 80px;
}

.dot {
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out both;
  opacity: 0.8;
}

.dot:nth-child(1) {
  animation-delay: -0.32s;
}

.dot:nth-child(2) {
  animation-delay: -0.16s;
}

.dot:nth-child(3) {
  animation-delay: 0;
}

@keyframes bounce {
  0%,
  80%,
  100% {
    transform: scale(0);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

.version {
  position: absolute;
  bottom: 32px;
  left: 32px;
  font-size: 12px;
  font-weight: 400;
  color: #ffffff;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
  .app-name {
    font-size: 36px;
  }

  .tagline {
    font-size: 16px;
  }

  .logo-circle {
    width: 100px;
    height: 100px;
  }

  .leaf-icon {
    font-size: 48px;
  }
}

