:root {
    --primary-bg: #0a0a0a;
    --nav-bg: rgba(10, 10, 10, 0.8);
    --accent-color: #6a0dad;
    --accent-gradient: linear-gradient(135deg, #6a0dad, #8a2be2);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --premium-shadow: 0 8px 32px rgba(106, 13, 173, 0.15);
    --premium-border: 1px solid rgba(255, 255, 255, 0.1);
    --premium-blur: blur(20px);
    --premium-radius: 32px;
}

body, html {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to bottom,
        var(--primary-bg),
        #0d0d0d 30%,
        #0f0f0f 70%,
        var(--primary-bg));
    background-attachment: fixed;
    color: var(--text-primary);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    height: 70px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    position: relative;
}
  
.terms-container {
    max-width: 1200px;
    margin: 6rem auto 4rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);    /* same translucent background */
    border: var(--premium-border);            /* e.g., 1px solid rgba(255, 255, 255, 0.1) */
    border-radius: var(--premium-radius);     /* e.g., 32px */
    backdrop-filter: var(--premium-blur);     /* e.g., blur(20px) */
    box-shadow: var(--premium-shadow);        /* e.g., 0 8px 32px rgba(106, 13, 173, 0.15) */
    color: var(--text-primary);
  }
  
  
  /* Headings inside the terms container */
  .terms-container h1,
  .terms-container h2,
  .terms-container h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
  }
  
  /* Paragraphs & lists */
  .terms-container p,
  .terms-container li {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1rem;
  }
  
  .terms-container ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    list-style: disc;
  }
  
  .terms-container ul li {
    margin-bottom: 0.5rem;
  }
  
  /* Horizontal rule for section separation */
  .terms-container hr {
    border: 0;
    border-top: 1px solid var(--border-color);
    margin: 2rem 0;
  }
  
  /* Link styling */
  .terms-container a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
  }
  
  .terms-container a:hover {
    color: #b463f2; /* Slightly lighter accent on hover */
  }
  
  /* Footer styles (similar to the privacy page) */
  /* Footer Styles */
  .footer {
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    padding: 4rem 2rem 1rem;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-section p,
.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.9rem;
}
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .terms-container {
      margin: 5rem 1rem 3rem 1rem;
      padding: 1.5rem;
    }
  
    .footer-content {
      gap: 2rem;
    }
  }
  