/* Color Converter Tool Specific Styles - Scoped to prevent header/footer conflicts */
        .color-converter-section {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #234000 0%, #1a3000 50%, #0f1d00 100%);
            min-height: 100vh;
            padding: 40px 0;
        }
        
        .color-converter-section * {
            box-sizing: border-box;
        }
        
        .cc-main-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Hero Section */
        .cc-hero {
            text-align: center;
            padding: 40px 20px;
            margin-bottom: 30px;
        }
        
        .cc-hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #fcfcfc;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .cc-hero h1 span {
            color: #0b6ffd;
        }
        
        .cc-hero p {
            font-size: 1.2rem;
            color: rgba(252, 252, 252, 0.85);
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Rating Badge */
        .cc-rating-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(11, 111, 253, 0.2);
            border: 1px solid rgba(11, 111, 253, 0.5);
            border-radius: 50px;
            padding: 8px 20px;
            margin-top: 20px;
        }
        
        .cc-rating-badge .stars {
            color: #ffc107;
        }
        
        .cc-rating-badge span {
            color: #fcfcfc;
            font-size: 0.95rem;
        }
        
        /* Ad Containers */
        .cc-ad-container {
            background: rgba(252, 252, 252, 0.05);
            border: 2px dashed rgba(252, 252, 252, 0.2);
            border-radius: 12px;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(252, 252, 252, 0.4);
            font-size: 0.9rem;
            text-align: center;
            padding: 20px;
        }
        
        .cc-ad-container.horizontal {
            min-height: 100px;
            margin: 30px 0;
        }
        
        /* Main Tool Card */
        .cc-tool-card {
            background: #fcfcfc;
            border-radius: 20px;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
            overflow: hidden;
        }
        
        .cc-tool-header {
            background: linear-gradient(135deg, #0b6ffd 0%, #0056d6 100%);
            padding: 25px 30px;
            text-align: center;
        }
        
        .cc-tool-header h2 {
            color: #fcfcfc;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0;
        }
        
        .cc-tool-header p {
            color: rgba(252, 252, 252, 0.85);
            margin: 8px 0 0 0;
            font-size: 0.95rem;
        }
        
        .cc-tool-body {
            padding: 30px;
        }
        
        /* Color Preview */
        .cc-color-preview-container {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .cc-color-preview {
            width: 120px;
            height: 120px;
            border-radius: 16px;
            border: 4px solid #e9ecef;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            background: #0b6ffd;
            transition: all 0.3s ease;
        }
        
        .cc-color-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .cc-color-info h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #234000;
            margin-bottom: 10px;
        }
        
        .cc-color-name {
            font-size: 1rem;
            color: #666;
            margin-bottom: 5px;
        }
        
        /* Input Section */
        .cc-input-section {
            margin-bottom: 25px;
        }
        
        .cc-input-group {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .cc-input-wrapper {
            flex: 1;
            position: relative;
        }
        
        .cc-input-wrapper label {
            display: block;
            font-size: 0.85rem;
            font-weight: 600;
            color: #234000;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .cc-input-wrapper input[type="text"],
        .cc-input-wrapper input[type="number"] {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #e9ecef;
            border-radius: 12px;
            font-size: 1rem;
            font-family: 'Inter', monospace;
            transition: all 0.3s ease;
            background: #f8f9fa;
        }
        
        .cc-input-wrapper input:focus {
            outline: none;
            border-color: #0b6ffd;
            box-shadow: 0 0 0 4px rgba(11, 111, 253, 0.15);
            background: #fff;
        }
        
        .cc-color-picker-wrapper {
            position: relative;
        }
        
        .cc-color-picker {
            width: 100%;
            height: 56px;
            padding: 5px;
            border: 2px solid #e9ecef;
            border-radius: 12px;
            cursor: pointer;
            background: #f8f9fa;
        }
        
        .cc-color-picker::-webkit-color-swatch-wrapper {
            padding: 0;
        }
        
        .cc-color-picker::-webkit-color-swatch {
            border: none;
            border-radius: 8px;
        }
        
        /* Format Tabs */
        .cc-format-tabs {
            display: flex;
            gap: 10px;
            margin-bottom: 25px;
            flex-wrap: wrap;
        }
        
        .cc-format-tab {
            padding: 12px 24px;
            border: 2px solid #e9ecef;
            border-radius: 10px;
            background: #f8f9fa;
            color: #666;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .cc-format-tab:hover {
            border-color: #0b6ffd;
            color: #0b6ffd;
        }
        
        .cc-format-tab.active {
            background: #0b6ffd;
            border-color: #0b6ffd;
            color: #fcfcfc;
        }
        
        /* Output Section */
        .cc-output-section {
            background: #f8f9fa;
            border-radius: 16px;
            padding: 25px;
            margin-bottom: 25px;
        }
        
        .cc-output-section h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #234000;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .cc-output-section h4 i {
            color: #0b6ffd;
        }
        
        .cc-output-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
        }
        
        .cc-output-item {
            background: #fff;
            border-radius: 12px;
            padding: 15px;
            border: 2px solid #e9ecef;
            transition: all 0.3s ease;
        }
        
        .cc-output-item:hover {
            border-color: #0b6ffd;
            box-shadow: 0 5px 20px rgba(11, 111, 253, 0.15);
        }
        
        .cc-output-item label {
            display: block;
            font-size: 0.75rem;
            font-weight: 700;
            color: #0b6ffd;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .cc-output-value {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .cc-output-value code {
            flex: 1;
            font-family: 'Monaco', 'Consolas', monospace;
            font-size: 0.9rem;
            color: #234000;
            background: transparent;
            word-break: break-all;
        }
        
        .cc-copy-btn {
            width: 36px;
            height: 36px;
            border: none;
            border-radius: 8px;
            background: linear-gradient(135deg, #0b6ffd 0%, #0056d6 100%);
            color: #fcfcfc;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .cc-copy-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 5px 15px rgba(11, 111, 253, 0.4);
        }
        
        .cc-copy-btn.copied {
            background: linear-gradient(135deg, #234000 0%, #1a3000 100%);
        }
        
        /* RGBA Slider */
        .cc-slider-container {
            margin-top: 20px;
            padding: 20px;
            background: #fff;
            border-radius: 12px;
            border: 2px solid #e9ecef;
        }
        
        .cc-slider-container label {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
            font-weight: 600;
            color: #234000;
            margin-bottom: 12px;
        }
        
        .cc-slider-container label span {
            background: #0b6ffd;
            color: #fcfcfc;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
        }
        
        .cc-slider {
            width: 100%;
            height: 8px;
            border-radius: 4px;
            background: linear-gradient(to right, transparent, #0b6ffd);
            outline: none;
            -webkit-appearance: none;
        }
        
        .cc-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: #0b6ffd;
            cursor: pointer;
            border: 3px solid #fcfcfc;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        
        /* Action Buttons */
        .cc-action-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .cc-btn {
            flex: 1;
            min-width: 150px;
            padding: 16px 30px;
            border: none;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.3s ease;
        }
        
        .cc-btn-primary {
            background: linear-gradient(135deg, #0b6ffd 0%, #0056d6 100%);
            color: #fcfcfc;
        }
        
        .cc-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(11, 111, 253, 0.4);
        }
        
        .cc-btn-secondary {
            background: linear-gradient(135deg, #234000 0%, #1a3000 100%);
            color: #fcfcfc;
        }
        
        .cc-btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(35, 64, 0, 0.4);
        }
        
        .cc-btn-outline {
            background: transparent;
            border: 2px solid #e9ecef;
            color: #666;
        }
        
        .cc-btn-outline:hover {
            border-color: #0b6ffd;
            color: #0b6ffd;
            background: rgba(11, 111, 253, 0.05);
        }
        
        /* Toast Notification */
        .cc-toast-container {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .cc-toast {
            background: #234000;
            color: #fcfcfc;
            padding: 16px 24px;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            gap: 12px;
            animation: ccSlideIn 0.3s ease;
            min-width: 280px;
        }
        
        .cc-toast.success {
            background: linear-gradient(135deg, #234000 0%, #2d5200 100%);
        }
        
        .cc-toast.error {
            background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
        }
        
        .cc-toast.info {
            background: linear-gradient(135deg, #0b6ffd 0%, #0056d6 100%);
        }
        
        .cc-toast i {
            font-size: 1.2rem;
        }
        
        .cc-toast-close {
            margin-left: auto;
            background: none;
            border: none;
            color: #fcfcfc;
            cursor: pointer;
            padding: 0;
            opacity: 0.7;
        }
        
        .cc-toast-close:hover {
            opacity: 1;
        }
        
        @keyframes ccSlideIn {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }
        
        @keyframes ccSlideOut {
            from {
                transform: translateX(0);
                opacity: 1;
            }
            to {
                transform: translateX(100%);
                opacity: 0;
            }
        }
        
        /* Color Palette */
        .cc-palette-section {
            margin-top: 25px;
            padding: 25px;
            background: #f8f9fa;
            border-radius: 16px;
        }
        
        .cc-palette-section h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #234000;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .cc-palette-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 10px;
        }
        
        .cc-palette-color {
            aspect-ratio: 1;
            border-radius: 12px;
            cursor: pointer;
            border: 3px solid transparent;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .cc-palette-color:hover {
            transform: scale(1.1);
            border-color: #0b6ffd;
            z-index: 5;
        }
        
        .cc-palette-color.active {
            border-color: #234000;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }
        
        /* Features Section */
        .cc-features {
            margin-top: 50px;
        }
        
        .cc-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }
        
        .cc-feature-card {
            background: rgba(252, 252, 252, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(252, 252, 252, 0.2);
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .cc-feature-card:hover {
            transform: translateY(-10px);
            background: rgba(252, 252, 252, 0.15);
            border-color: #0b6ffd;
        }
        
        .cc-feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #0b6ffd 0%, #0056d6 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
            color: #fcfcfc;
        }
        
        .cc-feature-card h3 {
            color: #fcfcfc;
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 12px;
        }
        
        .cc-feature-card p {
            color: rgba(252, 252, 252, 0.75);
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        /* Content Section */
        .cc-content-section {
            background: #fcfcfc;
            border-radius: 20px;
            padding: 50px;
            margin-top: 50px;
        }
        
        .cc-content-section h2 {
            font-size: 2rem;
            font-weight: 800;
            color: #234000;
            margin-bottom: 25px;
        }
        
        .cc-content-section h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #234000;
            margin: 30px 0 15px;
        }
        
        .cc-content-section p {
            color: #555;
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .cc-content-section ul {
            padding-left: 20px;
            margin-bottom: 20px;
        }
        
        .cc-content-section li {
            color: #555;
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 10px;
        }
        
        .cc-content-section li strong {
            color: #234000;
        }
        
        /* FAQ Section */
        .cc-faq-section {
            margin-top: 40px;
        }
        
        .cc-faq-item {
            border: 2px solid #e9ecef;
            border-radius: 12px;
            margin-bottom: 15px;
            overflow: hidden;
        }
        
        .cc-faq-question {
            width: 100%;
            padding: 20px 25px;
            background: #f8f9fa;
            border: none;
            text-align: left;
            font-size: 1.1rem;
            font-weight: 600;
            color: #234000;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .cc-faq-question:hover {
            background: #f0f0f0;
        }
        
        .cc-faq-question i {
            color: #0b6ffd;
            transition: transform 0.3s ease;
        }
        
        .cc-faq-question.active i {
            transform: rotate(180deg);
        }
        
        .cc-faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: #fff;
        }
        
        .cc-faq-answer.active {
            padding: 20px 25px;
            max-height: 500px;
        }
        
        .cc-faq-answer p {
            margin: 0;
            color: #666;
            line-height: 1.7;
        }
        
        /* Related Tools */
        .cc-related-tools {
            margin-top: 40px;
            padding: 30px;
            background: linear-gradient(135deg, rgba(11, 111, 253, 0.1) 0%, rgba(35, 64, 0, 0.1) 100%);
            border-radius: 16px;
        }
        
        .cc-related-tools h4 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #234000;
            margin-bottom: 20px;
        }
        
        .cc-related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
        }
        
        .cc-related-item {
            background: #fff;
            padding: 20px;
            border-radius: 12px;
            text-decoration: none;
            color: #234000;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .cc-related-item:hover {
            border-color: #0b6ffd;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            color: #0b6ffd;
        }
        
        .cc-related-item i {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #0b6ffd 0%, #0056d6 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fcfcfc;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .cc-ad-container {
                min-height: 120px;
            }
            
            .cc-hero h1 {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .cc-hero h1 {
                font-size: 1.8rem;
            }
            
            .cc-hero p {
                font-size: 1rem;
            }
            
            .cc-tool-body {
                padding: 20px;
            }
            
            .cc-color-preview-container {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .cc-input-group {
                flex-direction: column;
            }
            
            .cc-format-tabs {
                justify-content: center;
            }
            
            .cc-format-tab {
                padding: 10px 18px;
                font-size: 0.85rem;
            }
            
            .cc-palette-grid {
                grid-template-columns: repeat(5, 1fr);
            }
            
            .cc-content-section {
                padding: 30px 20px;
            }
            
            .cc-content-section h2 {
                font-size: 1.6rem;
            }
        }
        
        /* Print Styles */
        @media print {
            .cc-ad-container,
            .cc-toast-container {
                display: none !important;
            }
        }