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

        body {
            font-family: sans-serif;
        }

        .bg-wrapper {
            width: 100vw;
            min-height: 100vh;
            background: url("https://www.mintlify.com/hero/bg-dark.svg") center/2000px no-repeat;
            display: flex;
            justify-content: center;
            align-items: flex-start;
        }

        .content {
            width: 70vw;
            padding: 30px;
            color: white;
        }

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

        
        .svg-minlify {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        
        .nav-1 {
            display: flex;
            gap: 25px;
        }

        
        .nav-2 {
            display: flex;
            gap: 25px;
        }

        
        .top-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 6px 14px;
            border-radius: 30px;
            margin: 80px auto 30px;
            background: rgba(0, 0, 0, 0.35);
            backdrop-filter: blur(6px);
            color: #d9faff;
            font-size: 14px;
            width: fit-content;
            /* position: relative;
            left: 300px; */
        }

        .top-badge-container {
            display: flex;
        }

        .new-badge {
            background: #1ecf9a;
            color: #003b2f;
            font-size: 12px;
            font-weight: bold;
            padding: 4px 8px;
            border-radius: 20px;
        }

        .arrow {
            font-size: 18px;
            opacity: 0.7;
        }

        
        .hero-content {
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .hero-content h1 {
            font-size: 64px;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .hero-content h1 span {
            color: #27e1a1;
        }

        .hero-content p {
            font-size: 18px;
            line-height: 1.6;
            opacity: 0.9;
            margin-bottom: 40px;
        }

        .hero-input {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
        }

        .hero-input input {
            width: 300px;
            padding: 14px 18px;
            border-radius: 30px;
            border: none;
            outline: none;
            font-size: 15px;
            background: rgba(255, 255, 255, 0.2);
            color: white;
        }

        .hero-input input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .hero-input button {
            padding: 14px 22px;
            border-radius: 30px;
            border: none;
            font-weight: bold;
            font-size: 14px;
            cursor: pointer;
            background: white;
            color: #003b33;
        }



        
        .mint-btn {
            padding: 8px 16px;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            border: none;
            outline: none;
            transition: all 0.2s ease;
        }

        
        .mint-btn-outline {
            background: rgba(255, 255, 255, 0.12);
            color: white;
            backdrop-filter: blur(6px);
        }

        
        .mint-btn-primary {
            background: white;
            color: #001b1b;
        }

        
        .mint-btn-outline:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .mint-btn-primary:hover {
            background: #f2f2f2;
        }

        .docs-preview {
            width: 1100px;
            max-width: 95%;
            margin: 80px auto 0;

            border-radius: 20px;
            overflow: hidden;

            
            background: rgba(0, 0, 0, 0.55);
            backdrop-filter: blur(12px);

            box-shadow:
                0 40px 80px rgba(0, 0, 0, 0.6),
                inset 0 0 0 1px rgba(255, 255, 255, 0.05);
        }

       
        .docs-preview img {
            width: 100%;
            display: block;
            border-radius: 20px;
        }

        .site-footer {
            background: linear-gradient(180deg, #0b0b0b, #000);
            color: #cfcfcf;
            padding: 80px 80px 40px;
            font-size: 14px;
        }

       
        .footer-top {
            display: flex;
            justify-content: space-between;
            gap: 60px;
        }

        
        .footer-brand .logo {
            font-size: 20px;
            font-weight: 600;
            color: white;
            margin-bottom: 20px;
        }

        .socials span {
            margin-right: 12px;
            opacity: 0.6;
            cursor: pointer;
        }

        
        .footer-columns {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 60px;
        }

        .footer-col h4 {
            font-size: 13px;
            color: #8b8b8b;
            margin-bottom: 14px;
            text-transform: uppercase;
        }

        .footer-col a {
            display: block;
            text-decoration: none;
            color: #e5e5e5;
            margin-bottom: 10px;
            opacity: 0.85;
        }

        .footer-col a:hover {
            opacity: 1;
        }

       
        .footer-divider {
            height: 1px;
            background: rgba(255, 255, 255, 0.08);
            margin: 40px 0;
        }

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

        .status {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.06);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 13px;
        }

        .status .dot {
            width: 8px;
            height: 8px;
            background: #27e1a1;
            border-radius: 50%;
        }

        .trusted-section {
            padding: 40px 0;
        }

       
        .trusted-logos {
            max-width: 1200px;
            margin: auto;

            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;

            justify-items: center;
            align-items: center;
        }

        
        .logo-item {
            display: flex;
            align-items: center;
            gap: 8px;

            font-size: 18px;
            font-weight: 500;
            opacity: 0.9;
            transition: 0.3s;
        }

        
        .logo-item i {
            font-size: 20px;
        }

        
        .text-only {
            letter-spacing: 1px;
            font-weight: 600;
        }

       
        .x-only {
            font-size: 22px;
        }

        
        .white-theme .logo-item {
            color: #000;
        }

       
        .white-theme .coinbase {
            color: #2563eb;
        }

        .white-theme .paypal {
            color: #0ea5e9;
        }

        .white-theme .lovable i {
            color: #ff4d6d;
        }
   