#logo {
  align-items: center;
  display: flex;
  height: 100vh;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background: #ffffff;
}

.loader-container {
  background: white;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  max-width: 400px;
  width: 90%;
}

.logo-image {
  height: 60px;
  width: 60px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.heading {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 10px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
    sans-serif;
  color: #000000;
  letter-spacing: -0.5px;
}

.sub-title {
  font-size: 14px;
  font-weight: 400;
  margin: 0 0 30px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
    sans-serif;
  color: #666;
  line-height: 1.5;
}

.loading-spinner {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #2c2c2c;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

.loading-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.loading-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2c2c2c;
  animation: pulse 1.5s ease-in-out infinite;
}

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

.loading-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@media only screen and (min-width: 600px) {
  .loader-container {
    padding: 50px;
    max-width: 450px;
  }

  .logo-image {
    height: 80px;
    width: 80px;
  }

  .heading {
    font-size: 32px;
  }

  .sub-title {
    font-size: 16px;
  }

  .loading-spinner {
    width: 50px;
    height: 50px;
    border-width: 4px;
  }
}

.app-buttons {
  margin-top: 30px;
  text-align: center;
}

.app-text {
  font-size: 12px;
  color: #666;
  margin: 0 0 15px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
    sans-serif;
}

.app-store-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.app-button {
  display: inline-block;
  transition: transform 0.2s ease;
}

.app-button:hover {
  transform: scale(1.05);
}

.app-button img {
  height: 40px;
  width: auto;
}

@media only screen and (max-width: 480px) {
  .loader-container {
    padding: 30px 20px;
    margin: 20px;
  }

  .logo-image {
    height: 50px;
    width: 50px;
  }

  .heading {
    font-size: 20px;
  }

  .sub-title {
    font-size: 13px;
  }

  .app-button img {
    height: 35px;
  }

  .app-store-buttons {
    gap: 10px;
  }
}

.learn-more-section {
  margin-top: 25px;
  text-align: center;
}

.learn-more-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: transparent;
  border: 2px solid #2c2c2c;
  border-radius: 20px;
  color: #2c2c2c;
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
    sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.learn-more-button:hover {
  background: #2c2c2c;
  color: white;
  transform: translateY(-2px);
}

.learn-more-icon {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}
