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

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    overflow-x: hidden;
}

html {
    background: #0b0b0f;
}

body {
    margin: 0;
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    background: transparent;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 20% 20%, rgba(138, 43, 226, 0.18), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(0, 136, 255, 0.15), transparent 45%),
        linear-gradient(180deg, #0b0b0f 0%, #0f0f18 100%);
}

.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;
  }
}
