* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #1f2937;
  background: linear-gradient(135deg, #5F9063 0%, #232229 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  line-height: 1.6;
}

main {
  width: 100%;
  max-width: 600px;
}

.container {
  width: 100%;
}

.coming-soon__logo {
  text-align: center;
  margin-bottom: 16px;
}

.logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-block;
  animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.coming-soon {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.6s ease-out;
}
@media (min-width: 768px) {
  .coming-soon {
    padding: 60px 50px;
  }
}

.coming-soon__header {
  text-align: center;
  margin-bottom: 40px;
}

.coming-soon__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #5F9063, #354B3D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.5px;
}
@media (min-width: 768px) {
  .coming-soon__title {
    font-size: 40px;
  }
}

.coming-soon__description {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}
@media (min-width: 768px) {
  .coming-soon__description {
    font-size: 18px;
  }
}

.coming-soon__footer {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #e5e7eb;
}

.coming-soon__date {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
  font-weight: 500;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
@media print {
  body {
    background: #ffffff;
  }
  .coming-soon {
    box-shadow: none;
  }
}

/*# sourceMappingURL=styles.css.map */
