        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
/* 
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
            background: linear-gradient(135deg, #ffeef0 0%, #fff5f5 100%);
            min-height: 100vh;
            padding: 20px;
            line-height: 1.6;
        } */

                .container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 2rem;
}

.header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
  background:linear-gradient(219deg, #FB0E76 0%, #910694 100%);
  color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(233, 30, 99, 0.1);
}

.header h1 {
  font-size: 45px !important;
  font-weight: 700 !important;
  margin-bottom: 0.5rem;
	    color: white !important;
/*     font-family: inherit; */
	}

        .header p {
            font-size: 1.1rem;
            opacity: 0.95;
        }

        .content {
            padding: 40px;
					 box-shadow: 0 8px 20px rgb(242 165 203 / 30%);
					border-radius:10px;
        }

        .input-section, .result-section {
            background: #fafafa !important;
            border-radius: 16px !important;
            padding: 30px;
            margin-bottom: 30px;
            border: 1px solid #f1f5f9 !important;
        }

        .input-group {
            margin-bottom: 25px;
        }

        .input-group label {
            display: block;
            font-weight: 600;
            color: #1e293b !important;
            margin-bottom: 12px;
            font-size: 1rem;
        }

        .color-input-wrapper {
            display: flex;
            gap: 12px;
            align-items: center;
            margin-bottom: 15px;
        }

        .color-input {
            width: 80px;
            height: 50px;
					padding:2px !important;
            border: 1px solid #e2e8f0 !important;
            border-radius: 12px !important;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .color-input:hover {
            border-color: #ec4899;
            transform: scale(1.05);
        }

        .color-text-input {
            flex: 1;
            padding: 14px 16px !important;
            border: 2px solid #e2e8f0 !important;
            border-radius: 12px !important;
            font-size: 1rem;
            font-family: monospace;
            transition: all 0.3s ease;
            background: white !important;
        }

        .color-text-input:focus {
            outline: none !important;
            border-color: #ec4899 !important;
            box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
        }

        .random-btn {
            background:linear-gradient(219deg, #FB0E76 0%, #910694 100%);
            color: white !important;
            border: none !important;
            padding: 12px 24px !important;
            border-radius: 12px !important;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .random-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(236, 72, 153, 0.3);
        }

        .slider-container {
            margin: 20px 0;
        }

        .slider {
            width: 100%;
            height: 8px !important;
            border-radius: 4px !important;
            background: #e2e8f0;
            outline: none !important;
/*             appearance: none; */
            margin: 15px 0;
        }

        .slider::-webkit-slider-thumb {
            appearance: none;
            width: 24px;
            height: 24px;
            border-radius: 50% !important;
            background: linear-gradient(135deg, #ec4899 0%, #e11d48 100%);
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(236, 72, 153, 0.4);
            transition: all 0.3s ease;
        }

        .slider::-webkit-slider-thumb:hover {
            transform: scale(1.2);
            box-shadow: 0 6px 16px rgba(236, 72, 153, 0.6);
        }

        .slider::-moz-range-thumb {
            width: 24px;
            height: 24px;
            border-radius: 50% !important;
            background: linear-gradient(135deg, #ec4899 0%, #e11d48 100%);
            cursor: pointer;
            border: none !important;
            box-shadow: 0 4px 12px rgba(236, 72, 153, 0.4);
        }

        .slider-value {
            text-align: center;
            font-weight: 600;
            color: #ec4899;
            font-size: 1.1rem;
            margin-top: 10px;
        }

        .slider-description {
            text-align: center;
            color: #64748b;
            font-size: 0.9rem;
            margin-top: 8px;
        }

        .result-section h3 {
            color: #1e293b;
            font-size: 1.4rem;
            margin-bottom: 25px;
            font-weight: 700;
        }

        .color-preview {
            width: 100%;
            height: 120px;
            border-radius: 12px !important;
            margin-bottom: 25px;
            border: 3px solid #e2e8f0 !important;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .color-preview::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 9px;
            background: linear-gradient(45deg, transparent 45%, rgba(0,0,0,0.1) 50%, transparent 55%);
        }

        .color-formats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
        }

        .color-format {
            background: white;
            border: 2px solid #e2e8f0 !important;
            border-radius: 12px !important;
            padding: 20px !important;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .color-format:hover {
            border-color: #ec4899;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(236, 72, 153, 0.15);
        }

        .color-format.copied {
            border-color: #10b981;
            background: #f0fdf4;
        }

        .color-format.copied::after {
            content: 'Copied!';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: #10b981;
            color: white;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 0.8rem;
            font-weight: 600;
            opacity: 0;
            animation: copyFeedback 1.5s ease forwards;
        }

        @keyframes copyFeedback {
            0% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
            30% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
            70% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
            100% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
        }

        .format-label {
            font-weight: 600;
            color: #1e293b;
            font-size: 0.9rem;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .format-value {
            font-family: monospace;
            font-size: 1rem;
            color: #64748b;
            word-break: break-all;
        }

        .copy-instruction {
            text-align: center;
            color: #64748b;
            font-size: 0.9rem;
            margin-top: 20px;
            font-style: italic;
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 35px !important;
            }
					.container{
						padding:0px !important;
					}
            
            .content {
                padding: 20px;
            }
            
            .input-section, .result-section {
                padding: 20px;
            }
            
            .color-input-wrapper {
                flex-direction: column;
                align-items: stretch;
            }
            
            .color-input {
                width: 100%;
                height: 60px;
            }
            
            .color-formats {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
/*             body {
                padding: 10px;
            } */
            
            .header {
                padding: 30px 15px;
            }
            
            .header h1 {
                font-size: 1.8rem;
            }
        }
    