

        .selling-body {
            line-height: 1.6;
            color: #333;
            padding: 20px;
        }

        .selling-container {
            max-width: 1200px;
            margin: 0 auto;
            
        }

        /* Tab container */
        .selling-tab-container {
            position: relative;
        }

        /* Hide radio buttons */
        .selling-tab-container input[type="radio"] {
            display: none;
        }

        /* Tab navigation */
        .selling-tab-nav {
            display: flex;
            position: relative;
        }

        .selling-tab-label {
            margin: 10px;
            padding: 15px 15px;
            text-align: center;
            transition: 0.5s;
            background-size: 200% auto;
            color: black;            
            box-shadow: 0 0 20px #eee;
            border-radius: 10px;
            display: block;
			width: 100%;
			height: auto;
            cursor: pointer;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
			border: 4px solid transparent;
            border-radius: 20px;
            background: 
            linear-gradient(white, white) padding-box, /* Inner background */
            linear-gradient(to right, #7474BF 0%, #348AC7  51%, #7474BF  100%) border-box; /* Gradient border */
            background-clip: padding-box, border-box;
            background-origin: padding-box, border-box;
            position: relative;
			align-content: center;
            overflow: hidden;
        }

        .selling-tab-label:hover {
     
            transform: translateY(-4px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
			background-position: right center; /* change the direction of the change here */
            color: #000;
            text-decoration: none;
			border-radius: 20px;
			
        }

        /* Enhanced hover for active tabs */
        #sellingtool-tab1:checked ~ .selling-tab-nav .selling-tab-label:nth-of-type(1):hover,
        #sellingtool-tab2:checked ~ .selling-tab-nav .selling-tab-label:nth-of-type(2):hover,
        #sellingtool-tab3:checked ~ .selling-tab-nav .selling-tab-label:nth-of-type(3):hover,
        #sellingtool-tab4:checked ~ .selling-tab-nav .selling-tab-label:nth-of-type(4):hover {
            background: linear-gradient(210deg, #005C97 0%, #363795  100%, #005C97 100%);
            transform: translateY(-5px);
            box-shadow: 0 16px 32px rgba(102, 126, 234, 0.5);
			color: white;
			
        }

        .selling-tab-label .selling-icon {
            width: 20px;
            height: 30px;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .selling-tab-label span {
            font-weight: 500;
            font-size: 18px;
            transition: all 0.3s ease;
			display: block;
        }

        /* Active tab styles */
        #sellingtool-tab1:checked ~ .selling-tab-nav .selling-tab-label:nth-of-type(1),
        #sellingtool-tab2:checked ~ .selling-tab-nav .selling-tab-label:nth-of-type(2),
        #sellingtool-tab3:checked ~ .selling-tab-nav .selling-tab-label:nth-of-type(3),
        #sellingtool-tab4:checked ~ .selling-tab-nav .selling-tab-label:nth-of-type(4) {
            background: linear-gradient(210deg, #005C97 0%, #363795  100%, #005C97 100%);
            color: white;
            border-bottom-color: #667eea;
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(102, 126, 234, 0.4);
            z-index: 10;
            position: relative;
            animation: selling-activePulse 2s ease-in-out infinite;
        }

        /* Enhanced click effect */
        .selling-tab-label:active {
            transform: translateY(0px) scale(0.98);
            transition: all 0.1s ease;
        }

        #sellingtool-tab1:checked ~ .selling-tab-nav .selling-tab-label:nth-of-type(1):active,
        #sellingtool-tab2:checked ~ .selling-tab-nav .selling-tab-label:nth-of-type(2):active,
        #sellingtool-tab3:checked ~ .selling-tab-nav .selling-tab-label:nth-of-type(3):active,
        #sellingtool-tab4:checked ~ .selling-tab-nav .selling-tab-label:nth-of-type(4):active {
            transform: translateY(-1px) scale(0.98);
			
        }

        /* Tab content */
        .selling-tab-content {
            position: relative;
            min-height: 500px;
            padding: 30px;
            
        }

        /* Tab panels */
        .selling-tab-panel {
            display: none;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease;
        }

        #sellingtool-tab1:checked ~ .selling-tab-content #sellingtool-panel1,
        #sellingtool-tab2:checked ~ .selling-tab-content #sellingtool-panel2,
        #sellingtool-tab3:checked ~ .selling-tab-content #sellingtool-panel3,
        #sellingtool-tab4:checked ~ .selling-tab-content #sellingtool-panel4 {
            display: block;
            opacity: 1;
            transform: translateY(0);
            animation: selling-fadeInUp 0.4s ease forwards;
		
        }

        @keyframes selling-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes selling-activePulse {
            0%, 100% {
                box-shadow: 0 12px 28px rgba(102, 126, 234, 0.4);
            }
            50% {
                box-shadow: 0 12px 28px rgba(102, 126, 234, 0.6);
            }
        }

        /* Grid layouts */
        .selling-grid {
            display: grid;
            gap: 24px;
            width: 100%;
        }

        .selling-grid-2x2 {
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(2, 1fr);
        }

        .selling-grid-single {
            grid-template-columns: 1fr;
        }

        .selling-grid-item {
            display: flex;
            flex-direction: column;
        }

        /* Cards */
        .selling-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            border: 1px solid #e9ecef;
            transition: all 0.3s ease;
            height: 100%;
            overflow: hidden;
        }

        .selling-card:hover {
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
            transform: translateY(-4px);
            border-color: #667eea;
        }

        .selling-card:active {
            transform: translateY(-2px) scale(0.98);
            transition: all 0.1s ease;
        }

        .selling-card-header {
            padding: 20px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-bottom: 1px solid #e9ecef;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .selling-card-header .selling-icon {
            width: 24px;
            height: 24px;
            color: #667eea;
            transition: transform 0.3s ease;
        }

        .selling-card:hover .selling-card-header .selling-icon {
            transform: scale(1.15) rotate(5deg);
        }

        .selling-card-header h3 {
            font-size: 18px;
            font-weight: 600;
            color: #495057;
        }

        .selling-card-content {
            padding: 24px;
            flex: 1;
        }

        .selling-card-content p {
            color: #6c757d;
            line-height: 1.6;
        }

        /* Video card specific styles */
        .selling-video-card .selling-card-content {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 300px;
        }

        .selling-video-placeholder {
            text-align: center;
            padding: 20px;
            border: 2px dashed #dee2e6;
            border-radius: 8px;
            transition: all 0.3s ease;
            cursor: pointer;
            width: 100%;
			margin: 10px;
        }

        .selling-video-placeholder:hover {
            border-color: #667eea;
            background: #f8f9ff;
        }

        .selling-video-placeholder:active {
            transform: scale(0.95);
            border-color: #5a6fd8;
            background: #f0f4ff;
        }

        .selling-video-placeholder .selling-icon {
            width: 48px;
            height: 48px;
            color: #667eea;
            margin-bottom: 16px;
        }

        .selling-video-placeholder p {
            color: #6c757d;
            font-size: 16px;
        }

        /* Assets card specific styles */
        .selling-assets-list {
            display: grid;
            gap: 16px;
        }

        .selling-asset-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px;
            background: #f8f9fa;
            border-radius: 8px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .selling-asset-item:hover {
            background: #e9ecef;
            transform: translateX(8px);
        }

        .selling-asset-item:active {
            transform: translateX(4px) scale(0.98);
            transition: all 0.1s ease;
        }

        .selling-asset-item .selling-icon {
            width: 20px;
            height: 20px;
            color: #667eea;
            transition: transform 0.3s ease;
        }

        .selling-asset-item:hover .selling-icon {
            transform: scale(1.15) rotate(5deg);
        }

        .selling-asset-item span {
            font-weight: 500;
            color: #495057;
        }

        /* Guidelines card specific styles */
        .selling-guideline-sections {
            display: grid;
            gap: 24px;
        }

        .selling-guideline-section {
            padding: 20px;
            background: #f8f9fa;
            border-radius: 8px;
            border-left: 4px solid #667eea;
        }

        .selling-guideline-section h4 {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
            color: #495057;
            font-size: 16px;
            font-weight: 600;
        }

        .selling-guideline-section h4 .selling-icon {
            width: 18px;
            height: 18px;
            color: #667eea;
            transition: transform 0.3s ease;
        }

        .selling-guideline-section:hover h4 .selling-icon {
            transform: scale(1.15) rotate(5deg);
        }

        .selling-guideline-section p {
            color: #6c757d;
            line-height: 1.6;
        }

        /* Enhance hover effects with shimmer */
        .selling-tab-label::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
            z-index: 1;
        }

        .selling-tab-label:hover::before {
            left: 100%;
        }

        /* Focus states for accessibility */
        .selling-tab-label:focus-within {
            outline: 2px solid #667eea;
            outline-offset: 2px;
        }

        .selling-card:focus-within {
            outline: 2px solid #667eea;
            outline-offset: 2px;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .selling-body {
                padding: 10px;
            }
            
            .selling-container {
                border-radius: 12px;
            }
            
            .selling-tab-nav {
                flex-wrap: wrap;
            }
            
            .selling-tab-label {
                flex: 1 1 50%;
                min-width: 50%;
                padding: 16px 12px;
                font-size: 14px;
            }
            
            .selling-tab-label span {
                font-size: 18px;
            }
            
            .selling-tab-content {
                padding: 20px;
                min-height: 400px;
            }
            
            .selling-grid-2x2 {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
            }
            
            .selling-card-header {
                padding: 16px;
            }
            
            .selling-card-content {
                padding: 20px;
            }
            
            .selling-video-placeholder {
                padding: 30px 20px;
            }
            
            .selling-video-placeholder .selling-icon {
                width: 40px;
                height: 40px;
            }
        }

        @media (max-width: 480px) {
            .selling-tab-label {
                flex: 1 1 100%;
                min-width: 100%;
				
            }
            
            .selling-tab-content {
                padding: 16px;
            }
            
            .selling-card-header {
                padding: 12px;
            }
            
            .selling-card-content {
                padding: 16px;
            }
            
            .selling-grid {
                gap: 16px;
            }
            
            .selling-guideline-sections {
                gap: 16px;
            }
            
            .selling-guideline-section {
                padding: 16px;
            }
        }

        /* SVG Icons as CSS content */
        .selling-icon-file::before { content: "📄"; }
        .selling-icon-play::before { content: "▶️"; }
        .selling-icon-package::before { content: "📦"; }
        .selling-icon-book::before { content: "📖"; }
        .selling-icon-info::before { content: "ℹ️"; }
        .selling-icon-trending::before { content: "📈"; }
        .selling-icon-settings::before { content: "⚙️"; }
        .selling-icon-dollar::before { content: "💲"; }
        .selling-icon-video::before { content: "🎥"; }
        .selling-icon-download::before { content: "⬇️"; }
        .selling-icon-image::before { content: "🖼️"; }
        .selling-icon-monitor::before { content: "🖥️"; }
        .selling-icon-globe::before { content: "🌐"; }
        .selling-icon-compass::before { content: "🧭"; }
        .selling-icon-target::before { content: "🎯"; }
        .selling-icon-message::before { content: "💬"; }
        .selling-icon-users::before { content: "👥"; }
        .selling-icon-play-large::before { content: "▶️"; font-size: 48px; }