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

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
      background: #0a0a0a;
      color: #fff;
      line-height: 1.6;
    }

    /* Header Section */
    .terms-header {
      position: relative;
       background: linear-gradient(135deg, #1e3a8a 0%, #312e81 50%, #4c1d95 100%);
      padding: 8rem 2rem 4rem;
      text-align: center;
      overflow: hidden;
    }

    .header-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0.1;
      background-image: 
        linear-gradient(rgba(59, 130, 246, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.2) 1px, transparent 1px);
      background-size: 40px 40px;
      animation: gridMove 20s linear infinite;
    }

    @keyframes gridMove {
      0% { transform: translate(0, 0); }
      100% { transform: translate(40px, 40px); }
    }

    .header-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
    }

    .back-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: #94a3b8;
      text-decoration: none;
      font-size: 0.95rem;
      margin-bottom: 2rem;
      transition: color 0.3s ease;
    }

    .back-link:hover {
      color: #3b82f6;
    }

    .back-link svg {
      width: 20px;
      height: 20px;
    }

    .terms-title {
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      font-weight: 800;
      margin-bottom: 1rem;
      background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .terms-subtitle {
      font-size: clamp(1rem, 2vw, 1.25rem);
      color: #cbd5e1;
      margin-bottom: 1rem;
    }

    .last-updated {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.75rem 1.5rem;
      background: rgba(59, 130, 246, 0.1);
      border: 1px solid rgba(59, 130, 246, 0.3);
      border-radius: 50px;
      font-size: 0.875rem;
      color: #3b82f6;
    }

    .last-updated svg {
      width: 16px;
      height: 16px;
    }

    /* Main Content */
    .terms-main {
      max-width: 900px;
      margin: 0 auto;
      padding: 4rem 2rem;
    }

    /* Table of Contents */
    .toc {
      background: rgba(15, 23, 42, 0.5);
      border: 1px solid rgba(59, 130, 246, 0.2);
      border-radius: 16px;
      padding: 2rem;
      margin-bottom: 4rem;
    }

    .toc-title {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .toc-title svg {
      width: 24px;
      height: 24px;
      stroke: #3b82f6;
    }

    .toc-list {
      list-style: none;
    }

    .toc-list li {
      margin-bottom: 0.75rem;
    }

    .toc-list a {
      color: #94a3b8;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.3s ease;
      padding: 0.5rem;
      border-radius: 8px;
    }

    .toc-list a:hover {
      color: #3b82f6;
      background: rgba(59, 130, 246, 0.1);
      transform: translateX(5px);
    }

    .toc-list a::before {
      content: '';
      width: 6px;
      height: 6px;
      background: #3b82f6;
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* Terms Sections */
    .terms-section {
      margin-bottom: 4rem;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 0.6s ease forwards;
    }

    .terms-section:nth-child(1) { animation-delay: 0.1s; }
    .terms-section:nth-child(2) { animation-delay: 0.2s; }
    .terms-section:nth-child(3) { animation-delay: 0.3s; }
    .terms-section:nth-child(4) { animation-delay: 0.4s; }
    .terms-section:nth-child(5) { animation-delay: 0.5s; }

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .section-number {
      display: inline-block;
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.25rem;
      margin-bottom: 1rem;
    }

    .section-title {
      font-size: clamp(1.75rem, 3vw, 2rem);
      font-weight: 700;
      color: #fff;
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .section-content {
      color: #cbd5e1;
      font-size: 1.05rem;
      line-height: 1.8;
    }

    .section-content p {
      margin-bottom: 1.5rem;
    }

    .section-content ul,
    .section-content ol {
      margin: 1.5rem 0;
      padding-left: 2rem;
    }

    .section-content li {
      margin-bottom: 1rem;
      position: relative;
    }

    .section-content li::marker {
      color: #3b82f6;
    }

    .section-content strong {
      color: #fff;
      font-weight: 600;
    }

    /* Warning Box */
    .warning-box {
      background: rgba(239, 68, 68, 0.1);
      border-left: 4px solid #ef4444;
      border-radius: 8px;
      padding: 1.5rem;
      margin: 2rem 0;
    }

    .warning-box-title {
      font-weight: 700;
      color: #ef4444;
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .warning-box-title svg {
      width: 20px;
      height: 20px;
      fill: #ef4444;
    }

    /* Info Box */
    .info-box {
      background: rgba(59, 130, 246, 0.1);
      border-left: 4px solid #3b82f6;
      border-radius: 8px;
      padding: 1.5rem;
      margin: 2rem 0;
    }

    .info-box-title {
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .info-box-title svg {
      width: 20px;
      height: 20px;
      fill: #3b82f6;
    }

    

    @media (max-width: 768px) {
      .terms-header {
        padding: 6rem 1.5rem 3rem;
      }

      .terms-main {
        padding: 3rem 1.5rem;
      }

      .toc {
        padding: 1.5rem;
      }

      .section-title {
        flex-direction: column;
        align-items: flex-start;
      }

      .contact-box {
        padding: 2rem 1.5rem;
      }

      .contact-button {
        width: 100%;
        justify-content: center;
      }

      .footer-links {
        flex-direction: column;
        gap: 1rem;
      }
    }

    /* Footer */
    .policy-footer {
      background: #050505;
      padding: 3rem 2rem;
      text-align: center;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-text {
      color: #64748b;
      font-size: 0.95rem;
      margin-bottom: 1rem;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
      list-style: none;
    }

    .footer-links a {
      color: #94a3b8;
      text-decoration: none;
      font-size: 0.95rem;
      transition: color 0.3s ease;
    }

    .footer-links a:hover {
      color: #3b82f6;
    }

    @media (max-width: 768px) {
      .policy-header {
        padding: 6rem 1.5rem 3rem;
      }

      .policy-main {
        padding: 3rem 1.5rem;
      }

      .toc {
        padding: 1.5rem;
      }

      .section-title {
        flex-direction: column;
        align-items: flex-start;
      }

      .contact-box {
        padding: 2rem 1.5rem;
      }

      .contact-button {
        width: 100%;
        justify-content: center;
      }

      .footer-links {
        flex-direction: column;
        gap: 1rem;
      }
    }