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

body {
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at top, #0b0b0f 0%, #050507 100%);
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.tos-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 20px 80px;
  flex: 1;
}

.tos-container h1 {
  font-size: 2.5em;
  color: #bbaaff;
  text-align: center;
  margin-bottom: 25px;
  text-shadow: 0 0 15px rgba(187,170,255,0.5);
}

.intro {
  color: #ccc;
  font-size: 15px;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 40px;
}

section {
  margin-bottom: 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 25px 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: 0.3s;
}

section:hover {
  transform: translateY(-3px);
  border-color: rgba(187,170,255,0.25);
  box-shadow: 0 0 25px rgba(187,170,255,0.15);
}

section h2 {
  font-size: 1.4em;
  color: #bbaaff;
  margin-bottom: 10px;
}

section p {
  color: #ccc;
  line-height: 1.7;
  font-size: 15px;
}

section a {
  color: #bbaaff;
  text-decoration: none;
}

section a:hover {
  text-decoration: underline;
  color: #fff;
}

.footer-note {
  text-align: center;
  color: #999;
  margin-top: 50px;
  font-size: 13px;
}

@media (max-width: 700px) {
  .tos-container {
    padding: 100px 15px 60px;
  }
  .tos-container h1 {
    font-size: 2em;
  }
  section {
    padding: 20px;
  }
  section h2 {
    font-size: 1.2em;
  }
}
