.tool-label {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        font-weight: 600;
        color: var(--text-light);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 6px;
    }
    .tool-input {
        padding: 14px 18px;
        border: 1px solid var(--border-light);
        border-radius: 8px;
        font-size: 15px;
        background: var(--bg-light);
        color: var(--text-dark);
        transition: border-color 0.2s;
    }
    .tool-input:focus {
        outline: none;
        border-color: var(--primary-light);
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }
    .tool-select {
        width: 100%;
        padding: 10px 12px;
        border: 1px solid var(--border-light);
        border-radius: 6px;
        font-size: 13px;
        background: var(--bg-white);
        color: var(--text-dark);
        cursor: pointer;
    }
    .tool-select:focus { outline: none; border-color: var(--primary-light); }
    .btn-tool {
        padding: 12px 20px;
        border: none;
        background: linear-gradient(135deg, #3b82f6, #8b5cf6);
        color: white;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        white-space: nowrap;
    }
    .btn-tool:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3); }
    .btn-tool:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
    .btn-tool-outline {
        background: transparent;
        color: var(--primary);
        border: 1px solid var(--border-light);
    }
    .btn-tool-outline:hover { background: var(--bg-light); border-color: var(--primary-light); box-shadow: none; transform: none; }
    .tool-status {
        padding: 12px 16px;
        border-radius: 8px;
        font-size: 14px;
        margin-bottom: 16px;
        font-weight: 500;
    }
    .tool-status.success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
    .tool-status.error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
    .tool-status.info { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }
    .cleaned-url-box {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 16px;
        background: linear-gradient(135deg, #dbeafe, #ede9fe);
        border-radius: 10px;
        margin-bottom: 12px;
    }
    .cleaned-url-text {
        flex: 1;
        font-family: monospace;
        font-size: 16px;
        color: var(--primary);
        word-break: break-all;
        font-weight: 700;
    }
    .btn-copy-icon {
        background: white;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 8px;
        cursor: pointer;
        color: var(--primary);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s;
        flex-shrink: 0;
        font-size: 16px;
    }
    .btn-copy-icon:hover { background: var(--primary); color: white; }
    .clean-stats {
        display: flex;
        gap: 16px;
        font-size: 13px;
        color: var(--text-medium);
        flex-wrap: wrap;
    }
    .clean-stats span {
        display: flex;
        align-items: center;
        gap: 6px;
    }
    .clean-stats .removed { color: #059669; }
    .clean-stats .shortened { color: #7c3aed; }
    .qr-preview {
        background: white;
        padding: 20px;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        display: inline-block;
    }
    #qrcode {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    #qrcode img, #qrcode canvas {
        display: block !important;
    }
    .feature-item {
        display: flex;
        gap: 12px;
        align-items: flex-start;
    }
    .feature-icon {
        width: 36px;
        height: 36px;
        background: var(--bg-light);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        flex-shrink: 0;
    }
    .feature-item strong {
        font-size: 13px;
        display: block;
    }
    .feature-item p {
        font-size: 11px;
        margin: 2px 0 0;
    }
    .spinner {
        width: 40px;
        height: 40px;
        border: 3px solid var(--border-light);
        border-top-color: var(--primary);
        border-radius: 50%;
        animation: spin 0.8s linear infinite;
        margin: 0 auto;
    }
    @keyframes spin {
        to { transform: rotate(360deg); }
    }
    @media (max-width: 768px) {
        .input-row { flex-direction: column; }
        .input-row .tool-input { width: 100%; }
        .qr-grid { grid-template-columns: 1fr !important; }
        .features-grid { grid-template-columns: 1fr 1fr !important; }
    }
    @media (max-width: 480px) {
        .features-grid { grid-template-columns: 1fr !important; }
    }