/* ==========================================================================
   rclone Google Drive Integration — stylesheet
   Minimal, dark, responsive. No frameworks, no JavaScript.
   ========================================================================== */

:root {
  --bg: #0f1115;
  --surface: #171a21;
  --border: #2a2e37;
  --text: #e6e8eb;
  --text-muted: #9aa2ad;
  --accent: #6ea8fe;
  --max-width: 720px;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

header {
  margin-bottom: 2rem;
}

h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--text);
}

h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 2rem 0 0.5rem;
  color: var(--text);
}

p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 0;
}

.card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.5rem;
}

ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--text-muted);
}

li {
  margin-bottom: 0.5rem;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

.nav-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
}

footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 480px) {
  .container {
    padding: 2rem 1.25rem 3rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  .card {
    padding: 1.25rem;
  }
}
