/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0a0a14;
  color: #eee;
  scroll-behavior: smooth;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: center;
  padding: 1rem 2rem;
  background: rgba(10,10,20,0.8);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #eee;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links .active {
  color: #ff6a00;
}

/* Terms Section */
.terms-section {
  padding: 100px 20px;
  display: flex;
  justify-content: center;
}

.terms-section .container {
  max-width: 800px;
}

.terms-section h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
  background: linear-gradient(90deg,#ff00cc,#00c3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.terms-section h2 {
  font-size: 1.8rem;
  margin: 25px 0 10px;
  background: linear-gradient(90deg,#ff6a00,#ffdd00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.terms-section p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #ccc;
  opacity: 0;
  transform: translateY(50px);
}

/* Footer */
footer {
  background: #0a0a14;
  padding: 2rem 0;
  text-align: center;
  color: #aaa;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  list-style: none;
  margin-top: 0.5rem;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ff6a00;
}

/* Responsive */
@media(max-width:768px){
  .terms-section {
    padding: 60px 15px;
  }

  .terms-section h1 {
    font-size: 2rem;
  }

  .terms-section h2 {
    font-size: 1.5rem;
  }

  .terms-section p {
    font-size: 0.95rem;
  }
}
