 :root {
            --brand-red: #dc2626;
            --brand-red-light: #fef2f2;
            --brand-red-dark: #b91c1c;
            --brand-red-deep: #7f1d1d;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Manrope', sans-serif;
            line-height: 1.6;
            overflow-
            scroll-behavior: smooth;
        }
        
        
        
        .gradient-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.88);
           
        }
        
        
        
        .redbar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.88);
            z-index: 1;
        }
        
        .floating-element {
            position: absolute;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            filter: blur(60px);
            animation: float 6s ease-in-out infinite;
        }
        
        .floating-1 {
            width: 300px;
            height: 300px;
            top: 80px;
            left: 80px;
            animation-delay: 0s;
        }
        
        .floating-2 {
            width: 400px;
            height: 400px;
            bottom: 80px;
            right: 80px;
            animation-delay: 2s;
        }
        
        .floating-3 {
            width: 250px;
            height: 250px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: 4s;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px) scale(1); opacity: 0.5; }
            50% { transform: translateY(-20px) scale(1.1); opacity: 0.8; }
        }
        
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeIn 0.8s ease-out forwards;
        }
        
        @keyframes fadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .slide-up {
            opacity: 0;
            transform: translateY(50px);
            animation: slideUp 1s ease-out forwards;
        }
        
        @keyframes slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-10px); }
            60% { transform: translateX(-50%) translateY(-5px); }
        }
        
        .platform-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: all 0.5s ease;
            border: none;
            position: relative;
            overflow: hidden;
        }
        
        .platform-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
        }
        
        .platform-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(220, 38, 38, 0.05), transparent);
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        
        .platform-card:hover::before {
            opacity: 1;
        }
        
        .platform-icon {
            width: 64px;
            height: 64px;
            background: var(--brand-red-light);
            color: var(--brand-red);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            transition: transform 0.3s ease;
        }
        
        .platform-card:hover .platform-icon {
            transform: scale(1.1);
        }
        
        .platform-card:hover .card-title {
            color: var(--brand-red);
        }
        
        .badge-available {
            background: #dcfce7;
            color: #166534;
            border: 1px solid #bbf7d0;
        }
        
        .badge-pre-launch {
            background: #fef3c7;
            color: #92400e;
            border: 1px solid #fed7aa;
        }
        
        .badge-development {
            background: var(--brand-red-light);
            color: var(--brand-red);
            border: 1px solid rgba(220, 38, 38, 0.3);
        }
        
        .section-badge {
            background: rgba(220, 38, 38, 0.1);
            color: var(--brand-red);
            border: 1px solid rgba(220, 38, 38, 0.2);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 2rem;
        }
        
        .display-1 {
            font-weight: 900;
            letter-spacing: -0.02em;
        }
        
        .btn-hero {
            background: white;
            color: var(--brand-red);
            border: none;
            padding: 1rem 2.5rem;
            font-weight: 700;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }
        
        .btn-hero:hover {
            background: rgb(220, 38, 38);
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }
        
        .btn-outline-hero {
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: white;
            background: transparent;
            backdrop-filter: blur(10px);
            padding: 1rem 2.5rem;
            font-weight: 600;
            border-radius: 12px;
            transition: all 0.3s ease;
        }
        
        .btn-outline-hero:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
        }
        
        .stats-number {
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--brand-red);
        }
        
        .about-section {
            background: linear-gradient(135deg, var(--brand-red-deep), var(--brand-red));
            position: relative;
            overflow: hidden;
        }
        
        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            filter: blur(60px);
        }
        
        .about-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            filter: blur(60px);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2.5rem;
            transition: transform 0.3s ease;
        }
        
        .feature-icon:hover {
            transform: scale(1.1);
        }
        
        .footer-section {
            background: var(--brand-red-deep);
        }
        
        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        .delay-5 { animation-delay: 0.5s; }
        .delay-6 { animation-delay: 0.6s; }
        .delay-7 { animation-delay: 0.7s; }
        .delay-8 { animation-delay: 0.8s; }