:root {
  --bg-color: #030014;
  --text-color: #ffffff;
  --accent-color: #2f354d;
  --button-bg: #1c1f2e;
  --button-border: #3a3f55;
  --font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-family);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow-x: hidden;
  background-image: radial-gradient(
    circle at 50% -20%,
    #1a1f35 0%,
    #030014 60%
  );
}

.container {
  max-width: 800px;
  padding: 20px;
  z-index: 1;
}

.logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.logo-img {
  width: 120px;
  height: 120px;
  border-radius: 36px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  display: block;
}

h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}


.subtitle {
  font-size: 1.25rem;
  color: #aeb4c6;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.description {
  font-size: 1rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.download-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.store-button {
  display: flex;
  align-items: center;
  background-color: transparent;
  border: 1px solid var(--button-border);
  border-radius: 12px;
  padding: 10px 24px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  min-width: 180px;
}

.store-button:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: #fff;
  transform: translateY(-2px);
}

.store-icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  fill: white;
}

.store-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.store-text span:first-child {
  font-size: 0.7rem;
  text-transform: uppercase;
  opacity: 0.8;
}

.store-text span:last-child {
  font-size: 1.1rem;
  font-weight: 600;
}

footer {
  margin-top: auto;
  padding: 40px 0;
  font-size: 0.875rem;
  color: #4b5563;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  color: #6b7280;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

@media (max-width: 600px) {
  h1 {
    font-size: 3rem;
  }

  .download-buttons {
    flex-direction: column;
    align-items: center;
  }

  .store-button {
    width: 100%;
    max-width: 280px;
  }
}
