
    :root {
      --bg: #0e1015;
      --card: #1a1c22;
      --text: #f1f1f1;
      --accent: #00c9a7;
      --accent-hover: #00a98e;
    }

    body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--text);
      scroll-behavior: smooth;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.5rem 2rem;
      background: var(--card);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .logo {
      font-weight: 900;
      font-size: 1.5rem;
      color: var(--accent);
      cursor: pointer;
    }

    nav a {
      margin-left: 2rem;
      color: #ccc;
      text-decoration: none;
      font-weight: 600;
      transition: color 0.3s;
    }

    nav a:hover {
      color: var(--accent);
    }

    .hero {
      text-align: center;
      padding: 6rem 2rem;
    }

    .hero h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
    }

    .hero p {
      color: #bbb;
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto 2rem;
      line-height: 1.6;
    }

    .cta {
      padding: 0.8rem 2rem;
      font-size: 1rem;
      background: var(--accent);
      border: none;
      border-radius: 40px;
      color: #000;
      cursor: pointer;
      font-weight: 600;
      transition: background-color 0.3s;
      box-shadow: 0 4px 10px rgba(0, 201, 167, 0.3);
    }

    .cta:hover {
      background: var(--accent-hover);
      box-shadow: 0 6px 15px rgba(0, 169, 142, 0.5);
    }

    section {
      padding: 4rem 2rem;
      max-width: 1100px;
      margin: auto;
    }

    .features,
    .docs-list,
    .faq-list,
    .bug-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
    }

    .card {
      background: var(--card);
      border-radius: 12px;
      padding: 2rem;
      border: 1px solid #2a2d35;
      transition: border-color 0.3s;
    }

    .card:hover {
      border-color: var(--accent);
    }

    .card h3 {
      color: var(--accent);
      margin-bottom: 0.5rem;
    }

    .card p {
      color: #ccc;
      line-height: 1.5;
    }

    h2.section-title {
      text-align: center;
      margin-bottom: 2rem;
      font-weight: 700;
      font-size: 2.25rem;
      color: var(--accent);
    }

    /* Documentation, FAQ, Bug Section links styling */
    .card a {
      color: var(--accent);
      text-decoration: none;
      font-weight: 700;
      display: inline-block;
      margin-top: 1rem;
      transition: color 0.3s;
    }

    .card a:hover {
      color: var(--accent-hover);
      text-decoration: underline;
    }

    footer {
      background: #111;
      color: #999;
      text-align: center;
      padding: 2rem;
      font-size: 0.9rem;
      user-select: none;
    }

    /* Responsive tweaks */
    @media (max-width: 600px) {
      .hero h1 {
        font-size: 2.25rem;
      }
    }

    footer {
      background-color: #1a1a1a;
      color: #ccc;
      font-family: Arial, sans-serif;
      font-size: 14px;
      padding: 20px 40px;
    }

    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-left,
    .footer-right {
      flex: 1 1 300px;
      margin: 10px;
    }

    .footer-left p {
      margin: 5px 0;
      line-height: 1.4;
    }

    .footer-left a {
      color: #ccc;
      text-decoration: none;
    }

    .footer-left a:hover {
      text-decoration: underline;
    }

    .footer-links {
      margin-bottom: 10px;
    }

    .footer-links a {
      margin-right: 15px;
      color: #ccc;
      text-decoration: none;
      font-weight: 500;
    }

    .footer-links a:hover {
      color: #fff;
    }

    .social-links a {
      margin-right: 12px;
      color: #ccc;
      font-size: 18px;
      text-decoration: none;
      transition: color 0.3s;
    }

    .social-links a:hover {
      color: #4caf50;
      /* green highlight on hover */
    }

    /* Responsive */
    @media (max-width: 600px) {
      .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .footer-left,
      .footer-right {
        margin: 15px 0;
      }

      .footer-links a {
        margin: 0 10px 10px 10px;
      }
    }

    .social-icon.disabled {
      cursor: default;
      color: #666;
      pointer-events: none;
    }

    .social-icon.disabled:hover {
      color: #666;
    }
