
 :root {
            --primary: #C9184A !important;
            --secondary: #0f172a !important;
            --accent: #00d09c !important;
            --light: #f8fafc !important;
            --dark: #0a0e17 !important;
            --gray: #64748b !important;
        }
          * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
           
            overflow-x: hidden;
            line-height: 1.6;
        }
@keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4); }
            70% { box-shadow: 0 0 0 8px rgba(37, 99, 235, 0); }
            100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
        }
        
        .section-title {
            position: relative;
            margin-bottom: 40px;
            font-weight: 700;
            text-align: center;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
            animation: widthGrow 1s ease-out;
        }
        
        @keyframes widthGrow {
            from { width: 0; }
            to { width: 70px; }
        }
        
        .feature-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            padding: 25px;
            text-align: center;
            height: 100%;
            position: relative;
            overflow: hidden;
            margin-bottom: 25px;
        }
        
        .feature-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        
        .feature-card:hover:before {
            transform: scaleX(1);
        }
        
        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), #1e40af);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            color: white;
            font-size: 24px;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover .feature-icon {
            transform: rotateY(360deg);
            background: linear-gradient(135deg, var(--accent), #00b386);
        }
        
        .benefits-section {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: white;
            padding: 80px 0;
        }
        
        .benefit-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            transition: all 0.3s ease;
            padding: 15px;
            border-radius: 8px;
        }
        
        .benefit-item:hover {
            background: rgba(255, 255, 255, 0.05);
            transform: translateX(5px);
        }
        
        .benefit-icon {
            background: var(--accent);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
            font-size: 18px;
            color: var(--dark);
        }
        
        .testimonial-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            padding: 25px;
            margin: 20px 0;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .testimonial-card:before {
            content: '"';
            position: absolute;
            top: 15px;
            left: 15px;
            font-size: 50px;
            color: var(--primary);
            opacity: 0.1;
            font-family: Georgia, serif;
        }
        
        .client-info {
            display: flex;
            align-items: center;
            margin-top: 15px;
        }
        
        .client-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            margin-right: 12px;
            font-size: 0.9rem;
        }
        
        .how-it-works {
            position: relative;
            padding: 80px 0;
            background: #f1f5f9;
        }
        
        .step-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            padding: 25px;
            text-align: center;
            position: relative;
            z-index: 2;
            height: 100%;
            transition: all 0.4s ease;
            margin-bottom: 20px;
        }
        
        .step-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .step-number {
            width: 45px;
            height: 45px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 18px;
            margin: 0 auto 15px;
            transition: all 0.3s ease;
        }
        
        .step-card:hover .step-number {
            background: var(--accent);
            color: var(--dark);
            transform: scale(1.1);
        }
        
        .cta-section {
            background: linear-gradient(135deg, var(--primary), #1e40af);
            color: white;
            padding: 70px 0;
            text-align: center;
        }
        
        .btn {
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s ease;
            padding: 10px 20px;
            font-size: 1rem;
        }
        
        .btn-primary {
            background: var(--primary);
            border: none;
        }
        
        .btn-primary:hover {
            background: #1e40af;
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        }
        
        .btn-accent {
            background: var(--accent);
            color: var(--dark);
            border: none;
        }
        
        .btn-accent:hover {
            background: #00b386;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        }
        
        .btn-buy {
            background: var(--accent);
            color: var(--dark);
            width: 100%;
            padding: 10px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .btn-buy:hover {
            background: #00b386;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 208, 156, 0.3);
        }
        
        .btn-sell {
            background: #f87171;
            color: white;
            width: 100%;
            padding: 10px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .btn-sell:hover {
            background: #dc2626;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(248, 113, 113, 0.3);
        }
        
        footer {
            background: var(--secondary);
            color: white;
            padding: 50px 0 25px;
        }
        
        .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s;
            display: block;
            margin-bottom: 8px;
            font-size: 0.95rem;
        }
        
        .footer-links a:hover {
            color: var(--accent);
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 8px;
            transition: all 0.3s;
            color: white;
            font-size: 0.95rem;
        }
        
        .social-links a:hover {
            background: var(--accent);
            transform: translateY(-3px);
        }
        
        .crypto-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            padding: 4px 12px;
            border-radius: 20px;
            margin: 4px;
            font-size: 0.85rem;
            transition: all 0.3s;
        }
        
        .crypto-badge:hover {
            background: var(--primary);
            transform: translateY(-2px);
        }
        
        .platform-stats {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 15px;
            text-align: center;
            transition: all 0.3s ease;
            margin-bottom: 15px;
        }
        
        .platform-stats:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.1);
        }