/* ====== Reset & Fonts ====== */
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family:'Poppins', sans-serif; line-height:1.6; color:#333; background:#f9f9f9; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }
.container { width:90%; max-width:1200px; margin:0 auto; }

/* ====== Header ====== */
.header {
  position:fixed; top:0; width:100%; background:#0d1b2a; color:#fff; padding:15px 0; z-index:1000;
  box-shadow:0 5px 20px rgba(0,0,0,0.2);
}
.header-container { display:flex; justify-content:space-between; align-items:center; }
.logo { font-family:'Orbitron', sans-serif; font-size:36px; font-weight:700; background:linear-gradient(45deg,#ff7e5f,#feb47b); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
.nav ul { display:flex; gap:25px; }
.nav ul li a { color:#fff; font-weight:600; }
.nav ul li a:hover { color:#feb47b; }
.mobile-menu { display:none; font-size:28px; cursor:pointer; color:#fff; }
@media(max-width:480px){
  .nav ul { display:none; flex-direction:column; position:absolute; top:60px; right:0; background:#0d1b2a; width:200px; padding:20px 0; gap:10px; }
  .nav ul.active { display:flex; }
  .mobile-menu { display:block; }
}

/* ====== Terms Section ====== */
.terms-section { padding:150px 0 80px; background:#fefefe; }
.terms-container h1 { font-size:36px; text-align:center; color:#ff7e5f; margin-bottom:40px; }
.terms-content h2 { font-size:24px; margin-top:25px; color:#0d1b2a; }
.terms-content p { font-size:16px; margin-top:10px; color:#555; line-height:1.8; }

/* ====== Footer ====== */
footer { background:#0d1b2a; color:#fff; padding:50px 0 30px 0; text-align:center; }
.footer-links a { margin:0 10px; color:#fff; }
.footer-links a:hover { color:#ff7e5f; }
.social a { margin:0 10px; color:#fff; }
.social a:hover { color:#feb47b; }
