 /* Instagram Username Checker (IUC) Styles */
        /* 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;
/*             background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #667eea 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.05"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.05"/><circle cx="50" cy="10" r="1" fill="white" opacity="0.03"/><circle cx="10" cy="90" r="1" fill="white" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            pointer-events: none;
        }

        .iuc-main-container {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            box-shadow: 0 32px 64px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1);
            width: 100%;
            max-width: 1200px;
            overflow: hidden;
            position: relative;
        }

        .iuc-main-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d, #f77737, #fcaf45, #ffdc80);
        }

        .iuc-content-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 600px;
        }

        .iuc-left-panel {
            padding: 60px 50px;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 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%;
            background: linear-gradient(to bottom, transparent, #e2e8f0 20%, #e2e8f0 80%, transparent);
        }

        .iuc-brand-section {
            margin-bottom: 40px;
        }

        .iuc-brand-title {
            font-size: 3.2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #1e293b, #475569);
            -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;
            color: #64748b;
            font-weight: 500;
            line-height: 1.6;
            margin-bottom: 8px;
        }

        .iuc-brand-description {
            font-size: 1rem;
            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;
            color: #475569;
        }

        .iuc-features-list li::before {
            content: '✓';
            background: linear-gradient(135deg, #10b981, #059669);
            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;
            /* Prevents shrinking on smaller screens */
        }

        .iuc-right-panel {
            padding: 60px 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: white;
        }

        .iuc-search-section {
            margin-bottom: 32px;
        }

        .iuc-search-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 8px;
        }

        .iuc-search-subtitle {
            font-size: 1rem;
            color: #64748b;
            margin-bottom: 32px;
        }

        .iuc-input-group {
            position: relative;
            margin-bottom: 24px;
        }

        .iuc-input-label {
            display: block;
            font-size: 0.875rem;
            font-weight: 600;
            color: #374151;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .iuc-username-input {
            width: 100%;
            padding: 16px 20px;
            font-size: 1.125rem;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            outline: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            background: #f9fafb;
            font-weight: 500;
        }

        .iuc-username-input:focus {
            border-color: #3b82f6;
            background: white;
            box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
        }

        .iuc-username-input::placeholder {
            color: #9ca3af;
            font-weight: 400;
        }

        .iuc-check-button {
            width: 100%;
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            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);
            box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.4), 0 10px 10px -5px rgba(59, 130, 246, 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;
            border: 4px solid #e5e7eb;
            border-top: 4px solid #3b82f6;
            border-radius: 50%;
            animation: iuc-spin 1s linear infinite;
            margin: 0 auto 16px;
        }

        .iuc-loading-text {
            color: #6b7280;
            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;
        }

        .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 {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
        }

        .iuc-result-card.iuc-taken {
            background: linear-gradient(135deg, #ef4444, #dc2626);
            color: white;
        }

        .iuc-result-card.iuc-error {
            background: linear-gradient(135deg, #f59e0b, #d97706);
            color: white;
        }

        .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 {
            background: rgba(255, 255, 255, 0.28);
            padding: 6px 18px;
            border-radius: 10px;
            font-weight: 700;
            font-family: 'Monaco', 'Menlo', monospace;
            font-size: 1.1em;
            color: #222;
            box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.04);
            margin: 0 6px;
            display: inline-block;
            vertical-align: middle;
        }

        .iuc-profile-card {
            background: rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 16px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .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;
            /* Prevents shrinking */
        }

        .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 */
        @media (max-width: 1024px) {
            .iuc-body-wrapper {
                padding: 10px;
                align-items: flex-start;
                /* Align to top on mobile */
            }

            .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 */
        .iuc-body-wrapper {
            /* Override WordPress theme container constraints */
            max-width: none !important;
            width: 100vw !important;
            box-sizing: border-box !important;
        }

        /* Ensure the component works in various WordPress themes */
        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;
        }

        /* Override common WordPress theme styles */
        .iuc-body-wrapper * {
            box-sizing: border-box !important;
        }

        .iuc-body-wrapper .iuc-main-container {
            max-width: 1200px !important;
            margin: 0 auto !important;
        }