/* Minimal & Fast Styling Sheet */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #1f2937;
  background-color: #ffffff;
  line-height: 1.6;
  padding: 0;
}

.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 24px 16px;
}

/* Header & Nav */
header {
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 40px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

.logo {
  font-weight: 800;
  font-size: 1.2rem;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo img {
  width: 24px;
  height: 24px;
}

nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

nav a {
  color: #4b5563;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

nav a:hover, nav a.active {
  color: #111827;
  text-decoration: underline;
}

/* Sections & Typography */
h1 {
  font-size: 2.1rem;
  color: #111827;
  margin-bottom: 12px;
  font-weight: 800;
}

h2 {
  font-size: 1.45rem;
  color: #111827;
  margin-top: 32px;
  margin-bottom: 12px;
  font-weight: 700;
}

h3 {
  font-size: 1.15rem;
  color: #111827;
  margin-bottom: 8px;
  font-weight: 600;
}

p {
  margin-bottom: 16px;
  color: #374151;
}

/* Buttons */
.btn {
  display: inline-block;
  background: #111827;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 8px;
}

.btn:hover {
  background: #374151;
}

.beta-tag {
  font-size: 9px;
  font-weight: 800;
  background: #fef3c7;
  color: #d97706;
  border: 1px solid #fde68a;
  padding: 1px 4px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}

/* Lists */
ul, ol {
  padding-left: 20px;
  margin-bottom: 16px;
  color: #374151;
}

li {
  margin-bottom: 8px;
}

code {
  background: #f3f4f6;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
}

/* Footer style */
footer {
  border-top: 1px solid #e5e7eb;
  padding: 24px 0;
  font-size: 0.85rem;
  color: #6b7280;
  text-align: center;
  margin-top: 60px;
}

footer a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

footer a:hover {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  list-style: none;
  margin-bottom: 12px;
}

.footer-support {
  margin-top: 8px;
  font-size: 0.9rem;
}

/* Terms structure */
.terms-content section {
  margin-bottom: 24px;
}
