body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #eaeaea;
  font-family: 'Inter', Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  background: radial-gradient(circle at 0% 0%, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.05) 40%, rgba(255,255,255,0.02) 70%, rgba(0,0,0,0) 100%);
  z-index: -1;
}

.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 90vh;
  max-width: 700px;
  width: 50vw;
  margin: 0 auto;
  background: transparent;
  position: relative;
  z-index: 1;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 0 0 0;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  gap: 0;
  position: relative;
  z-index: 10;
}

header a {
  position: relative;
  z-index: 10;
}

.logo {
  margin-right: 0;
  max-height: 32px;
  width: auto;
  height: auto;
  cursor: pointer;
}

.download-btn {
  background: #232323;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 24px;
  font-size: 0.95rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0 16px;
  transition: background 0.2s;
  position: relative;
  z-index: 1;
}
.download-btn:hover {
  background: #333;
}
.download-btn.top {
  margin-left: 0;
}
.download-btn.center {
  margin: 16px auto 0 auto;
  display: block;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  text-align: center;
  margin-top: -40px;
  padding-bottom: 16px;
}

.title {
  font-family: 'Americanus', 'Georgia', serif;
  font-size: 3rem;
  font-style: italic;
  margin-bottom: 8px;
}

.subtitle {
  font-size: 1.2rem;
  color: #b0b0b0;
  margin-bottom: 16px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

footer {
  background: none;
  padding: 48px 0 24px 0;
  color: #b0b0b0;
  border-radius: 0 0 12px 12px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.newsletter {
  max-width: 400px;
  margin-left: 25vw;
  margin-bottom: 32px;
}
.newsletter h2 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #fff;
}
.newsletter p {
  font-size: 1rem;
  margin-bottom: 16px;
}
.newsletter-form {
  display: flex;
  gap: 8px;
}
.newsletter-form input[type="email"] {
  flex: 1;
  padding: 10px 16px;
  border-radius: 8px;
  border: none;
  background: #232323;
  color: #fff;
  font-size: 1rem;
}
.newsletter-form button {
  background: #232323;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 24px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.newsletter-form button:hover {
  background: #333;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 24px;
}
.footer-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #888;
  gap: 4px;
}
.footer-bottom span:last-child {
  margin-left: 0;
}

@media (max-width: 900px) {
  .newsletter {
    margin-left: 5vw;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}

.main-wrapper {
  width: 50vw;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: transparent;
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.apple-img {
  width: 14px;
  height: 14px;
  margin-right: 8px;
  filter: brightness(0) invert(1);
  display: inline-block;
}

@media (max-width: 600px) {
  .main-wrapper,
  .container {
    width: 90vw;
    max-width: 100vw;
    min-width: 0;
  }
  body::before {
    display: none !important;
  }
  main {
    margin-top: 40px;
  }
  .title {
    font-size: 2rem;
    margin-bottom: 8px;
  }
  .subtitle {
    margin-bottom: 16px;
    font-size: 1rem;
  }
  .download-btn.center {
    margin: 16px auto 0 auto;
  }
  .footer-bottom {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

.title + .privacy-content {
  padding-top: 32px;
}

.privacy-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  color: #b0b0b0;
}

main:has(.privacy-content) .title {
  padding-top: 64px;
} 