:root {
            --primary-color: #6c5ce7;
            --secondary-color: #a29bfe;
            --dark-color: #2d3436;
            --light-color: #f5f6fa;
        }
        
        body {
            background-color: #f8f9fa;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color) !important;
        }
        
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 5rem 0;
            border-radius: 0 0 20px 20px;
        }
        
        .wallet-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 2rem;
            margin-top: -50px;
            position: relative;
            z-index: 10;
        }
        
        .wallet-btn {
            border-radius: 10px;
            padding: 12px 20px;
            margin: 8px 0;
            text-align: left;
            transition: all 0.3s;
            border: 1px solid #e0e0e0;
        }
        
        .wallet-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .wallet-btn i {
            font-size: 1.5rem;
            margin-right: 10px;
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 3rem 0;
        }
        
        .connected-wallet {
            display: none;
            background-color: #f0f8ff;
            border-radius: 10px;
            padding: 1.5rem;
            margin-top: 20px;
        }

         .hero-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 5rem 0;
            border-radius: 0 0 20px 20px;
            margin-bottom: 3rem;
        }
        
        .feature-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            padding: 2rem;
            height: 100%;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }
        
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 30px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--primary-color);
        }
        
        .tech-stack {
            background-color: #f0f2f5;
            border-radius: 10px;
            padding: 2rem;
        }
        
        .tech-icon {
            font-size: 2rem;
            color: var(--dark-color);
            margin: 0 15px;
            transition: all 0.3s;
        }
        
        .tech-icon:hover {
            color: var(--primary-color);
            transform: scale(1.2);
        }
        
        .comparison-table {
            border-radius: 10px;
            overflow: hidden;
        }
        
        .comparison-table thead th {
            background-color: var(--primary-color);
            color: white;
        }
        
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 3rem 0;
            margin-top: 5rem;
        }
        
        .badge-custom {
            background-color: var(--secondary-color);
            color: white;
        }