:root { color-scheme: light dark; }

html, body {
  margin: 0;
  padding: 0;
  background-color: #0c0c0c;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 24px 24px; /* spacing between dots */
  color: #f3f3f3;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

main {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}

h1 {
  font-size: 1.75rem;
  margin: 0 0 0.75rem;
}

h2 {
  font-size: 1.25rem;
  margin-top: 2rem;
}

p, li {
  font-size: 0.98rem;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .9em;
}

header, footer {
  background: rgba(0,0,0,.04);
  padding: 1rem;
}

footer {
  font-size: .9rem;
}

/* --- Page Layout Wrapper --- */
.page-container {
  width: 100%;
  max-width: 800px;
  margin: 6rem auto 4rem;
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem 2.5rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
}

/* Ensure inner text doesn’t touch edges */
.page-container h1 {
  margin-top: 0;
}

/* Keep paragraphs and lists clean */
.page-container p,
.page-container li {
  color: #d0d0d0;
}


.meta-container {
  display: flex;
  align-items: center;   /* center vertically */
  gap: 1rem;
  margin-top: 1rem;
}

.app-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  object-fit: contain;
}

.meta-text {
  display: flex;
  flex-direction: column;
  justify-content: center;  /* keeps text centered with icon height */
}

.meta {
  color: #666;
  font-size: .95rem;
  margin: .25rem 0;
}


a {
  text-decoration: underline;
}

.back-button {
  position: fixed;
  top: 1rem;
  left: 1rem;
  color: #00bcd4;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  background: transparent;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  border: 1px solid #00bcd4;
  transition: background 0.2s, transform 0.2s, color 0.2s;
  z-index: 10;
}

.back-button:hover {
  background: rgba(0, 188, 212, 0.1);
  transform: translateX(-2px);
  color: #14d3ed;
}



