/* terms_privacy.css - Dark Theme, Centered Content, Inter Font, Smaller Font Size */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap");

:root {
  --background: #0e0e0e;
  --foreground: #ffffff;
  --text-muted: #bbbbbb;
  --accent: #38bdf8;
  --border: #2a2a2a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: 'Inter', sans-serif;
  font-size: 0.925rem; /* slightly smaller */
  line-height: 1.6;
  padding: 2rem 1rem;
  display: flex;
  justify-content: center;
}

main {
  max-width: 800px;
  width: 100%;
}

h1, h2, h3 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--accent);
}

h1 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

h2 {
  font-size: 1.25rem;
  margin-top: 2rem;
}

h3 {
  font-size: 1.05rem;
  margin-top: 1.5rem;
}

p {
  margin-bottom: 0.9rem;
  color: var(--foreground);
}

ul, ol {
  padding-left: 1.5rem;
  margin-bottom: 0.9rem;
}

li {
  margin-bottom: 0.4rem;
}

a {
  color: var(--accent);
  text-decoration: underline;
}

section {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

code {
  background-color: #1a1a1a;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-size: 0.85rem;
}

.accept-btn {
    background-color: transparent;
    color: #38bdf8;
    border: 2px solid #38bdf8;
    padding: 14px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-top: 2rem;
  }
  
  .accept-btn:hover {
    background-color: #38bdf8;
    color: #0e0e0e; /* matches your dark background */
    transform: translateY(-1px);
  }
  
  .accept-btn:focus {
    outline: 3px solid #1ea6db;
    outline-offset: 2px;
  }
  