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

        :root {
            --bg: #000000;
            --bg-secondary: #0C0A09;
            --accent: #4FC4FF;
            --text: #ffffff;
            --text-muted: #71717a;
            --border: #27272a;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg);
            color: var(--text);
            overflow-x: hidden;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        body.no-scroll {
            overflow: hidden;
            height: 100vh; /* prevents extra scrolling on mobile */
        }

        /* ✨ Modern UI ambient gradient background */
        .bg-ambient {
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            background:
                radial-gradient(600px at 30% 20%, rgba(79, 196, 255, 0.12), transparent 60%),
                radial-gradient(800px at 70% 80%, rgba(0, 255, 255, 0.08), transparent 70%),
                linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(12, 10, 9, 1) 100%);
            filter: blur(80px) saturate(120%);
            animation: bgShift 40s ease-in-out infinite alternate;
            opacity: 1;
        }

        /* Subtle animated drift for depth */
        @keyframes bgShift {
            0% {
                background-position: 30% 20%, 70% 80%, 50% 50%;
                transform: scale(1);
            }
            50% {
                background-position: 25% 25%, 75% 75%, 50% 50%;
                transform: scale(1.03);
            }
            100% {
                background-position: 30% 20%, 70% 80%, 50% 50%;
                transform: scale(1);
            }
        }

        .bg-ambient::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(115deg,
                rgba(79,196,255,0.15) 0%,
                rgba(180,255,255,0.05) 40%,
                rgba(255,255,255,0.02) 100%);
            mix-blend-mode: overlay;
            animation: auroraDrift 30s ease-in-out infinite alternate;
        }

        @keyframes auroraDrift {
            0% { transform: translateX(-5%) translateY(0%); }
            50% { transform: translateX(5%) translateY(3%); }
            100% { transform: translateX(-5%) translateY(0%); }
        }

        @media (max-width: 768px) {
            .bg-ambient {
                animation: none;       /* stop background movement */
                filter: blur(20px);    /* reduce blur */
            }

            .bg-ambient::after {
                animation: none;       /* stop overlay drift */
                background: rgba(0,0,0,0.05); /* subtle static overlay */
            }
        }

        /* Navbar Desktop */
        nav {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(12, 10, 9, 0.8);
            backdrop-filter: blur(12px);
            border: 1px solid var(--border);
            border-radius: 12px;
            z-index: 1000;
            padding: 6px;
        }

        .nav-container {
            display: flex;
            align-items: center;
        }

        .nav-logo {
            display: none;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }

        .hamburger span {
            width: 22px;
            height: 2px;
            background: var(--text);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* Active state: X */
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0; /* hide the middle line */
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 4px;
            position: relative;
            margin: 0;
            padding: 0;
        }

        nav li {
            position: relative;
        }

        nav a {
            color: var(--text-muted);
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            padding: 8px 18px;
            display: block;
            border-radius: 8px;
            transition: color 0.2s;
            position: relative;
            z-index: 2;
        }

        nav a:hover {
            color: var(--text);
        }

        .nav-bg {
            position: absolute;
            margin-top: 5px;
            margin-left: 5px;
            background: #18181b;
            border-radius: 15px;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            pointer-events: none;
            opacity: 0;
            z-index: 1;
        }

        .home-logo  {
            width: 25px; /* your desired size */
            height: auto;
            vertical-align: middle; /* aligns image with the middle of the text */
        }


        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.98);
            backdrop-filter: blur(20px);
            z-index: 999;
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 32px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .mobile-menu.active {
            display: flex;
            opacity: 1;
        }

        .mobile-menu a {
            color: var(--text);
            text-decoration: none;
            font-size: 24px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: color 0.2s;
        }

        .mobile-menu a:hover {
            color: var(--accent);
        }

        /* Hero */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 0 24px;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(79, 196, 255, 0.08);
            border: 1px solid rgba(79, 196, 255, 0.2);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            color: var(--accent);
            margin-bottom: 24px;
        }

        h1 {
            font-size: clamp(56px, 12vw, 120px);
            font-weight: 800;
            margin-bottom: 20px;
            letter-spacing: -0.05em;
            line-height: 0.95;
        }

        .gradient-text {
            background: linear-gradient(to bottom, #ffffff, #525252);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 0em;
            background-clip: text;
        }

        .subtitle {
            font-size: clamp(16px, 2.5vw, 22px);
            color: var(--text-muted);
            margin-bottom: 36px;
            max-width: 560px;
            line-height: 1.5;
        }

        .cta {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 13px 28px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.2s;
            border: 1px solid transparent;
        }

        .btn-primary {
            background: rgba(79, 196, 255, 0.15);
            color: var(--accent);
            border: 1px solid rgba(79, 196, 255, 0.4);
            border-radius: 8px;
            padding: 10px 22px;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.25s ease;
            backdrop-filter: blur(8px);
        }

        .btn-primary:hover {
            background: rgba(79, 196, 255, 0.25);
            color: #fff;
            border-color: rgba(79, 196, 255, 0.6);
        }

        .btn-secondary {
            background: var(--bg-secondary);
            color: var(--text);
            border-color: var(--border);
        }

        .btn-secondary:hover {
            border-color: #3f3f46;
            background: #18181b;
        }

        /* Features */
        .features {
            padding: 140px 24px 120px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .section-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .section-label {
            color: var(--accent);
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            margin-bottom: 12px;
        }

        .section-title {
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 700;
            letter-spacing: -0.03em;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 20px;
        }

        .card {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 32px;
            transition: all 0.3s;
            position: relative;
        }

        .card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 16px;
            padding: 1px;
            background: linear-gradient(135deg, rgba(79, 196, 255, 0.1), transparent);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .card:hover::before {
            opacity: 1;
        }

        .card:hover {
            border-color: rgba(79, 196, 255, 0.3);
        }

        .card-icon {
            width: 44px;
            height: 44px;
            background: rgba(79, 196, 255, 0.08);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--accent);
            margin-bottom: 20px;
        }

        .card h3 {
            font-size: 19px;
            font-weight: 600;
            margin-bottom: 10px;
            letter-spacing: -0.01em;
        }

        .card p {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.65;
        }


        /* Showcase */

        .video-container {
            position: relative;
            width: 100%;
            background: var(--card-bg-light);
            border-radius: 20px;
            overflow: hidden;
        }

        /* Download */
        .download {
            padding: 100px 24px 140px;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .download-wrapper {
            max-width: 760px;
            margin: 0 auto;
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 56px 40px;
            position: relative;
            overflow: hidden;
        }

        .download-wrapper::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(600px circle at 50% 0%, rgba(79, 196, 255, 0.06), transparent);
            pointer-events: none;
        }

        .version {
            display: inline-block;
            background: rgba(79, 196, 255, 0.1);
            color: var(--accent);
            padding: 7px 14px;
            border-radius: 8px;
            font-size: 23px;
            font-weight: 600;
            margin-bottom: 24px;
            border: 1px solid rgba(79, 196, 255, 0.2);
        }

        .download h2 {
            font-size: clamp(32px, 5vw, 44px);
            font-weight: 700;
            margin-bottom: 14px;
            letter-spacing: -0.03em;
        }

        .download p {
            color: var(--text-muted);
            margin-bottom: 36px;
            font-size: 17px;
        }

        

        /* FAQ */
        .faq {
            padding: 100px 24px 140px;
            max-width: 820px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .faq-item {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: 14px;
            margin-bottom: 14px;
            overflow: hidden;
            transition: border-color 0.2s;
        }

        .faq-item:hover {
            border-color: #3f3f46;
        }

        .faq-q {
            padding: 22px 26px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 16px;
            user-select: none;
            gap: 20px;
        }

        .faq-q i {
            color: var(--text-muted);
            transition: transform 0.3s, color 0.2s;
            font-size: 20px;
            flex-shrink: 0;
        }

        .faq-item.open .faq-q i {
            transform: rotate(180deg);
            color: var(--accent);
        }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease;
        }
        
        .faq a {
            color: var(--accent);
            text-decoration: underline;
            font-weight: 500;
            transition: color 0.25s ease;
        }

        .faq-item.open .faq-a {
            max-height: 300px;
        }

        .faq-a-content {
            padding: 0 26px 22px;
            color: var(--text-muted);
            line-height: 1.65;
            font-size: 15px;
        }

  /* ===== Footer ===== */
  footer {
    border-top: 1px solid var(--border);
    padding: 52px 24px 36px;
    position: relative;
    z-index: 1;
  }

  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 32px;
  }

  .footer-left {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 14px;
    flex-wrap: nowrap; /* prevents wrapping */
  }

  .footer-logo {
    font-weight: 700;
    color: var(--text);
    font-size: 15px;
  }

  .footer-logo img {
    width: 30px;
    height: auto;
    vertical-align: middle;
  }

  .footer-text {
    white-space: nowrap; /* keeps © + text on one line */
  }

  .footer-text a{
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.2s;
  }

  .footer-text a:hover{
    color: var(--accent);
    text-decoration: underline;
  }

  .footer-center {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .footer-terms {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
  }

  .footer-terms i {
    font-size: 16px;
  }

  .footer-terms a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.25s ease;
  }

  .footer-terms a:hover {
    color: rgba(79, 196, 255, 0.8);
  }

  .footer-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .social-icons {
    display: flex;
    gap: 10px;
  }

  .social {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    transition: all 0.25s ease;
  }

  .social:hover {
    background: rgba(79, 196, 255, 0.12);
    border-color: rgba(79, 196, 255, 0.4);
    color: var(--accent);
  }

  .kofi-icon {
    width: 22px;
    height: 22px;
    transition: all 0.25s ease;
  }

  /* ===== Responsive Layout ===== */
  @media (max-width: 768px) {
    .footer-content {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 20px;
    }

    .footer-left,
    .footer-center,
    .footer-right {
      justify-content: center;
    }

    .footer-left {
      flex-direction: column;
      gap: 8px;
    }

    /* Keep © line on one line, even on mobile */
    .footer-text {
      white-space: nowrap;
    }

    .footer-right .social-icons {
      justify-content: center;
    }
  }

        /* Mobile responsive */
        @media (max-width: 1228px) {
            .nav-ul i{
                display: none;
            }
        }

        

        /* Mobile responsive */
        @media (max-width: 768px) {
            nav {
                top: 16px;
                width: calc(100% - 32px);
                left: 16px;
                transform: none;
                padding: 12px 16px;
            }

            .nav-container {
                justify-content: space-between;
                width: 100%;
            }

            .nav-logo {
                display: block;
            }

            .nav-logo img {
                width: 28px;
                position: absolute;
                bottom: -5px;
                height: auto;
            }

            .hamburger {
                display: flex;
            }

            nav ul {
                display: none;
            }

            .nav-bg {
                display: none;
            }

            .hero {
                padding: 0 20px;
            }

            .hero-badge {
                font-size: 12px;
            }

            .features {
                padding: 100px 20px 80px;
            }

            .section-header {
                margin-bottom: 48px;
            }

            .grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .card {
                padding: 28px;
            }

            .download {
                padding: 80px 20px 100px;
            }

            .download-wrapper {
                padding: 44px 28px;
            }

            .faq {
                padding: 80px 20px 100px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 24px;
            }

            .footer-left {
                justify-content: center;
                flex-wrap: wrap;
            }

            .footer-right {
                text-align: center;
            }

            .btn {
                width: 100%;
                justify-content: center;
                max-width: 300px;
            }

            .cta {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 480px) {
            .card {
                padding: 24px;
            }

            .faq-q {
                font-size: 15px;
                padding: 20px 22px;
            }

            .faq-a-content {
                padding: 0 22px 20px;
                font-size: 14px;
            }
        }


/* Terms Page */
.terms {
    padding: 120px 24px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

.terms-wrapper {
    max-width: 860px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.terms-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at 50% 0%, rgba(79, 196, 255, 0.06), transparent);
    pointer-events: none;
}


/* Intro Section for Terms Page */
        .intro {
            background: rgba(12, 10, 9, 0.6); /* slightly darker overlay for intro */
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 40px 30px;
            margin-bottom: 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .intro::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 50% 0%, rgba(79, 196, 255, 0.05), transparent);
            pointer-events: none;
        }

        .intro p {
            color: var(--text);
            font-size: 16px;
            line-height: 1.7;
            max-width: 720px;
            margin: 0 auto;
        }

        .intro strong {
            color: var(--accent);
        }

        @media (max-width: 768px) {
            .intro {
                padding: 28px 20px;
            }
            .intro p {
                font-size: 15px;
                line-height: 1.6;
            }
        }

.terms-wrapper h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 24px;
    text-align: center;
}

.terms-wrapper .terms-intro {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 32px;
    text-align: center;
}

.terms-wrapper section {
    margin-bottom: 32px;
}

.terms-wrapper h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
}

.terms-wrapper p {
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
}

.terms-wrapper a {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.2s;
}

.terms-wrapper a:hover {
    color: rgba(79,196,255,0.8);
    text-decoration: underline;
}

.terms-updated {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.terms-updated span {
    color: var(--accent);
    font-weight: 500;
}


/* Responsive */
@media (max-width: 768px) {
    .terms-wrapper {
        padding: 44px 28px;
    }
    .terms-wrapper h1 {
        font-size: clamp(28px, 6vw, 36px);
    }
}
