:root {
        --primary: #6c63ff;
        --secondary: #00f2fe;
        --accent: #ff3366;
        --dark: #0a0a0f;
        --dark-gray: #1a1a24;
        --light-gray: #8a8a9e;
        --success: #4CAF50;
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont,
          sans-serif;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        background: var(--dark);
        color: #ffffff;
        line-height: 1.6;
        overflow-x: hidden;
      }

      .navbar {
        padding: 1rem 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0.4rem;
        background: rgba(18, 18, 18, 0.8);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        position: fixed;
        width: 95%;
        max-width: 1200px;
        z-index: 1000;
        border-radius: 16px;
        left: 50%;
        transform: translateX(-50%);
        top: 1rem;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
      }

      .logo-image {
        height: 32px;
        width: auto;
      }

      .nav-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 3rem;
      }

      .nav-links {
        display: flex;
        gap: 2rem;
      }

      .nav-links a {
        color: var(--light-gray);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
      }

      .nav-links a:hover {
        color: white;
      }

      .cta-button {
        display: inline-flex;
        align-items: center;
        padding: 0.75rem 1.5rem;
        background: #4169e1;
        color: white;
        text-decoration: none;
        border-radius: 8px;
        font-weight: 500;
        transition: all 0.3s ease;
      }

      .cta-button:hover {
        background: #3154c4;
      }

      .content-container {
        max-width: 900px;
        margin: 0 auto;
        padding: 120px 20px 60px;
        min-height: 100vh;
      }

      .page-header {
        text-align: center;
        margin-bottom: 3rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid var(--dark-gray);
      }

      .page-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        background: linear-gradient(45deg, white, var(--secondary));
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
      }

      .last-updated {
        color: var(--light-gray);
        font-size: 1rem;
      }

      .content-section {
        margin-bottom: 2.5rem;
      }

      .content-section h2 {
        color: var(--secondary);
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        margin-top: 2rem;
      }

      .content-section h3 {
        color: #ffffff;
        font-size: 1.4rem;
        margin-bottom: 1rem;
        margin-top: 1.5rem;
      }

      .content-section h4 {
        color: var(--primary);
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
        margin-top: 1rem;
      }

      .content-section p {
        color: var(--light-gray);
        line-height: 1.8;
        margin-bottom: 1rem;
      }

      .content-section ul, .content-section ol {
        margin-left: 2rem;
        margin-bottom: 1rem;
        color: var(--light-gray);
      }

      .content-section li {
        margin-bottom: 0.5rem;
        line-height: 1.8;
      }

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

      .data-table {
        width: 100%;
        border-collapse: collapse;
        margin: 1.5rem 0;
        background: var(--dark-gray);
        border-radius: 8px;
        overflow: hidden;
      }

      .data-table th {
        background: rgba(108, 99, 255, 0.1);
        color: var(--primary);
        padding: 1rem;
        text-align: left;
        font-weight: 600;
      }

      .data-table td {
        padding: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        color: var(--light-gray);
      }

      .data-table tr:hover td {
        background: rgba(255, 255, 255, 0.02);
      }

      .highlight-box {
        background: rgba(108, 99, 255, 0.1);
        border-left: 3px solid var(--primary);
        padding: 1.5rem;
        margin: 1.5rem 0;
        border-radius: 8px;
      }

      .highlight-box p {
        color: white;
        margin-bottom: 0.5rem;
      }

      .contact-info {
        background: var(--dark-gray);
        padding: 2rem;
        border-radius: 16px;
        margin-top: 2rem;
        margin-bottom: 2rem;
      }

      .contact-info h3 {
        color: var(--secondary);
        margin-bottom: 1rem;
      }

      .contact-info p {
        margin-bottom: 0.5rem;
      }

      .contact-info a {
        color: var(--primary);
        text-decoration: none;
        transition: color 0.3s ease;
      }

      .contact-info a:hover {
        color: var(--secondary);
      }

      .footer {
        background: var(--dark);
        padding: 2rem 10%;
        text-align: center;
        border-top: 1px solid var(--dark-gray);
        margin-top: 4rem;
      }

      .footer-links {
        display: flex;
        justify-content: center;
        gap: 2rem;
        margin-bottom: 1.5rem;
      }

      .footer-links a {
        color: var(--light-gray);
        text-decoration: none;
        transition: color 0.3s ease;
      }

      .footer-links a:hover {
        color: white;
      }

      .footer-bottom {
        color: var(--light-gray);
        font-size: 0.9rem;
      }

      @media (max-width: 768px) {
        .navbar {
          width: calc(100% - 2rem);
          padding: 0.75rem 1rem;
        }

        .nav-links {
          display: none;
        }

        .page-title {
          font-size: 1.8rem;
        }

        .content-container {
          padding: 100px 15px 40px;
        }

        .content-section h2 {
          font-size: 1.4rem;
        }

        .content-section h3 {
          font-size: 1.2rem;
        }

        .data-table {
          font-size: 0.9rem;
        }

        .data-table th, .data-table td {
          padding: 0.75rem;
        }

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