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

body {
  font-family: "Inter", sans-serif;
  height: 100vh;
  background: conic-gradient(
      from 98deg at -1.25% 123.7%,
      rgba(219, 10, 92, 0) 0deg,
      #db0a5c 360deg
    ),
    #fffad9;
  overflow: hidden;
}

.container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;
}

.logo-icon {
  margin-bottom: 10px;
}

.logo-icon img {
  width: 120px;
  height: auto;
}

.logo-text {
  font-family: "Cairo", sans-serif;
  font-size: 64px;
  font-weight: 900;
  letter-spacing: 2px;
  color: #fffad9;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  -webkit-text-stroke: 2px #fffad9;
  line-height: 1;
  font-stretch: ultra-expanded;
}

.download-buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.download-btn {
  display: block;
  transition: transform 0.2s ease;
}

.download-btn:hover {
  transform: scale(1.05);
}

.download-btn img {
  height: 60px;
  width: auto;
}

.footer {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.footer p {
  color: white;
  font-family: "Cairo", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  opacity: 0.8;
}

.company-name {
  font-family: "Cairo", sans-serif;
  font-weight: 800;
  font-size: 30px;
}

.sal {
  font-family: "Cairo", sans-serif;
  font-weight: 600;
  font-size: 20px;
}

@media (max-width: 768px) {
  .logo-icon img {
    width: 100px;
  }

  .logo-text {
    font-size: 36px;
  }

  .download-buttons {
    flex-direction: column;
    gap: 16px;
  }

  .download-btn img {
    height: 50px;
  }

  .footer p {
    font-size: 10px;
    text-align: center;
    padding: 0 20px;
  }
}
