/* QuantumSmartQR Landing Page Styles */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background: #0b0d12;
  color: #e5e9f0;
  line-height: 1.6;
}

/* Landing Page Styles */
.landing-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  padding: 2rem 1rem;
}

.landing-page h1 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  margin-bottom: 0.5rem;
  color: #58a6ff;
  font-weight: 600;
}

.landing-page p {
  max-width: 600px;
  margin: 0.5rem auto;
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.6;
}

.landing-page footer {
  position: absolute;
  bottom: 1rem;
  font-size: 0.9rem;
  color: #aaa;
}

/* Content Page Styles (Privacy, etc.) */
.content-page {
  padding: 2rem 1.5rem 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.content-page h1,
.content-page h2,
.content-page h3 {
  color: #58a6ff;
}

.content-page header {
  text-align: center;
  margin-bottom: 2rem;
}

.content-page main {
  font-size: 1rem;
}

.content-page footer {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}

.content-page ul {
  margin: 1rem 0 1rem 1.2rem;
}

/* Common Styles */
a {
  color: #58a6ff;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .landing-page footer {
    position: relative;
    margin-top: 2rem;
  }
  
  .content-page {
    padding: 1.5rem 1rem 3rem;
  }
}
