    :root {
        --primary: #FF5722;
        --secondary: #FF9800;
        --dark: #212121;
        --light: #f8f9fa;
        --danger: #f44336;
    }

    body {
        font-family: 'Poppins', sans-serif;
        background-color: #f5f5f5;
    }

    .hero-section {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
            url('https://images.unsplash.com/photo-1605106702734-205df224ecce?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
        background-size: cover;
        background-position: center;
        color: white;
        padding: 120px 0;
        text-align: center;
    }

    .navbar {
        background-color: var(--dark);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .navbar-brand {
        font-family: 'Montserrat', sans-serif;
        font-weight: 900;
        font-size: 1.8rem;
        color: var(--primary) !important;
    }

    .navbar-brand span {
        color: var(--secondary);
    }

    .nav-link {
        color: white !important;
        font-weight: 600;
    }

    .nav-link.active{
        color: var(--primary) !important;
    }

    .btn-primary {
        background-color: var(--primary);
        border-color: var(--primary);
        font-weight: 600;
    }

    .btn-secondary {
        background-color: var(--secondary);
        border-color: var(--secondary);
        color: var(--dark);
        font-weight: 600;
    }

    .feature-card {
        border-radius: 10px;
        overflow: hidden;
        transition: transform 0.3s;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin-bottom: 20px;
    }

    .feature-card:hover {
        transform: translateY(-10px);
    }

    .feature-icon {
        font-size: 2.5rem;
        color: var(--primary);
        margin-bottom: 15px;
    }

    .product-card {
        border-radius: 10px;
        overflow: hidden;
        transition: all 0.3s;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        margin-bottom: 20px;
    }

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    .badge-danger {
        background-color: var(--danger);
    }

    .seller-card {
        background: white;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.3s;
        text-align: center;
    }

    .seller-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    .seller-avatar {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid var(--primary);
        margin: 0 auto 15px;
    }

    .subdomain-input {
        border-radius: 30px 0 0 30px !important;
    }

    .subdomain-btn {
        border-radius: 0 30px 30px 0 !important;
    }

    .section-title {
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        position: relative;
        margin-bottom: 40px;
        color: var(--dark);
    }

    .section-title:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: var(--primary);
    }

    .spark-animation {
        position: relative;
        overflow: hidden;
    }

    .spark-animation:before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, rgba(255, 215, 0, 0) 70%);
        transform: scale(0);
        opacity: 0;
        transition: all 0.6s ease-out;
    }

    .spark-animation:hover:before {
        transform: scale(1);
        opacity: 1;
    }

    @media (max-width: 768px) {
        .hero-section {
            padding: 80px 0;
        }

        .hero-title {
            font-size: 2rem;
        }
    }