body {
        min-height: 100vh;
        background: #060608;
        overflow-x: hidden;
      }
      .terms-container {
        max-width: 1100px;
        margin: 100px auto 50px auto;
        padding: 0 20px;
        position: relative;
        z-index: 5;
      }
      .terms-header {
        text-align: center;
        margin-bottom: 50px;
      }
      .terms-header h1 {
        font-family: 'Outfit', sans-serif;
        font-size: 2.5rem;
        font-weight: 900;
        color: #fff;
        margin-bottom: 10px;
      }
      .terms-header p {
        color: #888;
        font-size: 1rem;
      }
      .terms-layout {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 40px;
      }
      @media (max-width: 800px) {
        .terms-layout {
          grid-template-columns: 1fr;
        }
      }
      .terms-sidebar {
        background: rgba(255, 255, 255, 0.015);
        border: 1px solid rgba(255, 255, 255, 0.03);
        border-radius: 20px;
        padding: 20px;
        height: fit-content;
        backdrop-filter: blur(25px);
      }
      .terms-nav-btn {
        width: 100%;
        background: transparent;
        border: none;
        color: #888;
        padding: 14px 20px;
        border-radius: 12px;
        font-family: 'Outfit', sans-serif;
        font-weight: 700;
        font-size: 0.95rem;
        text-align: left;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s;
      }
      .terms-nav-btn:hover {
        color: #fff;
        background: rgba(255, 255, 255, 0.02);
      }
      .terms-nav-btn.active {
        color: #000;
        background: #fff;
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
      }
      .terms-nav-btn.active i {
        color: #000;
      }
      .terms-content-pane {
        background: rgba(255, 255, 255, 0.01);
        border: 1px solid rgba(255, 255, 255, 0.03);
        border-radius: 24px;
        padding: 40px;
        backdrop-filter: blur(25px);
        min-height: 400px;
      }
      @media (max-width: 600px) {
        .terms-content-pane {
          padding: 24px;
        }
      }
      .terms-panel {
        display: none;
        animation: fadeInTab 0.4s ease forwards;
      }
      .terms-panel.active {
        display: block;
      }
      .terms-panel h2 {
        font-family: 'Outfit', sans-serif;
        font-size: 1.8rem;
        font-weight: 800;
        color: #fff;
        margin: 0 0 24px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        padding-bottom: 12px;
      }
      .terms-panel h3 {
        font-family: 'Outfit', sans-serif;
        font-size: 1.15rem;
        font-weight: 700;
        color: #fff;
        margin: 24px 0 10px 0;
      }
      .terms-panel p {
        color: #aaa;
        font-size: 0.95rem;
        line-height: 1.7;
        margin: 0 0 16px 0;
      }
      .terms-panel ul {
        color: #aaa;
        font-size: 0.95rem;
        line-height: 1.7;
        margin: 0 0 20px 0;
        padding-left: 20px;
      }
      .terms-panel li {
        margin-bottom: 8px;
      }
      .back-btn-wrapper {
        text-align: center;
        margin-top: 50px;
      }
      .btn-back-home {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        color: #fff;
        padding: 12px 28px;
        border-radius: 14px;
        font-family: 'Outfit', sans-serif;
        font-weight: 700;
        font-size: 0.9rem;
        cursor: pointer;
        transition: all 0.3s;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
      }
      .btn-back-home:hover {
        background: #fff;
        color: #000;
        transform: translateY(-2px);
      }
      .star-background {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 1;
        pointer-events: none;
        overflow: hidden;
      }
