/* legal.css */

body {
  background-color: #0a0a1a;
  color: #e2e2ff;
  font-family: 'Orbitron', sans-serif;
  margin: 0;
  padding: 2rem 1rem 3rem;
  background-image: url("background-pattern.svg"); /* optional */
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  box-sizing: border-box;
}

.page-container {
  max-width: 900px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.01);
  border: 2px solid #6633ff22;
  border-radius: 20px;
  padding: 3rem 2.5rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 20px #7a5fff44;
  box-sizing: border-box;
}

h1 {
  font-size: 2.5rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1.5rem;
  margin-top: 0;
}

h2 {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: #ffd86b;
  border-left: 4px solid #8b5cf6;
  padding-left: 0.75rem;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

ul li {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #7b5bff;
  padding: 0.75rem 1rem;
  margin-bottom: 0.6rem;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: background-color 0.3s;
}

ul li:hover {
  background-color: rgba(140, 100, 255, 0.1);
}

a.button {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  background: #7a5fff;
  color: #fff;
  font-weight: bold;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 0 10px #a382ff66;
  transition: background 0.2s, transform 0.2s;
}

a.button:hover {
  background: #957bff;
  transform: scale(1.03);
}

.page-footer {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 3rem;
  color: #888;
}

#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -10;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, #0f0f1b, #1a1a2e);
}