/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #000;
  color: #ffffff;
  line-height: 1.6;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

/* Container */
.container {
  width: 100%;
  max-width: 600px;
  text-align: center;
}

.container.privacy {
  text-align: left;
}

.privacy

/* Typography */
h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.2rem;
  font-weight: 400;
  color: #bbbbbb;
  margin-bottom: 2rem;
}

p {
  font-size: 1rem;
  color: #dddddd;
}

/* Sections */
.section {
  margin-bottom: 1.8rem;
}

/* Links */
a {
  color: #ffffff;
  text-decoration: underline;
}

a:hover {
  opacity: 0.8;
}

/* Button */
.button {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid #ffffff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.button:hover {
  background-color: #ffffff;
  color: #000000;
}

/* Mobile adjustments */
@media (max-width: 480px) {
  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1rem;
  }

  p {
    font-size: 0.95rem;
  }
}
