 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Noto Sans', sans-serif;
        }

        body {
            background: #ffffff;
            overflow-x: hidden;
        }

        .marketplace-section {
            padding: 5rem 2rem;
            background: #ffffff;
            position: relative;
            overflow: hidden;
            height: 100vh;
        }

        /* Subtle decorative background circles */
        .marketplace-section::before,
        .marketplace-section::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            opacity: 0.03;
            z-index: 0;
        }

        .marketplace-section::before {
            width: 600px;
            height: 600px;
            background: linear-gradient(135deg, #C3841C, #F5A623);
            top: -200px;
            right: -200px;
            animation: float 20s ease-in-out infinite;
        }

        .marketplace-section::after {
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, #3eb489, #2a8d6a);
            bottom: -100px;
            left: -100px;
            animation: float 25s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(30px, 30px) rotate(10deg); }
        }

        .marketplace-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .marketplace-header {
            text-align: center;
            margin-bottom: 4rem;
            animation: fadeInDown 0.8s ease-out;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .marketplace-header h2 {
            font-size: 3rem;
            color: #1a1a1a;
            margin-bottom: 1rem;
            font-weight: 700;
            position: relative;
            display: inline-block;
        }

        .marketplace-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #C3841C, #F5A623);
            border-radius: 2px;
        }

        .marketplace-header p {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 1.5rem auto 0;
            line-height: 1.6;
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2.5rem;
            margin-bottom: 3rem;
        }

        .marketplace-card {
            background: #ffffff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            animation: fadeInUp 0.6s ease-out backwards;
        }

        .marketplace-card:nth-child(1) { animation-delay: 0.1s; }
        .marketplace-card:nth-child(2) { animation-delay: 0.2s; }
        .marketplace-card:nth-child(3) { animation-delay: 0.3s; }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .marketplace-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #C3841C, #F5A623);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .marketplace-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .marketplace-card:hover::before {
            transform: scaleX(1);
        }

        .card-image {
            width: 100%;
            height: 280px;
            overflow: hidden;
            position: relative;
            background: #f8f8f8;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .marketplace-card:hover .card-image img {
            transform: scale(1.1) rotate(2deg);
        }

        .card-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.95);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            color: #C3841C;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            animation: slideInRight 0.5s ease-out;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .card-content {
            padding: 2rem;
        }

        .card-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 0.8rem;
            transition: color 0.3s ease;
        }

        .marketplace-card:hover .card-title {
            color: #C3841C;
        }

        .card-description {
            font-size: 1rem;
            color: #1E1E1E;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 1rem;
            border-top: 1px solid #f0f0f0;
        }

        .item-count {
            font-size: 0.9rem;
            color: #999;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .item-count::before {
            content: '●';
            color: #3eb489;
            font-size: 1.2rem;
        }

        .explore-btn-container {
            text-align: center;
            margin-top: 3rem;
            animation: fadeIn 1s ease-out 0.5s backwards;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .explore-btn {
            display: inline-block;
            padding: 1rem 3rem;
            background: linear-gradient(135deg, #C3841C, #F5A623);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 8px 20px rgba(195, 132, 28, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .explore-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .explore-btn:hover::before {
            width: 400px;
            height: 400px;
        }

        .explore-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(195, 132, 28, 0.4);
        }

        .explore-btn span {
            position: relative;
            z-index: 1;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .marketplace-header h2 {
                font-size: 2rem;
            }

            .marketplace-header p {
                font-size: 1rem;
            }

            .cards-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }