    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        scrollbar-width: none;
    }

    body {
        font-family: "Ubuntu", sans-serif;
        font-weight: 400;
        font-style: normal;
        min-height: 100vh;
        width: 100%;
        color: #222;
        background: #f9fafb;
        cursor: pointer;
    }

    a {
        color: inherit;
        text-decoration: none;
    }

    /* Navigation */
    header.nav {
        position: fixed;
        top: 0;
        /* Required for sticky to stick at the top */
        width: 100%;
        z-index: 1000;
        backdrop-filter: saturate(120%) blur(10px);
        background: rgba(11, 13, 18, 0.6);
        color: #fff;
        border-bottom: 1px solid #222;
        /* fallback */
    }


    .nav-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 65px;
        margin: 0 15px;
    }

    .nav-inner .logo {
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        margin: 0;
    }

    .logo span {
        font-size: 2rem;
        font-weight: bold;
        font-family: "Luckiest Guy", cursive;
        font-weight: 400;
        font-style: normal;
    }

    .nav-links {
        display: flex;
        position: absolute;
        gap: 1rem;
        right: 0;
        margin-right: 20px;
    }

    .nav-links a {
        padding: 0.5rem 0.8rem;
        border-radius: 10px;
        color: var(--muted);
        transition: 0.4s;
    }

    .nav-links a:hover {
        color: #282A36;
        transform: translateY(-5px);
        background: #fff;
    }

    .menu-toggle {
        background: none;
        border: none;
        color: #fff;
        font-size: 22px;
        cursor: pointer;
        display: none;
        /* default hidden on desktop */
    }

    /* Hero */
    .hero {
        color: #fff;
        text-align: center;
        padding-top: 65px;
    }

    .hero .container {
        position: relative;
        display: flex;
        justify-content: justify-content;
        background: url('assets/images/webBanner.svg') no-repeat center/cover;
        height: 450px;

    }

    /* .hero .logo {
        font-size: 3rem;
        font-weight: 700;
    }

    .hero .tagline {
        font-size: 1.3rem;
        margin: 15px 0 30px;
    } */
    .cta {
        position: absolute;
        bottom: 5%;
        left: 0%;
        width: 100%;
    }

    .cta .btn {
        display: inline-block;
        margin: 8px;
        padding: 12px 25px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        transition: 0.4s;
    }

    .cta .btn:hover {
        transform: translateY(-6px);
    }

    .cta .btn i {
        font-size: 20px;
    }

    .btn.primary {
        background: #0d6efd;
        color: #fff;
    }

    .btn.secondary {
        background: #282A36;
        color: #fff;
    }

    /* Features */
    .features {
        padding: 50px 40px;
        text-align: center;
    }

    .features .container {
        max-width: 1200px;
        margin: 0 auto;
        margin-top: 30px;
    }

    .features h2 {
        margin-bottom: 40px;
        font-size: 2rem;
    }

    .features .grid {
        display: grid;
        gap: 30px;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .features .card {
        background: #fff;
        padding: 25px;
        border-radius: 12px;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
        transition: transform 0.2s ease;
    }

    .features .card:hover {
        transform: translateY(-10px);
        background: #ccc;
    }

    .features .card i {
        font-size: 2rem;
        color: #0d6efd;
        margin-bottom: 15px;
    }

    /* Screenshots */
    .screenshots {
        padding: 50px 30px;
        background: #f1f3f5;
        text-align: center;
    }

    .screenshots .container {
        margin-top: 30px;
    }

    .screenshots h1 {
        margin-bottom: 30px;
        font-size: 2rem;
    }

    .gallery {
        display: flex;
        justify-content: space-around;
        gap: 20px;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        overflow: auto;
    }

    .gallery img {
        width: 300px;
        border-radius: 15px;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    }

    /* Gallery */
    .image-gallery {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    .image-gallery img {
        width: 180px;
        height: auto;
        border-radius: 8px;
        cursor: pointer;
        transition: transform 0.3s;
    }

    .image-gallery img:hover {
        transform: scale(1.05);
    }

    /* Modal (fullscreen preview) */
    .img-modal {
        display: none;
        /* hidden by default */
        position: fixed;
        z-index: 9999;
        padding-top: 60px;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background: rgba(0, 0, 0, 0.9);
        text-align: center;
    }

    .img-modal img {
        margin: auto;
        display: block;
        max-width: 90%;
        max-height: 80vh;
        border-radius: 10px;
    }

    #caption {
        margin: 15px;
        color: #ccc;
        font-size: 16px;
    }

    .img-modal .close {
        position: absolute;
        top: 15px;
        right: 25px;
        color: #fff;
        font-size: 32px;
        font-weight: bold;
        cursor: pointer;
    }

    .img-modal .close:hover {
        color: #ff4444;
    }

    /* About */
    .about {
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 40px 50px 0 50px;
        text-align: center;
    }

    .about .container {
        max-width: 1000px;
    }

    .about h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    /* Download section */
    .download {
        padding: 80px 20px;
        background: #f1f3f5;
    }

    .dl-wrap {
        margin: 0 auto;
        max-width: 1400px;
    }

    .dl-head {
        text-align: center;
        margin-bottom: 24px;
    }

    .dl-head h2 {
        font-size: 2rem;
        margin-bottom: 6px;
    }

    .dl-head p {
        color: #6b7280;
        font-size: 0.95rem;
    }

    .dl-grid {
        display: flex;
        /* justify-content: space-between; */
        justify-content: center;
        flex-wrap: wrap;
    }

    .store-card {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
        border-radius: 14px;
        margin: 20px;
        background: #ffffff;
        border: 1px solid rgba(0, 0, 0, 0.06);
        transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
        text-decoration: none;
        color: inherit;
    }

    .store-card img {
        height: 60px;
    }

    .store-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
        border-color: rgba(0, 0, 0, 0.12);
    }


    /* Coming soon overlay */
    .store-card.disabled {
        pointer-events: none;
        opacity: 0.6;
    }

    .store-card .tag {
        position: absolute;
        top: 5px;
        right: 7px;
        font-size: 10px;
        padding: 3px 8px;
        background: #0d6efd;
        color: #fff;
        border-radius: 999px;
    }

    /* QR */
    .dl-qr {
        margin-top: 22px;
        display: flex;
        align-items: center;
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .dl-qr img {
        width: 96px;
        height: 96px;
        border-radius: 8px;
        background: #fff;
        padding: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .dl-qr p {
        font-size: 0.9rem;
        color: #6b7280;
    }


    /* Footer */
    .footer {
        background: #0d0d0d;
        color: #aaa;
        padding: 20px 0;
        font-size: 13px;
        border-top: 1px solid #222;
    }

    .footer .container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 5px;
    }

    .footer-left {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .footer-logo {
        margin: 0 30px 0 20px;
        height: 35px;
    }

    .footer .brand-name {
        font-weight: 600;
        color: #fff;
        font-size: 16px;
    }

    .footer-links {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
    }

    .footer-links a {
        color: #aaa;
        text-decoration: none;
        transition: color 0.2s ease-in-out;
    }

    .footer-links a:hover {
        color: #fff;
    }

    .footer-right {
        text-align: right;
        flex: 1;
        min-width: 200px;
    }

    .footer-right p {
        margin: 0 20px;
        font-size: 15px;
        color: #888;
    }

    /* Container */
    .suggestion-container {
        max-width: 800px;
        margin: 60px auto;
        padding: 70px;
        background: #ffffff;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    /* Title */
    .suggestion-container h2 {
        margin-bottom: 10px;
        color: #333;
        text-align: center;
    }

    .suggestion-container p {
        margin-bottom: 20px;
        text-align: center;
        color: #555;
        font-size: 14px;
    }

    /* Form elements */
    .form-group {
        margin-bottom: 15px;
    }

    label {
        display: block;
        margin-bottom: 6px;
        font-weight: 600;
        color: #444;
    }

    input,
    textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ccc;
        border-radius: 8px;
        outline: none;
        font-size: 15px;
        transition: border 0.2s;
    }

    input:focus,
    textarea:focus {
        border-color: #007bff;
        box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    }

    /* Button */
    #submitBtn {
        width: 100%;
        padding: 14px;
        border: none;
        border-radius: 8px;
        background: #007bff;
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.2s;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #submitBtn:hover {
        background: #0056b3;
    }

    #submitBtn .loader {
        display: none;
        border: 3px solid #fff;
        border-top: 3px solid transparent;
        border-radius: 50%;
        width: 18px;
        height: 18px;
        margin-left: 10px;
        animation: spin 0.8s linear infinite;
    }

    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }

    /* Success/Error message */
    .form-message {
        margin-top: 15px;
        font-weight: 600;
        display: none;
    }

    .form-message.success {
        color: green;
    }

    .form-message.error {
        color: red;
    }


    /* Responsive Adjustments */
    @media (max-width: 768px) {

        .hero .container {
            position: relative;
            display: flex;
            justify-content: justify-content;
            background: url('assets/images/webBanner.svg') no-repeat center/cover;
            height: 250px;

        }

        .cta {
            position: absolute;
            display: flex;
            justify-content: center;
            bottom: 2%;
            left: 0%;
            width: 100%;
        }

        .cta .btn {
            display: inline-block;
            margin: 8px;
            padding: 12px 25px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
        }

        .container .nav-links {
            display: none;
            flex-direction: column;
            background: #fff;
            color: #282A36;
            border-radius: 10px;
            position: absolute;
            top: 50px;
            right: 0px;
            padding: 15px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .container .nav-links.active {
            display: flex;
        }

        .container .menu-toggle {
            display: block;
        }


        .cta .btn h3 {
            display: none;
        }

        .dl-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }

        .store-card {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 10px;
            padding: 15px;
            border-radius: 14px;
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.06);
            transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
            text-decoration: none;
            color: inherit;
        }

        .store-card img {
            height: 80px;
        }

        .features .grid {
            display: flex;
            justify-content: space-between;
            overflow: auto;
            gap: 30px;
        }

        .features .grid .card {
            min-width: 220px;
        }

        .features .grid .card:hover {
            transform: translateY(0px);
            background: #ccc;
        }

        .gallery img {
            width: 200px;
            border-radius: 15px;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
        }

        .footer .container {

            flex-direction: column;
            text-align: center;
        }

        .footer-left {
            position: relative;
            display: flex;
            justify-content: center;
        }

        .footer .footer-logo {
            position: absolute;
            top: -60px;
            height: 65px;
        }

        .footer-links {
            width: 100%;
            display: flex;
            flex-direction: column;
            text-align: left;
            flex-wrap: wrap;
            gap: 2px;
            font-size: 12px;
            padding: 10px;
        }

        .footer-right {
            text-align: center;
        }

        /* For Chrome, Edge, Safari */
        ::-webkit-scrollbar {
            width: 10px;
            /* scrollbar width */
            height: 8px;
            /* scrollbar height (for horizontal scroll) */
        }

        ::-webkit-scrollbar-track {
            background: #1e1e1e;
            /* track color */
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb {
            background: #4cafef;
            /* thumb color */
            border-radius: 10px;
            border: 2px solid #1e1e1e;
            /* creates gap effect */
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #2196f3;
            /* hover color */
        }

        /* For Firefox */
        * {
            scrollbar-width: auto;
            /* auto | thin | none */
            scrollbar-color: #0d6efd #1e1e1e;
            /* thumb | track */
            cursor: none;
        }

        .suggestion-container {
            margin: 80px 30px;
            padding: 20px;
        }

    }