        :root {
            --blue-500: #3B82F6;
            --blue-600: #2563EB;
            --blue-700: #1D4ED8;
            --blue-900: #1E3A8A;
            --violet-500: #8B5CF6;
            --violet-900: #4C1D95;
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: linear-gradient(to bottom, #111827, #000000);
            color: white;
            min-height: 100vh;
            line-height: 1.5;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
        .hero {
            padding: 100px 0;
            text-align: center;
        }

        .hero h1 {
            font-size: 3.75rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(to right, var(--blue-500), var(--violet-500));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero p {
            font-size: 1.25rem;
            color: #D1D5DB;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            padding: 1rem 2rem;
            border-radius: 0.5rem;
            font-weight: bold;
            font-size: 1.125rem;
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
        }

        .btn-primary {
            background-color: var(--blue-600);
            color: white;
            border: none;
        }

        .btn-primary:hover {
            background-color: var(--blue-700);
        }

        .btn-secondary {
            background-color: transparent;
            color: white;
            border: 1px solid var(--blue-600);
        }

        .btn-secondary:hover {
            background-color: rgba(37, 99, 235, 0.1);
        }

        /* Features Grid */
        .features {
            padding: 4rem 0;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            padding: 2rem 0;
        }

        .feature-card {
            background-color: rgba(31, 41, 55, 0.5);
            border: 1px solid rgba(55, 65, 81, 0.5);
            border-radius: 0.5rem;
            padding: 2rem;
        }

        .feature-card i {
            font-size: 2.5rem;
            color: var(--blue-500);
            margin-bottom: 1rem;
            width: 2.5rem;
            text-align: center;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .feature-card p {
            color: #D1D5DB;
        }

        /* How It Works */
        .how-it-works {
            padding: 4rem 0;
            text-align: center;
        }

        .how-it-works h2 {
            font-size: 2.5rem;
            margin-bottom: 3rem;
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .step {
            text-align: center;
        }

        .step-icon {
            width: 80px;
            height: 80px;
            background-color: rgba(37, 99, 235, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }

        .step-icon i {
            font-size: 2rem;
            color: var(--blue-500);
            width: 2rem;
            text-align: center;
        }

        .step h3 {
            font-size: 1.25rem;
            margin-bottom: 1rem;
        }

        .step p {
            color: #D1D5DB;
        }

        /* Partners */
        .partners {
            padding: 4rem 0;
            text-align: center;
        }

        .partners h3 {
            font-size: 1.5rem;
            color: #9CA3AF;
            margin-bottom: 2rem;
        }

        .partner-logos {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 3rem;
            align-items: center;
            justify-items: center;
            margin-top: 2rem;
            opacity: 0.7;
        }

        .partner-logos img {
            max-width: 100%;
            height: auto;
        }

        /* CTA Section */
        .cta {
            padding: 4rem 0;
        }

        .cta-container {
            background: linear-gradient(to right, rgba(30, 58, 138, 0.5), rgba(76, 29, 149, 0.5));
            border-radius: 1rem;
            padding: 3rem;
            text-align: center;
        }

        .cta-container h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta-container p {
            font-size: 1.25rem;
            color: #D1D5DB;
            margin-bottom: 2rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: 2rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

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

            .cta-buttons .btn {
                width: 100%;
                max-width: 300px;
            }

            .feature-card {
                padding: 1.5rem;
            }

            .step-icon {
                width: 60px;
                height: 60px;
            }
        }
/* styles.css */
:root {
    --blue-500: #3B82F6;
    --blue-600: #2563EB;
    --blue-700: #1D4ED8;
    --blue-900: #1E3A8A;
    --violet-500: #8B5CF6;
    --violet-900: #4C1D95;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(to bottom, var(--gray-900), #000000);
    color: white;
    min-height: 100vh;
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.top-nav {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(to right, var(--blue-500), var(--violet-500));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.nav-link {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.nav-link:hover {
    opacity: 1;
}

.connect-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--blue-600);
    border: none;
    border-radius: 0.5rem;
    color: white;
    cursor: pointer;
    transition: background-color 0.2s;
}

.connect-button:hover {
    background-color: var(--blue-700);
}

.connect-button.connected {
    background-color: var(--blue-900
}
        .social-links {
            padding: 2rem 0;
            text-align: center;
            background-color: transparent;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .social-links a {
            color: white;
            text-decoration: none;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .social-links a i {
            transform: scale(3);  /* This will make the icon 3x larger */
        }
        
        .social-links a:hover {
            color: var(--blue-500);
        }