/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  overflow: hidden; /* Prevent any scrolling */
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.container {
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.content {
  text-align: center;
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

/* Store name styling */
.store-name {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #1966aa;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

/* Coming soon section */
.coming-soon-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.svg-container {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 0 auto;
}

.coming-soon-svg {
  width: 100%;
  height: auto;
  max-height: 300px;
}

.svg-text {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 600;
  fill: #1966aa;
}

.coming-soon-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  color: #1966aa;
  margin: 0;
  letter-spacing: -0.03em;
}

.coming-soon-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #64748b;
  font-weight: 400;
  max-width: 500px;
  line-height: 1.6;
  margin: 0;
}

/* Footer section */
.footer-section {
  margin-top: 1rem;
}

.footer-text {
  font-size: clamp(0.875rem, 2vw, 1rem);
  color: #94a3b8;
  font-weight: 400;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .container {
    padding: 15px;
  }

  .content {
    gap: 1.5rem;
  }

  .svg-container {
    max-width: 300px;
  }

  .coming-soon-svg {
    max-height: 250px;
  }

  .svg-text {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 10px;
  }

  .content {
    gap: 1rem;
  }

  .svg-container {
    max-width: 250px;
  }

  .coming-soon-svg {
    max-height: 200px;
  }

  .svg-text {
    font-size: 16px;
  }
}

/* Landscape orientation adjustments */
@media (max-height: 600px) and (orientation: landscape) {
  .content {
    gap: 1rem;
  }

  .svg-container {
    max-width: 250px;
  }

  .coming-soon-svg {
    max-height: 180px;
  }

  .store-name {
    font-size: 2rem;
  }

  .coming-soon-title {
    font-size: 2.5rem;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .coming-soon-svg {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Animation for subtle entrance effect */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content > * {
  animation: fadeInUp 0.8s ease-out forwards;
}

.content > *:nth-child(1) {
  animation-delay: 0.1s;
}
.content > *:nth-child(2) {
  animation-delay: 0.3s;
}
.content > *:nth-child(3) {
  animation-delay: 0.5s;
}

/* Ensure no scrollbars appear */
body::-webkit-scrollbar {
  display: none;
}

body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
