        /* Instagram Username Checker (IUC) Styles - Dark Theme Version */
        /* Universal Reset for the component scope */
        .iuc-main-container * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
				   
        }

        /* Using a wrapper to ensure body styles don't conflict */
        .iuc-body-wrapper {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
            /* New Color Scheme: Dark Slate Gradient */
/*             background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%) !important;
            min-height: 100vh !important; */
/*             width: 100vw !important; */
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            padding: 20px !important;
            position: relative !important;
            margin: 0 !important;
            left: 50% !important;
            right: 50% !important;
            margin-left: -50vw !important;
            margin-right: -50vw !important;
		
        }

        .iuc-body-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.03"/><circle cx="50" cy="10" r="1" fill="white" opacity="0.02"/><circle cx="10" cy="90" r="1" fill="white" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            pointer-events: none;
        }

        .iuc-main-container {
            /* New Color Scheme: Dark, transparent card */
            background: rgba(15, 23, 42, 0.85);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            box-shadow: 0 32px 64px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(51, 65, 85, 0.5);
            width: 100%;
            max-width: 1200px;
            overflow: hidden;
            position: relative;
        }

        .iuc-main-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            /* New Color Scheme: Modern cool-toned gradient */
            background: linear-gradient(90deg, #38bdf8, #818cf8, #c084fc, #f472b6);
        }

        .iuc-content-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 600px;
        }

        .iuc-left-panel {
            padding: 60px 50px;
            /* New Color Scheme: Subtle dark panel gradient */
            background: linear-gradient(135deg, rgba(30, 41, 59, 0.5) 0%, transparent 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }

        .iuc-left-panel::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 1px;
            height: 100%;
            /* New Color Scheme: Darker divider */
            background: linear-gradient(to bottom, transparent, #1e293b 20%, #1e293b 80%, transparent);
        }

        .iuc-brand-section {
            margin-bottom: 40px;
        }

        .iuc-brand-title {
            font-size: 3.2rem;
            font-weight: 800;
            /* New Color Scheme: Light text gradient */
            background: linear-gradient(135deg, #e2e8f0, #94a3b8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.1;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .iuc-brand-subtitle {
            font-size: 1.25rem;
            /* New Color Scheme: Light text */
            color: #cbd5e1;
            font-weight: 500;
            line-height: 1.6;
            margin-bottom: 8px;
        }

        .iuc-brand-description {
            font-size: 1rem;
            /* New Color Scheme: Muted light text */
            color: #94a3b8;
            line-height: 1.5;
        }

        .iuc-features-list {
            list-style: none;
            margin-top: 32px;
        }

        .iuc-features-list li {
            display: flex;
            align-items: center;
            margin-bottom: 16px;
            font-size: 1rem;
            /* New Color Scheme: Light text */
            color: #cbd5e1;
        }

        .iuc-features-list li::before {
            content: '✓';
            /* New Color Scheme: Blue accent gradient */
            background: linear-gradient(135deg, #38bdf8, #2563eb);
            color: white;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            font-weight: bold;
            font-size: 14px;
            flex-shrink: 0;
        }

        .iuc-right-panel {
            padding: 60px 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            /* New Color Scheme: Transparent background */
            background: transparent;
        }

        .iuc-search-section {
            margin-bottom: 32px;
        }

        .iuc-search-title {
            font-size: 1.5rem;
            font-weight: 700;
            /* New Color Scheme: Bright text */
            color: #f1f5f9;
            margin-bottom: 8px;
        }

        .iuc-search-subtitle {
            font-size: 1rem;
            /* New Color Scheme: Muted light text */
            color: #94a3b8;
            margin-bottom: 32px;
        }

        .iuc-input-group {
            position: relative;
            margin-bottom: 24px;
        }

        .iuc-input-label {
            display: block;
            font-size: 0.875rem;
            font-weight: 600;
            /* New Color Scheme: Muted light text */
            color: #94a3b8;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .iuc-username-input {
            width: 100%;
            padding: 16px 20px;
            font-size: 1.125rem;
            /* New Color Scheme: Dark input */
            border: 2px solid #334155;
            background: #0f172a;
            color: #e2e8f0;
            border-radius: 12px;
            outline: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-weight: 500;
        }

        .iuc-username-input:focus {
            /* New Color Scheme: Blue accent focus */
            border-color: #38bdf8;
            background: #1e293b;
            box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.15);
        }

        .iuc-username-input::placeholder {
            /* New Color Scheme: Darker placeholder text */
            color: #475569;
            font-weight: 400;
        }

        .iuc-check-button {
            width: 100%;
            /* New Color Scheme: Vibrant action button gradient */
            background: linear-gradient(135deg, #38bdf8, #6d28d9);
            color: white;
            border: none;
            padding: 16px 24px;
            font-size: 1.125rem;
            font-weight: 600;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .iuc-check-button:hover:not(:disabled) {
            transform: translateY(-2px);
            /* New Color Scheme: Blue glow shadow */
            box-shadow: 0 20px 25px -5px rgba(56, 189, 248, 0.4), 0 10px 10px -5px rgba(56, 189, 248, 0.04);
        }

        .iuc-check-button:active {
            transform: translateY(0);
        }

        .iuc-check-button:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }

        .iuc-loading-container {
            display: none;
            text-align: center;
            margin: 32px 0;
        }

        .iuc-loading-spinner {
            width: 48px;
            height: 48px;
            /* New Color Scheme: Dark track, blue spinner */
            border: 4px solid #334155;
            border-top: 4px solid #38bdf8;
            border-radius: 50%;
            animation: iuc-spin 1s linear infinite;
            margin: 0 auto 16px;
        }

        .iuc-loading-text {
            /* New Color Scheme: Muted light text */
            color: #94a3b8;
            font-weight: 500;
        }

        @keyframes iuc-spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .iuc-result-container {
            display: none;
            margin-top: 32px;
            animation: iuc-slideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        @keyframes iuc-slideIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .iuc-result-card {
            border-radius: 16px;
            padding: 32px;
            text-align: center;
            position: relative;
            overflow: hidden;
            color: white; /* Default text color for result cards */
        }

        .iuc-result-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: inherit;
            opacity: 0.1;
        }

        .iuc-result-card.iuc-available {
            /* New Color Scheme: Green for success */
            background: linear-gradient(135deg, #16a34a, #15803d);
        }

        .iuc-result-card.iuc-taken {
            /* New Color Scheme: Rose/Red for failure */
            background: linear-gradient(135deg, #e11d48, #be123c);
        }

        .iuc-result-card.iuc-error {
            /* New Color Scheme: Orange for warning/error */
            background: linear-gradient(135deg, #f97316, #d97706);
        }

        .iuc-result-icon {
            font-size: 4rem;
            margin-bottom: 16px;
            display: block;
        }

        .iuc-result-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .iuc-result-message {
            font-size: 1.25rem;
            margin-bottom: 32px;
            opacity: 0.98;
            line-height: 1.8;
            letter-spacing: 0.01em;
            padding: 12px 0 0 0;
            font-weight: 500;
            word-break: break-word;
        }

        .iuc-username-highlight {
            /* New Color Scheme: Dark highlight with light text */
            background: rgba(0, 0, 0, 0.25);
            padding: 6px 18px;
            border-radius: 10px;
            font-weight: 700;
            font-family: 'Monaco', 'Menlo', monospace;
            font-size: 1.1em;
            color: #f1f5f9;
            box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
            margin: 0 6px;
            display: inline-block;
            vertical-align: middle;
        }

        .iuc-profile-card {
            /* New Color Scheme: Darker inner card */
            background: rgba(0, 0, 0, 0.2);
            border-radius: 12px;
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 16px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .iuc-profile-avatar {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            border: 3px solid rgba(255, 255, 255, 0.3);
            object-fit: cover;
            flex-shrink: 0;
        }

        .iuc-profile-info {
            flex: 1;
            text-align: left;
            word-break: break-word;
        }

        .iuc-profile-name {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .iuc-profile-username {
            font-size: 0.875rem;
            opacity: 0.8;
            font-family: 'Monaco', 'Menlo', monospace;
        }

        /* Responsive Design (Unchanged) */
        @media (max-width: 1024px) {
            .iuc-body-wrapper {
                padding: 10px;
                align-items: flex-start;
            }
            .iuc-content-wrapper {
                grid-template-columns: 1fr;
                min-height: auto;
            }
            .iuc-left-panel {
                padding: 40px 30px;
                text-align: center;
            }
            .iuc-left-panel::before {
                display: none;
            }
            .iuc-brand-title {
                font-size: 2.5rem;
            }
            .iuc-right-panel {
                padding: 40px 30px;
            }
        }
        @media (max-width: 768px) {
            .iuc-main-container {
                margin: 0;
                border-radius: 16px;
            }
            .iuc-left-panel,
            .iuc-right-panel {
                padding: 30px 20px;
            }
            .iuc-brand-title {
                font-size: 2rem;
            }
            .iuc-brand-subtitle {
                font-size: 1.1rem;
            }
            .iuc-result-message {
                font-size: 1.1rem;
            }
            .iuc-profile-card {
                flex-direction: column;
                text-align: center;
            }
            .iuc-profile-info {
                text-align: center;
            }
        }
        @media (max-width: 480px) {
            .iuc-body-wrapper {
                padding: 0;
            }
            .iuc-main-container {
                border-radius: 0;
                box-shadow: none;
            }
            .iuc-brand-title {
                font-size: 1.75rem;
            }
            .iuc-username-input,
            .iuc-check-button {
                font-size: 1rem;
                padding: 14px 18px;
            }
            .iuc-result-card {
                padding: 24px;
            }
        }

        /* WordPress-specific overrides (Unchanged) */
         .iuc-body-wrapper {
            max-width: none !important;
            width: 100vw !important;
            box-sizing: border-box !important;
        } 
    body .iuc-body-wrapper,
        .entry-content .iuc-body-wrapper,
        .post-content .iuc-body-wrapper,
        .page-content .iuc-body-wrapper {
            width: 100vw !important;
            max-width: none !important;
            margin-left: calc(-50vw + 50%) !important;
            margin-right: calc(-50vw + 50%) !important;
            position: relative !important;
            left: 0 !important;
            right: 0 !important;
        } 
        .iuc-body-wrapper * {
            box-sizing: border-box !important;
        }
        .iuc-body-wrapper .iuc-main-container {
            max-width: 1200px !important;
            margin: 0 auto !important;
        }