@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Ubuntu:wght@400&display=swap");

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

html,
body {
  height: 100%;
  width: 100%;
}

body {
  background-color: #131313;
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 24px;
  width: 100%;
}

/* Logo Section */
.logo {
  padding-bottom: 32px;
}

.logo img {
  width: 256px;
  height: 62px;
}

/* Content Section */
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #f5f7f6;
  text-align: center;
}

.content h1 {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: -1.2px;
}

.content p {
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  max-width: 480px;
}

/* Buttons Section */
.buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 24px;
  background-color: #f5f7f6;
  border-radius: 10px;
  text-decoration: none;
  color: #131313;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover {
  box-shadow: 0 4px 12px rgba(245, 247, 246, 0.3);
  background-color: #ffffff;
}

.button img {
  width: 20px;
  height: 20px;
}

/* Dots Section */
.dots {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.dot {
  width: 8px;
  height: 8px;
  background-color: #f5f7f6;
  border-radius: 24px;
  animation: bounce 1.4s ease-in-out infinite;
}

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

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

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

@keyframes bounce {
  0%, 80%, 100% {
    transform: translateY(0);
    opacity: 0.6;
  }
  40% {
    transform: translateY(-4px);
    opacity: 1;
  }
}


/* Responsive - Tablet */
@media (max-width: 768px) {
  .container {
    gap: 24px;
    padding: 20px;
  }

  .logo {
    padding-bottom: 24px;
  }

  .logo img {
    width: 200px;
    height: auto;
  }

  .content h1 {
    font-size: 36px;
    line-height: 40px;
  }

  .content p {
    font-size: 16px;
    line-height: 24px;
    max-width: 90%;
    padding: 0 16px;
  }

  .buttons {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .button {
    height: 44px;
    padding: 0 20px;
    font-size: 14px;
  }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
  .container {
    gap: 20px;
    padding: 16px;
  }

  .logo {
    padding-bottom: 16px;
  }

  .logo img {
    width: 160px;
    height: auto;
  }

  .content h1 {
    font-size: 28px;
    line-height: 32px;
    letter-spacing: -0.8px;
  }

  .content p {
    font-size: 14px;
    line-height: 22px;
    max-width: 100%;
  }

  .buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .button {
    width: 100%;
    max-width: 200px;
    height: 44px;
    padding: 0 16px;
  }
}
